Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed because of a cast error
Error code:   DatasetGenerationCastError
Exception:    DatasetGenerationCastError
Message:      An error occurred while generating the dataset

All the data files must have the same columns, but at some point there are 6 new columns ({'component_focus', 'cwe_focus', 'temporal_focus', 'technical_pattern_focus', 'root_cause_focus', 'file_function_focus'}) and 4 missing columns ({'cve_id', 'text', 'chunk_id', 'metadata'}).

This happened while the json dataset builder was generating data using

hf://datasets/Kushalkhemka/embedding-cve-nvd-dataset/decomposed_query_results.json (at revision 1ffa43a600a52212f0144401b6f9cd14327e1ac1)

Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1831, in _prepare_split_single
                  writer.write_table(table)
                File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 714, in write_table
                  pa_table = table_cast(pa_table, self._schema)
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2272, in table_cast
                  return cast_table_to_schema(table, schema)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2218, in cast_table_to_schema
                  raise CastError(
              datasets.table.CastError: Couldn't cast
              file_function_focus: list<item: struct<score: double, text: string, cve_id: string, chunk_id: int64, metadata: struct<pub (... 239 chars omitted)
                child 0, item: struct<score: double, text: string, cve_id: string, chunk_id: int64, metadata: struct<published: tim (... 227 chars omitted)
                    child 0, score: double
                    child 1, text: string
                    child 2, cve_id: string
                    child 3, chunk_id: int64
                    child 4, metadata: struct<published: timestamp[s], problem_types: string, vendors: string, products: string, source_fil (... 125 chars omitted)
                        child 0, published: timestamp[s]
                        child 1, problem_types: string
                        child 2, vendors: string
                        child 3, products: string
                        child 4, source_file: string
                        child 5, last_modified: string
                        child 6, references: string
                        child 7, cwe: string
                        child 8, severity: string
                        child 9, cvss_score: double
                        child 10, cvss_vector: string
                    child 5, rerank_score: double
              cwe_focus: list<item: struct<score: double, text: string, cve_id: string, chunk_id: int64, metadata: struct<pro (... 233 chars omitted)
                child 0, item: struct<score: double, text: string, cve_id: string, chunk_id: int64, metadata: struct<problem_types: (... 221 chars omitted)
                    child 0, score: double
                    child 1, text: string
                    child 2, cve_id: string
                    child 3, chunk_id: int64
                    child 4, metadata: struct<problem_types: string, vendors: string, last_modified: string,
              ...
               struct<references: st (... 162 chars omitted)
                    child 0, score: double
                    child 1, text: string
                    child 2, cve_id: string
                    child 3, chunk_id: int64
                    child 4, metadata: struct<references: string, published: string, problem_types: string, source_file: string, vendors: s (... 60 chars omitted)
                        child 0, references: string
                        child 1, published: string
                        child 2, problem_types: string
                        child 3, source_file: string
                        child 4, vendors: string
                        child 5, products: string
                        child 6, last_modified: string
                        child 7, cwe: string
                    child 5, rerank_score: double
              temporal_focus: list<item: struct<score: double, text: string, cve_id: string, chunk_id: int64, metadata: struct<pro (... 161 chars omitted)
                child 0, item: struct<score: double, text: string, cve_id: string, chunk_id: int64, metadata: struct<problem_types: (... 149 chars omitted)
                    child 0, score: double
                    child 1, text: string
                    child 2, cve_id: string
                    child 3, chunk_id: int64
                    child 4, metadata: struct<problem_types: string, last_modified: string, vendors: string, products: string, source_file: (... 47 chars omitted)
                        child 0, problem_types: string
                        child 1, last_modified: string
                        child 2, vendors: string
                        child 3, products: string
                        child 4, source_file: string
                        child 5, references: string
                        child 6, published: string
                    child 5, rerank_score: double
              to
              {'cve_id': Value('string'), 'chunk_id': Value('int64'), 'text': Value('string'), 'metadata': {'cwe': Value('string'), 'problem_types': List(Value('string')), 'published': Value('string'), 'last_modified': Value('string'), 'severity': Value('string'), 'cvss_score': Value('float64'), 'cvss_vector': Value('string'), 'vendors': List(Value('string')), 'products': List(Value('string')), 'references': List(Value('string')), 'source_file': Value('string')}}
              because column names don't match
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1455, in compute_config_parquet_and_info_response
                  parquet_operations = convert_to_parquet(builder)
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1054, in convert_to_parquet
                  builder.download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 894, in download_and_prepare
                  self._download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 970, in _download_and_prepare
                  self._prepare_split(split_generator, **prepare_split_kwargs)
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1702, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1833, in _prepare_split_single
                  raise DatasetGenerationCastError.from_cast_error(
              datasets.exceptions.DatasetGenerationCastError: An error occurred while generating the dataset
              
              All the data files must have the same columns, but at some point there are 6 new columns ({'component_focus', 'cwe_focus', 'temporal_focus', 'technical_pattern_focus', 'root_cause_focus', 'file_function_focus'}) and 4 missing columns ({'cve_id', 'text', 'chunk_id', 'metadata'}).
              
              This happened while the json dataset builder was generating data using
              
              hf://datasets/Kushalkhemka/embedding-cve-nvd-dataset/decomposed_query_results.json (at revision 1ffa43a600a52212f0144401b6f9cd14327e1ac1)
              
              Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

cve_id
string
chunk_id
int64
text
string
metadata
dict
CVE-1999-0001
0
CVE ID: CVE-1999-0001 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:03:04.917Z Vendors: n/a Products: n/a Problem Types: n/a Description: ip_input.c in BSD-derived TCP/IP implementations allows remote attackers to cause a denial of service (crash or hang) via crafted packets. Additional Analyst Notes: - CVE Program Container: References: - http://www.openbsd.org/errata23.html#tcpfix - http://www.osvdb.org/5707
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:03:04.917Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.openbsd.org/errata23.html#tcpfix", "http://www.osvdb.org/5707" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0001.json" }
CVE-1999-0002
0
CVE ID: CVE-1999-0002 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:07:57.748Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in NFS mountd gives root access to remote attackers, mostly in Linux systems. Additional Analyst Notes: - CVE Program Container: References: - http://www.ciac.org/ciac/bulletins/j-006.shtml - ftp://patches.sgi.com/support/free/security/advisories/19981006-01-I - http://www.securityfocus.com/bid/121
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:07:57.748Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.ciac.org/ciac/bulletins/j-006.shtml", "ftp://patches.sgi.com/support/free/security/advisories/19981006-01-I", "http://www.securityfocus.com/bid/121" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0002.json" }
CVE-1999-0003
0
CVE ID: CVE-1999-0003 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:11:38.579Z Vendors: n/a Products: n/a Problem Types: n/a Description: Execute commands as root via buffer overflow in Tooltalk database server (rpc.ttdbserverd). Additional Analyst Notes: - CVE Program Container: References: - http://www.securityfocus.com/bid/122 - ftp://patches.sgi.com/support/free/security/advisories/19981101-01-A - ftp://patches.sgi.com/support/free/security/advisories/19981101-01-PX
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:11:38.579Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.securityfocus.com/bid/122", "ftp://patches.sgi.com/support/free/security/advisories/19981101-01-A", "ftp://patches.sgi.com/support/free/security/advisories/19981101-01-PX" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0003.json" }
CVE-1999-0004
0
CVE ID: CVE-1999-0004 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:56.463Z Vendors: n/a Products: n/a Problem Types: n/a Description: MIME buffer overflow in email clients, e.g. Solaris mailtool and Outlook. Additional Analyst Notes: - CVE Program Container: References: - https://docs.microsoft.com/en-us/security-updates/securitybulletins/1998/ms98-008
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:56.463Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://docs.microsoft.com/en-us/security-updates/securitybulletins/1998/ms98-008" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0004.json" }
CVE-1999-0005
0
CVE ID: CVE-1999-0005 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.689Z Vendors: n/a Products: n/a Problem Types: n/a Description: Arbitrary command execution via IMAP buffer overflow in authenticate command. Additional Analyst Notes: - CVE Program Container: References: - http://www.securityfocus.com/bid/130 - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/177
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.689Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.securityfocus.com/bid/130", "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/177" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0005.json" }
CVE-1999-0006
0
CVE ID: CVE-1999-0006 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-10-29T14:08:55.394Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in POP servers based on BSD/Qualcomm's qpopper allows remote attackers to gain root access using a long PASS command. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - ftp://patches.sgi.com/support/free/security/advisories/19980801-01-I - http://www.securityfocus.com/bid/133
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-10-29T14:08:55.394Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "ftp://patches.sgi.com/support/free/security/advisories/19980801-01-I", "http://www.securityfocus.com/bid/133" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0006.json" }
CVE-1999-0007
0
CVE ID: CVE-1999-0007 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.484Z Vendors: n/a Products: n/a Problem Types: n/a Description: Information from SSL-encrypted sessions via PKCS #1. Additional Analyst Notes: - CVE Program Container: References: - https://docs.microsoft.com/en-us/security-updates/securitybulletins/1998/ms98-002
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.484Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://docs.microsoft.com/en-us/security-updates/securitybulletins/1998/ms98-002" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0007.json" }
CVE-1999-0008
0
CVE ID: CVE-1999-0008 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.477Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in NIS+, in Sun's rpc.nisd program. Additional Analyst Notes: - CVE Program Container: References: - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/170
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.477Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/170" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0008.json" }
CVE-1999-0009
0
CVE ID: CVE-1999-0009 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.971Z Vendors: n/a Products: n/a Problem Types: n/a Description: Inverse query buffer overflow in BIND 4.9 and BIND 8 Releases. Additional Analyst Notes: - CVE Program Container: References: - ftp://patches.sgi.com/support/free/security/advisories/19980603-01-PX - http://www.securityfocus.com/bid/134 - http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9808-083 - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/180
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.971Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "ftp://patches.sgi.com/support/free/security/advisories/19980603-01-PX", "http://www.securityfocus.com/bid/134", "http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9808-083", "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/180" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0009.json" }
CVE-1999-0010
0
CVE ID: CVE-1999-0010 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.711Z Vendors: n/a Products: n/a Problem Types: n/a Description: Denial of Service vulnerability in BIND 8 Releases via maliciously formatted DNS messages. Additional Analyst Notes: - CVE Program Container: References: - ftp://patches.sgi.com/support/free/security/advisories/19980603-01-PX - http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9808-083
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.711Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "ftp://patches.sgi.com/support/free/security/advisories/19980603-01-PX", "http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9808-083" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0010.json" }
CVE-1999-0011
0
CVE ID: CVE-1999-0011 State: PUBLISHED Published: 1999-09-29T04:00:00.000Z Last Updated: 2025-04-09T18:29:26.012Z Vendors: n/a Products: n/a Problem Types: n/a Description: Denial of Service vulnerabilities in BIND 4.9 and BIND 8 Releases via CNAME record and zone transfer. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - ftp://patches.sgi.com/support/free/security/advisories/19980603-01-PX - http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9808-083 - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/180
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00.000Z", "last_modified": "2025-04-09T18:29:26.012Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "ftp://patches.sgi.com/support/free/security/advisories/19980603-01-PX", "http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9808-083", "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/180" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0011.json" }
CVE-1999-0012
0
CVE ID: CVE-1999-0012 State: PUBLISHED Published: 1999-09-29T04:00:00.000Z Last Updated: 2025-04-09T18:30:54.684Z Vendors: n/a Products: n/a Problem Types: n/a Description: Some web servers under Microsoft Windows allow remote attackers to bypass access restrictions for files with long file names. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0012
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00.000Z", "last_modified": "2025-04-09T18:30:54.684Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0012" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0012.json" }
CVE-1999-0013
0
CVE ID: CVE-1999-0013 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T19:02:44.132Z Vendors: n/a Products: n/a Problem Types: n/a Description: Stolen credentials from SSH clients via ssh-agent program, allowing other local users to access remote accounts belonging to the ssh-agent user. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0013
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T19:02:44.132Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0013" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0013.json" }
CVE-1999-0014
0
CVE ID: CVE-1999-0014 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.465Z Vendors: n/a Products: n/a Problem Types: n/a Description: Unauthorized privileged access or denial of service via dtappgather program in CDE. Additional Analyst Notes: - CVE Program Container: References: - http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9801-075 - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/185
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.465Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9801-075", "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/185" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0014.json" }
CVE-1999-0015
0
CVE ID: CVE-1999-0015 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:57.061Z Vendors: n/a Products: n/a Problem Types: n/a Description: Teardrop IP denial of service. Additional Analyst Notes: - CVE Program Container: References: - https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A5579
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:57.061Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A5579" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0015.json" }
CVE-1999-0016
0
CVE ID: CVE-1999-0016 State: PUBLISHED Published: 1999-09-29T04:00:00.000Z Last Updated: 2025-03-17T15:03:08.590Z Vendors: n/a Products: n/a Problem Types: n/a Description: Land IP denial of service. Additional Analyst Notes: - CVE Program Container: References: - http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9801-076
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00.000Z", "last_modified": "2025-03-17T15:03:08.590Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9801-076" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0016.json" }
CVE-1999-0017
0
CVE ID: CVE-1999-0017 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.465Z Vendors: n/a Products: n/a Problem Types: n/a Description: FTP servers can allow an attacker to connect to arbitrary ports on machines other than the FTP client, aka FTP bounce. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0017
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.465Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0017" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0017.json" }
CVE-1999-0018
0
CVE ID: CVE-1999-0018 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.714Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in statd allows root privileges. Additional Analyst Notes: - CVE Program Container: References: - http://www.securityfocus.com/bid/127
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.714Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.securityfocus.com/bid/127" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0018.json" }
CVE-1999-0019
0
CVE ID: CVE-1999-0019 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.469Z Vendors: n/a Products: n/a Problem Types: n/a Description: Delete or create a file via rpc.statd, due to invalid information. Additional Analyst Notes: - CVE Program Container: References: - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/135
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.469Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/135" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0019.json" }
CVE-1999-0020
0
CVE ID: CVE-1999-0020 State: REJECTED Published: 2000-02-04T05:00:00 Last Updated: 2005-02-04T00:00:00 Description: No description available.
{ "cwe": null, "problem_types": [], "published": "2000-02-04T05:00:00", "last_modified": "2005-02-04T00:00:00", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [], "products": [], "references": [], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0020.json" }
CVE-1999-0021
0
CVE ID: CVE-1999-0021 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.743Z Vendors: n/a Products: n/a Problem Types: n/a Description: Arbitrary command execution via buffer overflow in Count.cgi (wwwcount) cgi-bin program. Additional Analyst Notes: - CVE Program Container: References: - http://www.securityfocus.com/bid/128
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.743Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.securityfocus.com/bid/128" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0021.json" }
CVE-1999-0022
0
CVE ID: CVE-1999-0022 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-10-29T14:08:24.263Z Vendors: n/a Products: n/a Problem Types: n/a Description: Local user gains root privileges via buffer overflow in rdist, via expstr() function. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/179
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-10-29T14:08:24.263Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/179" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0022.json" }
CVE-1999-0023
0
CVE ID: CVE-1999-0023 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.726Z Vendors: n/a Products: n/a Problem Types: n/a Description: Local user gains root privileges via buffer overflow in rdist, via lookup() function. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0023
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.726Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0023" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0023.json" }
CVE-1999-0024
0
CVE ID: CVE-1999-0024 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.713Z Vendors: n/a Products: n/a Problem Types: n/a Description: DNS cache poisoning via BIND, by predictable query IDs. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0024
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.713Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0024" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0024.json" }
CVE-1999-0025
0
CVE ID: CVE-1999-0025 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.742Z Vendors: n/a Products: n/a Problem Types: n/a Description: root privileges via buffer overflow in df command on SGI IRIX systems. Additional Analyst Notes: - CVE Program Container: References: - http://www.kb.cert.org/vuls/id/20851 - https://exchange.xforce.ibmcloud.com/vulnerabilities/440 - http://www.securityfocus.com/bid/346 - http://www.cert.org/advisories/CA-1997-21.html
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.742Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.kb.cert.org/vuls/id/20851", "https://exchange.xforce.ibmcloud.com/vulnerabilities/440", "http://www.securityfocus.com/bid/346", "http://www.cert.org/advisories/CA-1997-21.html" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0025.json" }
CVE-1999-0026
0
CVE ID: CVE-1999-0026 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.714Z Vendors: n/a Products: n/a Problem Types: n/a Description: root privileges via buffer overflow in pset command on SGI IRIX systems. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0026
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.714Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0026" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0026.json" }
CVE-1999-0027
0
CVE ID: CVE-1999-0027 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.695Z Vendors: n/a Products: n/a Problem Types: n/a Description: root privileges via buffer overflow in eject command on SGI IRIX systems. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0027
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.695Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0027" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0027.json" }
CVE-1999-0028
0
CVE ID: CVE-1999-0028 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.731Z Vendors: n/a Products: n/a Problem Types: n/a Description: root privileges via buffer overflow in login/scheme command on SGI IRIX systems. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0028
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.731Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0028" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0028.json" }
CVE-1999-0029
0
CVE ID: CVE-1999-0029 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-10-29T14:07:56.381Z Vendors: n/a Products: n/a Problem Types: n/a Description: root privileges via buffer overflow in ordist command on SGI IRIX systems. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0029
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-10-29T14:07:56.381Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0029" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0029.json" }
CVE-1999-0030
0
CVE ID: CVE-1999-0030 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:56.667Z Vendors: n/a Products: n/a Problem Types: n/a Description: root privileges via buffer overflow in xlock command on SGI IRIX systems. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0030
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:56.667Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0030" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0030.json" }
CVE-1999-0031
0
CVE ID: CVE-1999-0031 State: PUBLISHED Published: 2000-06-02T04:00:00 Last Updated: 2024-08-01T16:27:56.711Z Vendors: n/a Products: n/a Problem Types: n/a Description: JavaScript in Internet Explorer 3.x and 4.x, and Netscape 2.x, 3.x and 4.x, allows remote attackers to monitor a user's web activities, aka the Bell Labs vulnerability. Additional Analyst Notes: - CVE Program Container: References: - http://www.codetalker.com/advisories/vendor/hp/hpsbux9707-065.html
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-06-02T04:00:00", "last_modified": "2024-08-01T16:27:56.711Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.codetalker.com/advisories/vendor/hp/hpsbux9707-065.html" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0031.json" }
CVE-1999-0032
0
CVE ID: CVE-1999-0032 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.133Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in lpr, as used in BSD-based systems including Linux, allows local users to execute arbitrary code as root via a long -C (classification) command line option. Additional Analyst Notes: - CVE Program Container: References: - ftp://patches.sgi.com/support/free/security/advisories/19980402-01-PX - http://www.securityfocus.com/bid/707 - http://www.ciac.org/ciac/bulletins/i-042.shtml
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.133Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "ftp://patches.sgi.com/support/free/security/advisories/19980402-01-PX", "http://www.securityfocus.com/bid/707", "http://www.ciac.org/ciac/bulletins/i-042.shtml" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0032.json" }
CVE-1999-0033
0
CVE ID: CVE-1999-0033 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:57.268Z Vendors: n/a Products: n/a Problem Types: n/a Description: Command execution in Sun systems via buffer overflow in the at program. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0033
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:57.268Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0033" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0033.json" }
CVE-1999-0034
0
CVE ID: CVE-1999-0034 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.611Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in suidperl (sperl), Perl 4.x and 5.x. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0034
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.611Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0034" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0034.json" }
CVE-1999-0035
0
CVE ID: CVE-1999-0035 State: PUBLISHED Published: 1999-09-29T04:00:00.000Z Last Updated: 2025-10-20T17:45:44.427Z Vendors: n/a Products: n/a Problem Types: n/a Description: Race condition in signal handling routine in ftpd, allowing read/write arbitrary files. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0035
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00.000Z", "last_modified": "2025-10-20T17:45:44.427Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0035" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0035.json" }
CVE-1999-0036
0
CVE ID: CVE-1999-0036 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-10-29T14:07:28.583Z Vendors: n/a Products: n/a Problem Types: n/a Description: IRIX login program with a nonzero LOCKOUT parameter allows creation or damage to files. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - http://www.osvdb.org/990 - http://www.ciac.org/ciac/bulletins/h-106.shtml - ftp://patches.sgi.com/support/free/security/advisories/19970508-02-PX - https://exchange.xforce.ibmcloud.com/vulnerabilities/557
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-10-29T14:07:28.583Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.osvdb.org/990", "http://www.ciac.org/ciac/bulletins/h-106.shtml", "ftp://patches.sgi.com/support/free/security/advisories/19970508-02-PX", "https://exchange.xforce.ibmcloud.com/vulnerabilities/557" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0036.json" }
CVE-1999-0037
0
CVE ID: CVE-1999-0037 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.203Z Vendors: n/a Products: n/a Problem Types: n/a Description: Arbitrary command execution via metamail package using message headers, when user processes attacker's message using metamail. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0037
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.203Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0037" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0037.json" }
CVE-1999-0038
0
CVE ID: CVE-1999-0038 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-09-12T14:37:48.860Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in xlock program allows local users to execute commands as root. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0038
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-09-12T14:37:48.860Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0038" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0038.json" }
CVE-1999-0039
0
CVE ID: CVE-1999-0039 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-09-12T14:37:05.701Z Vendors: n/a Products: n/a Problem Types: n/a Description: webdist CGI program (webdist.cgi) in SGI IRIX allows remote attackers to execute arbitrary commands via shell metacharacters in the distloc parameter. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - ftp://patches.sgi.com/support/free/security/advisories/19970501-02-PX - https://exchange.xforce.ibmcloud.com/vulnerabilities/333 - http://www.cert.org/advisories/CA-1997-12.html - http://www.securityfocus.com/bid/374 - http://www.osvdb.org/235
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-09-12T14:37:05.701Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "ftp://patches.sgi.com/support/free/security/advisories/19970501-02-PX", "https://exchange.xforce.ibmcloud.com/vulnerabilities/333", "http://www.cert.org/advisories/CA-1997-12.html", "http://www.securityfocus.com/bid/374", "http://www.osvdb.org/235" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0039.json" }
CVE-1999-0040
0
CVE ID: CVE-1999-0040 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.678Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in Xt library of X Windowing System allows local users to execute commands with root privileges. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0040
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.678Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0040" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0040.json" }
CVE-1999-0041
0
CVE ID: CVE-1999-0041 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-09-17T14:25:15.473Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in NLS (Natural Language Service). Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0041
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-09-17T14:25:15.473Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0041" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0041.json" }
CVE-1999-0042
0
CVE ID: CVE-1999-0042 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.030Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in University of Washington's implementation of IMAP and POP servers. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0042
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.030Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0042" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0042.json" }
CVE-1999-0043
0
CVE ID: CVE-1999-0043 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T20:03:35.981Z Vendors: n/a Products: n/a Problem Types: n/a Description: Command execution via shell metachars in INN daemon (innd) 1.5 using "newgroup" and "rmgroup" control messages, and others. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0043
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T20:03:35.981Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0043" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0043.json" }
CVE-1999-0044
0
CVE ID: CVE-1999-0044 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.595Z Vendors: n/a Products: n/a Problem Types: n/a Description: fsdump command in IRIX allows local users to obtain root access by modifying sensitive files. Additional Analyst Notes: - CVE Program Container: References: - ftp://patches.sgi.com/support/free/security/advisories/19970301-01-P
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.595Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "ftp://patches.sgi.com/support/free/security/advisories/19970301-01-P" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0044.json" }
CVE-1999-0045
0
CVE ID: CVE-1999-0045 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.679Z Vendors: n/a Products: n/a Problem Types: n/a Description: List of arbitrary files on Web host via nph-test-cgi script. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0045
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.679Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0045" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0045.json" }
CVE-1999-0046
0
CVE ID: CVE-1999-0046 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.114Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow of rlogin program using TERM environmental variable. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0046
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.114Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0046" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0046.json" }
CVE-1999-0047
0
CVE ID: CVE-1999-0047 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.134Z Vendors: n/a Products: n/a Problem Types: n/a Description: MIME conversion buffer overflow in sendmail versions 8.8.3 and 8.8.4. Additional Analyst Notes: - CVE Program Container: References: - http://www.securityfocus.com/bid/685
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.134Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.securityfocus.com/bid/685" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0047.json" }
CVE-1999-0048
0
CVE ID: CVE-1999-0048 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.128Z Vendors: n/a Products: n/a Problem Types: n/a Description: Talkd, when given corrupt DNS information, can be used to execute arbitrary commands with root privileges. Additional Analyst Notes: - CVE Program Container: References: - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/147
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.128Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/147" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0048.json" }
CVE-1999-0049
0
CVE ID: CVE-1999-0049 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.698Z Vendors: n/a Products: n/a Problem Types: n/a Description: Csetup under IRIX allows arbitrary file creation or overwriting. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0049
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.698Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0049" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0049.json" }
CVE-1999-0050
0
CVE ID: CVE-1999-0050 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.781Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in HP-UX newgrp program. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0050
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.781Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0050" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0050.json" }
CVE-1999-0051
0
CVE ID: CVE-1999-0051 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.441Z Vendors: n/a Products: n/a Problem Types: n/a Description: Arbitrary file creation and program execution using FLEXlm LicenseManager, from versions 4.0 to 5.0, in IRIX. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0051
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.441Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0051" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0051.json" }
CVE-1999-0052
0
CVE ID: CVE-1999-0052 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T20:32:09.970Z Vendors: n/a Products: n/a Problem Types: n/a Description: IP fragmentation denial of service in FreeBSD allows a remote attacker to cause a crash. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/1389 - http://www.osvdb.org/908
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T20:32:09.970Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/1389", "http://www.osvdb.org/908" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0052.json" }
CVE-1999-0053
0
CVE ID: CVE-1999-0053 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.548Z Vendors: n/a Products: n/a Problem Types: n/a Description: TCP RST denial of service in FreeBSD. Additional Analyst Notes: - CVE Program Container: References: - http://www.osvdb.org/6094
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.548Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.osvdb.org/6094" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0053.json" }
CVE-1999-0054
0
CVE ID: CVE-1999-0054 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.455Z Vendors: n/a Products: n/a Problem Types: n/a Description: Sun's ftpd daemon can be subjected to a denial of service. Additional Analyst Notes: - CVE Program Container: References: - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/171
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.455Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/171" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0054.json" }
CVE-1999-0055
0
CVE ID: CVE-1999-0055 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.271Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflows in Sun libnsl allow root access. Additional Analyst Notes: - CVE Program Container: References: - http://www-1.ibm.com/support/search.wss?rs=0&q=IX80543&apar=only - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/172
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.271Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www-1.ibm.com/support/search.wss?rs=0&q=IX80543&apar=only", "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/172" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0055.json" }
CVE-1999-0056
0
CVE ID: CVE-1999-0056 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.417Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in Sun's ping program can give root access to local users. Additional Analyst Notes: - CVE Program Container: References: - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/174
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.417Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/174" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0056.json" }
CVE-1999-0057
0
CVE ID: CVE-1999-0057 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.213Z Vendors: n/a Products: n/a Problem Types: n/a Description: Vacation program allows command execution by remote users through a sendmail command. Additional Analyst Notes: - CVE Program Container: References: - http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9811-087
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.213Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBUX9811-087" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0057.json" }
CVE-1999-0058
0
CVE ID: CVE-1999-0058 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.281Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in PHP cgi program, php.cgi allows shell access. Additional Analyst Notes: - CVE Program Container: References: - http://www.securityfocus.com/bid/712
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.281Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.securityfocus.com/bid/712" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0058.json" }
CVE-1999-0059
0
CVE ID: CVE-1999-0059 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T20:35:57.570Z Vendors: n/a Products: n/a Problem Types: n/a Description: IRIX fam service allows an attacker to obtain a list of all files on the server. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - http://www.osvdb.org/164 - http://www.securityfocus.com/bid/353 - https://exchange.xforce.ibmcloud.com/vulnerabilities/325
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T20:35:57.570Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.osvdb.org/164", "http://www.securityfocus.com/bid/353", "https://exchange.xforce.ibmcloud.com/vulnerabilities/325" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0059.json" }
CVE-1999-0060
0
CVE ID: CVE-1999-0060 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:56.721Z Vendors: n/a Products: n/a Problem Types: n/a Description: Attackers can cause a denial of service in Ascend MAX and Pipeline routers with a malformed packet to the discard port, which is used by the Java Configurator tool. Additional Analyst Notes: - CVE Program Container: References: - http://www.ascend.com/2695.html
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:56.721Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.ascend.com/2695.html" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0060.json" }
CVE-1999-0061
0
CVE ID: CVE-1999-0061 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:57.438Z Vendors: n/a Products: n/a Problem Types: n/a Description: File creation and deletion, and remote execution, in the BSD line printer daemon (lpd). Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0061
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:57.438Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0061" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0061.json" }
CVE-1999-0062
0
CVE ID: CVE-1999-0062 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.414Z Vendors: n/a Products: n/a Problem Types: n/a Description: The chpass command in OpenBSD allows a local user to gain root access through file descriptor leakage. Additional Analyst Notes: - CVE Program Container: References: - http://www.osvdb.org/7559
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.414Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.osvdb.org/7559" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0062.json" }
CVE-1999-0063
0
CVE ID: CVE-1999-0063 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.325Z Vendors: n/a Products: n/a Problem Types: n/a Description: Cisco IOS 12.0 and other versions can be crashed by malicious UDP packets to the syslog port. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0063
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.325Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0063" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0063.json" }
CVE-1999-0064
0
CVE ID: CVE-1999-0064 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.301Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in AIX lquerylv program gives root access to local users. Additional Analyst Notes: - CVE Program Container: References: - https://marc.info/?l=bugtraq&m=87602167418428&w=2
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.301Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://marc.info/?l=bugtraq&m=87602167418428&w=2" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0064.json" }
CVE-1999-0065
0
CVE ID: CVE-1999-0065 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.300Z Vendors: n/a Products: n/a Problem Types: n/a Description: Multiple buffer overflows in how dtmail handles attachments allows a remote attacker to execute commands. Additional Analyst Notes: - CVE Program Container: References: - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/181
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.300Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/181" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0065.json" }
CVE-1999-0066
0
CVE ID: CVE-1999-0066 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T20:50:29.555Z Vendors: n/a Products: n/a Problem Types: n/a Description: AnyForm CGI remote execution. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - http://www.securityfocus.com/bid/719
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T20:50:29.555Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.securityfocus.com/bid/719" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0066.json" }
CVE-1999-0067
0
CVE ID: CVE-1999-0067 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.471Z Vendors: n/a Products: n/a Problem Types: n/a Description: phf CGI program allows remote command execution through shell metacharacters. Additional Analyst Notes: - CVE Program Container: References: - http://www.securityfocus.com/bid/629 - http://www.osvdb.org/136 - http://www.cert.org/advisories/CA-1996-06.html
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.471Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.securityfocus.com/bid/629", "http://www.osvdb.org/136", "http://www.cert.org/advisories/CA-1996-06.html" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0067.json" }
CVE-1999-0068
0
CVE ID: CVE-1999-0068 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.006Z Vendors: n/a Products: n/a Problem Types: n/a Description: CGI PHP mylog script allows an attacker to read any file on the target server. Additional Analyst Notes: - CVE Program Container: References: - http://www.securityfocus.com/bid/713 - http://www.osvdb.org/3396
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.006Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.securityfocus.com/bid/713", "http://www.osvdb.org/3396" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0068.json" }
CVE-1999-0069
0
CVE ID: CVE-1999-0069 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T19:55:25.041Z Vendors: n/a Products: n/a Problem Types: n/a Description: Solaris ufsrestore buffer overflow. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - http://www.osvdb.org/8158 - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/169
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T19:55:25.041Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.osvdb.org/8158", "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/169" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0069.json" }
CVE-1999-0070
0
CVE ID: CVE-1999-0070 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.060Z Vendors: n/a Products: n/a Problem Types: n/a Description: test-cgi program allows an attacker to list files on the server. Additional Analyst Notes: - CVE Program Container: References: - https://lists.apache.org/thread.html/rc5d27fc1e76dc5650e1a3f1db1de403120f4c2d041cb7352850455c2%40%3Cusers.httpd.apache.org%3E
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.060Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://lists.apache.org/thread.html/rc5d27fc1e76dc5650e1a3f1db1de403120f4c2d041cb7352850455c2%40%3Cusers.httpd.apache.org%3E" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0070.json" }
CVE-1999-0071
0
CVE ID: CVE-1999-0071 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.435Z Vendors: n/a Products: n/a Problem Types: n/a Description: Apache httpd cookie buffer overflow for versions 1.1.1 and earlier. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0071
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.435Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0071" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0071.json" }
CVE-1999-0072
0
CVE ID: CVE-1999-0072 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.351Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in AIX xdat gives root access to local users. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0072
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.351Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0072" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0072.json" }
CVE-1999-0073
0
CVE ID: CVE-1999-0073 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.179Z Vendors: n/a Products: n/a Problem Types: n/a Description: Telnet allows a remote client to specify environment variables including LD_LIBRARY_PATH, allowing an attacker to bypass the normal system libraries and gain root access. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0073
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.179Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0073" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0073.json" }
CVE-1999-0074
0
CVE ID: CVE-1999-0074 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.456Z Vendors: n/a Products: n/a Problem Types: n/a Description: Listening TCP ports are sequentially allocated, allowing spoofing attacks. Additional Analyst Notes: - CVE Program Container: References: - https://www.cve.org/CVERecord?id=CVE-1999-0074
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.456Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://www.cve.org/CVERecord?id=CVE-1999-0074" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0074.json" }
CVE-1999-0075
0
CVE ID: CVE-1999-0075 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.161Z Vendors: n/a Products: n/a Problem Types: n/a Description: PASV core dump in wu-ftpd daemon when attacker uses a QUOTE PASV command after specifying a username and password. Additional Analyst Notes: - CVE Program Container: References: - http://www.osvdb.org/5742
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.161Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.osvdb.org/5742" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0075.json" }
CVE-1999-0076
0
CVE ID: CVE-1999-0076 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:57.363Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in wu-ftp from PASV command causes a core dump. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0076
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:57.363Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0076" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0076.json" }
CVE-1999-0077
0
CVE ID: CVE-1999-0077 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.297Z Vendors: n/a Products: n/a Problem Types: n/a Description: Predictable TCP sequence numbers allow spoofing. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/139
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.297Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/139" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0077.json" }
CVE-1999-0078
0
CVE ID: CVE-1999-0078 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:57.236Z Vendors: n/a Products: n/a Problem Types: n/a Description: pcnfsd (aka rpc.pcnfsd) allows local users to change file permissions, or execute arbitrary commands through arguments in the RPC call. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0078
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:57.236Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0078" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0078.json" }
CVE-1999-0079
0
CVE ID: CVE-1999-0079 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.393Z Vendors: n/a Products: n/a Problem Types: n/a Description: Remote attackers can cause a denial of service in FTP by issuing multiple PASV commands, causing the server to run out of available ports. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0079
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.393Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0079" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0079.json" }
CVE-1999-0080
0
CVE ID: CVE-1999-0080 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.629Z Vendors: n/a Products: n/a Problem Types: n/a Description: Certain configurations of wu-ftp FTP server 2.4 use a _PATH_EXECPATH setting to a directory with dangerous commands, such as /bin, which allows remote authenticated users to gain root access via the "site exec" command. Additional Analyst Notes: - CVE Program Container: References: - https://archive.nanog.org/mailinglist/mailarchives/old_archive/1995-11/msg00385.html
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.629Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://archive.nanog.org/mailinglist/mailarchives/old_archive/1995-11/msg00385.html" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0080.json" }
CVE-1999-0081
0
CVE ID: CVE-1999-0081 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.447Z Vendors: n/a Products: n/a Problem Types: n/a Description: wu-ftp allows files to be overwritten via the rnfr command. Additional Analyst Notes: - CVE Program Container: References: - https://www.cve.org/CVERecord?id=CVE-1999-0081
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.447Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://www.cve.org/CVERecord?id=CVE-1999-0081" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0081.json" }
CVE-1999-0082
0
CVE ID: CVE-1999-0082 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.389Z Vendors: n/a Products: n/a Problem Types: n/a Description: CWD ~root command in ftpd allows root access. Additional Analyst Notes: - CVE Program Container: References: - http://www.alw.nih.gov/Security/Docs/admin-guide-to-cracking.101.html
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.389Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.alw.nih.gov/Security/Docs/admin-guide-to-cracking.101.html" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0082.json" }
CVE-1999-0083
0
CVE ID: CVE-1999-0083 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.516Z Vendors: n/a Products: n/a Problem Types: n/a Description: getcwd() file descriptor leak in FTP. Additional Analyst Notes: - CVE Program Container: References: - https://www.cve.org/CVERecord?id=CVE-1999-0083
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.516Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://www.cve.org/CVERecord?id=CVE-1999-0083" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0083.json" }
CVE-1999-0084
0
CVE ID: CVE-1999-0084 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T20:39:56.806Z Vendors: n/a Products: n/a Problem Types: n/a Description: Certain NFS servers allow users to use mknod to gain privileges by creating a writable kmem device and setting the UID to 0. Additional Analyst Notes: - CVE Program Container: - CISA ADP Vulnrichment: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/78
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T20:39:56.806Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/78" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0084.json" }
CVE-1999-0085
0
CVE ID: CVE-1999-0085 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.512Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in rwhod on AIX and other operating systems allows remote attackers to execute arbitrary code via a UDP packet with a long hostname. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/119 - https://exchange.xforce.ibmcloud.com/vulnerabilities/118
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.512Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/119", "https://exchange.xforce.ibmcloud.com/vulnerabilities/118" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0085.json" }
CVE-1999-0086
0
CVE ID: CVE-1999-0086 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:57.762Z Vendors: n/a Products: n/a Problem Types: n/a Description: AIX routed allows remote users to modify sensitive files. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0086
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:57.762Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0086" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0086.json" }
CVE-1999-0087
0
CVE ID: CVE-1999-0087 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.215Z Vendors: n/a Products: n/a Problem Types: n/a Description: Denial of service in AIX telnet can freeze a system and prevent users from accessing the server. Additional Analyst Notes: - CVE Program Container: References: - http://www.osvdb.org/7992
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.215Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.osvdb.org/7992" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0087.json" }
CVE-1999-0088
0
CVE ID: CVE-1999-0088 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:57.435Z Vendors: n/a Products: n/a Problem Types: n/a Description: IRIX and AIX automountd services (autofsd) allow remote users to execute root commands. Additional Analyst Notes: - CVE Program Container: References: - http://www-1.ibm.com/services/brs/brspwhub.nsf/advisories/852567CC004F9038852566BF007B6393/%24file/ERS-SVA-E01-1998_004_1.txt
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:57.435Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www-1.ibm.com/services/brs/brspwhub.nsf/advisories/852567CC004F9038852566BF007B6393/%24file/ERS-SVA-E01-1998_004_1.txt" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0088.json" }
CVE-1999-0089
0
CVE ID: CVE-1999-0089 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:57.635Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in AIX libDtSvc library can allow local users to gain root access. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0089
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:57.635Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0089" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0089.json" }
CVE-1999-0090
0
CVE ID: CVE-1999-0090 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.503Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in AIX rcp command allows local users to obtain root access. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0090
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.503Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0090" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0090.json" }
CVE-1999-0091
0
CVE ID: CVE-1999-0091 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.421Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in AIX writesrv command allows local users to obtain root access. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0091
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.421Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0091" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0091.json" }
CVE-1999-0092
0
CVE ID: CVE-1999-0092 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:57.521Z Vendors: n/a Products: n/a Problem Types: n/a Description: Various vulnerabilities in the AIX portmir command allows local users to obtain root access. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0092
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:57.521Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0092" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0092.json" }
CVE-1999-0093
0
CVE ID: CVE-1999-0093 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.325Z Vendors: n/a Products: n/a Problem Types: n/a Description: AIX nslookup command allows local users to obtain root access by not dropping privileges correctly. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0093
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.325Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0093" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0093.json" }
CVE-1999-0094
0
CVE ID: CVE-1999-0094 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.474Z Vendors: n/a Products: n/a Problem Types: n/a Description: AIX piodmgrsu command allows local users to gain additional group privileges. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0094
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.474Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0094" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0094.json" }
CVE-1999-0095
0
CVE ID: CVE-1999-0095 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.441Z Vendors: n/a Products: n/a Problem Types: n/a Description: The debug command in Sendmail is enabled, allowing attackers to execute commands as root. Additional Analyst Notes: - CVE Program Container: References: - http://www.osvdb.org/195 - http://www.securityfocus.com/bid/1 - http://www.openwall.com/lists/oss-security/2019/06/05/4 - http://www.openwall.com/lists/oss-security/2019/06/06/1 - http://seclists.org/fulldisclosure/2019/Jun/16
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.441Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://www.osvdb.org/195", "http://www.securityfocus.com/bid/1", "http://www.openwall.com/lists/oss-security/2019/06/05/4", "http://www.openwall.com/lists/oss-security/2019/06/06/1", "http://seclists.org/fulldisclosure/2019/Jun/16" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0095.json" }
CVE-1999-0096
0
CVE ID: CVE-1999-0096 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.448Z Vendors: n/a Products: n/a Problem Types: n/a Description: Sendmail decode alias can be used to overwrite sensitive files. Additional Analyst Notes: - CVE Program Container: References: - http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/122&type=0&nav=sec.sba
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.448Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "http://sunsolve.sun.com/pub-cgi/retrieve.pl?doctype=coll&doc=secbull/122&type=0&nav=sec.sba" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0096.json" }
CVE-1999-0097
0
CVE ID: CVE-1999-0097 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.531Z Vendors: n/a Products: n/a Problem Types: n/a Description: The AIX FTP client can be forced to execute commands from a malicious server through shell metacharacters (e.g. a pipe character). Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0097
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.531Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0097" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0097.json" }
CVE-1999-0098
0
CVE ID: CVE-1999-0098 State: PUBLISHED Published: 2000-02-04T05:00:00 Last Updated: 2024-08-01T16:27:56.969Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in SMTP HELO command in Sendmail allows a remote attacker to hide activities. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0098
{ "cwe": null, "problem_types": [ "n/a" ], "published": "2000-02-04T05:00:00", "last_modified": "2024-08-01T16:27:56.969Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0098" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0098.json" }
CVE-1999-0099
0
CVE ID: CVE-1999-0099 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.521Z Vendors: n/a Products: n/a Problem Types: n/a Description: Buffer overflow in syslog utility allows local or remote attackers to gain root privileges. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0099
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.521Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0099" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0099.json" }
CVE-1999-0100
0
CVE ID: CVE-1999-0100 State: PUBLISHED Published: 1999-09-29T04:00:00 Last Updated: 2024-08-01T16:27:57.375Z Vendors: n/a Products: n/a Problem Types: n/a Description: Remote access in AIX innd 1.5.1, using control messages. Additional Analyst Notes: - CVE Program Container: References: - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0100
{ "cwe": null, "problem_types": [ "n/a" ], "published": "1999-09-29T04:00:00", "last_modified": "2024-08-01T16:27:57.375Z", "severity": null, "cvss_score": null, "cvss_vector": null, "vendors": [ "n/a" ], "products": [ "n/a" ], "references": [ "https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-1999-0100" ], "source_file": "/teamspace/studios/this_studio/cvelistV5-main/cves/1999/0xxx/CVE-1999-0100.json" }
End of preview.

CVE NVD Embedding Dataset

This dataset contains the processed CVE/NVD corpus that was used with the rag_mixedbread pipeline. It bundles:

  • cve_corpus.jsonl (~700 MB): each line is a JSON object with cve_id, title, description, cvss, vendors, and the pre-computed text chunk that feeds the embedding model.
  • decomposed_query_results.json (63 KB): a dictionary of exemplar queries, decomposed sub-questions, and the retrieved doc IDs used for quality checks.

Generation pipeline

  1. Raw CVE/NVD feeds were normalized via prepare_cve_corpus.py.
  2. Fields were concatenated and deduplicated into retrieval-ready passages.
  3. The resulting corpus was used to build MixedBread vector indexes for the RAG workflow.

Usage

You can stream the JSONL file and index it with any vector database:

import json
from datasets import load_dataset

ds = load_dataset("Kushalkhemka/embedding-cve-nvd-dataset", split="train")
for row in ds:
    payload = json.loads(row["text"])  # each row is a JSON line
    # index payload["chunk"] into your vector store

The decomposed_query_results.json file is useful for evaluation—each entry has the original user question, the decomposed sub-queries, and the reference CVE IDs that should match during retrieval.

License

MIT. Please respect the original NVD data terms when redistributing.

Downloads last month
20