diff --git a/parsers/scripts/getters/get_CATNAP-HIV.py b/parsers/scripts/getters/get_CATNAP-HIV.py
index afa47b6d93d391fef89773acbb505188535c00aa..912479561cb712df81dba3802183bdf19fac14ef 100644
--- a/parsers/scripts/getters/get_CATNAP-HIV.py
+++ b/parsers/scripts/getters/get_CATNAP-HIV.py
@@ -33,7 +33,7 @@ print(f"Starting {filename}...")
 
 # Get the raw data
 try:
-    subprocess.run(f"wget https://www.hiv.lanl.gov/cgi-bin/common_code/download.cgi?/scratch/NEUTRALIZATION/heavy_seqs_aa.fasta -O ../RAW/{filename}_heavy.fasta",
+    subprocess.run(f"wget --no-check-certificate https://www.hiv.lanl.gov/cgi-bin/common_code/download.cgi?/scratch/NEUTRALIZATION/heavy_seqs_aa.fasta -O ../RAW/{filename}_heavy.fasta",
                    shell=True,
                    check=True)
 except subprocess.CalledProcessError as err:
@@ -42,7 +42,7 @@ except subprocess.CalledProcessError as err:
     sys.exit(1)
 # Get the raw data
 try:
-    subprocess.run(f"wget https://www.hiv.lanl.gov/cgi-bin/common_code/download.cgi?/scratch/NEUTRALIZATION/light_seqs_aa.fasta -O ../RAW/{filename}_light.fasta",
+    subprocess.run(f"wget --no-check-certificate https://www.hiv.lanl.gov/cgi-bin/common_code/download.cgi?/scratch/NEUTRALIZATION/light_seqs_aa.fasta -O ../RAW/{filename}_light.fasta",
                    shell=True,
                    check=True)
 except subprocess.CalledProcessError as err: