├── README.md ├── craw ├── CVE_craw │ ├── .idea │ │ ├── CVE_craw.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── CVE_craw │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── items.cpython-36.pyc │ │ │ ├── middlewares.cpython-36.pyc │ │ │ ├── pipelines.cpython-36.pyc │ │ │ └── settings.cpython-36.pyc │ │ ├── entry.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── cve_spider.cpython-36.pyc │ │ │ └── cve_spider.py │ ├── README.md │ └── scrapy.cfg ├── README.md └── cveid_craw │ ├── .idea │ ├── cveid_craw.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml │ ├── README.md │ ├── cveid_craw │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── getData.cpython-36.pyc │ │ ├── items.cpython-36.pyc │ │ ├── middlewares.cpython-36.pyc │ │ ├── pipelines.cpython-36.pyc │ │ └── settings.cpython-36.pyc │ ├── data │ │ ├── cveid_by_kind │ │ │ ├── cveid_bypass.txt │ │ │ ├── cveid_csrf.txt │ │ │ ├── cveid_dirtra.txt │ │ │ ├── cveid_dos.txt │ │ │ ├── cveid_execution.txt │ │ │ ├── cveid_fileinc.txt │ │ │ ├── cveid_gainpre.txt │ │ │ ├── cveid_httprs.txt │ │ │ ├── cveid_infor.txt │ │ │ ├── cveid_memc.txt │ │ │ ├── cveid_overflow.txt │ │ │ ├── cveid_sqli.txt │ │ │ └── cveid_xss.txt │ │ └── cveid_start_url │ │ │ └── cveid_star_url.txt │ ├── entry.py │ ├── getData.py │ ├── items.py │ ├── middlewares.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── cveid_spider.cpython-36.pyc │ │ └── cveid_spider.py │ └── scrapy.cfg └── detect_inconsistencies ├── CNNVD ├── .idea │ ├── 1.0.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── __pycache__ │ ├── cnnvd_parser.cpython-36.pyc │ ├── compare.cpython-36.pyc │ ├── cpe_dic_parser.cpython-36.pyc │ ├── get_data.cpython-36.pyc │ ├── nvd_parser.cpython-36.pyc │ ├── program_config.cpython-36.pyc │ └── program_utils.cpython-36.pyc ├── cnnvd_parser.py ├── compare.py ├── cpe_dic_parser.py ├── entry.py ├── get_data.py ├── nvd_parser.py ├── program_config.py └── program_utils.py ├── CNVD ├── .idea │ ├── 1.0.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── __pycache__ │ ├── cnvd_parser.cpython-36.pyc │ ├── compare.cpython-36.pyc │ ├── cpe_dic_parser.cpython-36.pyc │ ├── diff_of_cnnvd_and_cnvd.cpython-36.pyc │ ├── get_data.cpython-36.pyc │ ├── nvd_parser.cpython-36.pyc │ ├── program_config.cpython-36.pyc │ └── program_utils.cpython-36.pyc ├── cnvd_parser.py ├── compare.py ├── cpe_dic_parser.py ├── diff_of_cnnvd_and_cnvd.py ├── entry.py ├── get_data.py ├── nvd_parser.py ├── program_config.py ├── program_utils.py └── useful.py └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/README.md -------------------------------------------------------------------------------- /craw/CVE_craw/.idea/CVE_craw.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/.idea/CVE_craw.iml -------------------------------------------------------------------------------- /craw/CVE_craw/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/.idea/misc.xml -------------------------------------------------------------------------------- /craw/CVE_craw/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/.idea/modules.xml -------------------------------------------------------------------------------- /craw/CVE_craw/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/.idea/workspace.xml -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/__pycache__/items.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/__pycache__/items.cpython-36.pyc -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/__pycache__/middlewares.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/__pycache__/middlewares.cpython-36.pyc -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/__pycache__/pipelines.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/__pycache__/pipelines.cpython-36.pyc -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/entry.py -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/items.py -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/middlewares.py -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/pipelines.py -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/settings.py -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/spiders/__init__.py -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/spiders/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/spiders/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/spiders/__pycache__/cve_spider.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/spiders/__pycache__/cve_spider.cpython-36.pyc -------------------------------------------------------------------------------- /craw/CVE_craw/CVE_craw/spiders/cve_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/CVE_craw/spiders/cve_spider.py -------------------------------------------------------------------------------- /craw/CVE_craw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/README.md -------------------------------------------------------------------------------- /craw/CVE_craw/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/CVE_craw/scrapy.cfg -------------------------------------------------------------------------------- /craw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/README.md -------------------------------------------------------------------------------- /craw/cveid_craw/.idea/cveid_craw.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/.idea/cveid_craw.iml -------------------------------------------------------------------------------- /craw/cveid_craw/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/.idea/misc.xml -------------------------------------------------------------------------------- /craw/cveid_craw/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/.idea/modules.xml -------------------------------------------------------------------------------- /craw/cveid_craw/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/.idea/workspace.xml -------------------------------------------------------------------------------- /craw/cveid_craw/README.md: -------------------------------------------------------------------------------- 1 | ## 框架 2 | scrapy 3 | ## 功能 4 | 获取所有的CVEID,并按照[漏洞类别](https://www.cvedetails.com/vulnerabilities-by-types.php)分别保存(共计13类)。 5 | ## 数据 6 | CVEID存储在目录/data/cveid_by_kind。 -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/__pycache__/getData.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/__pycache__/getData.cpython-36.pyc -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/__pycache__/items.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/__pycache__/items.cpython-36.pyc -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/__pycache__/middlewares.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/__pycache__/middlewares.cpython-36.pyc -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/__pycache__/pipelines.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/__pycache__/pipelines.cpython-36.pyc -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_bypass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_bypass.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_csrf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_csrf.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_dirtra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_dirtra.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_dos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_dos.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_execution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_execution.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_fileinc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_fileinc.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_gainpre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_gainpre.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_httprs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_httprs.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_infor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_infor.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_memc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_memc.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_overflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_overflow.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_sqli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_sqli.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_xss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_by_kind/cveid_xss.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/data/cveid_start_url/cveid_star_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/data/cveid_start_url/cveid_star_url.txt -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/entry.py -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/getData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/getData.py -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/items.py -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/middlewares.py -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/pipelines.py -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/settings.py -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/spiders/__init__.py -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/spiders/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/spiders/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/spiders/__pycache__/cveid_spider.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/spiders/__pycache__/cveid_spider.cpython-36.pyc -------------------------------------------------------------------------------- /craw/cveid_craw/cveid_craw/spiders/cveid_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/cveid_craw/spiders/cveid_spider.py -------------------------------------------------------------------------------- /craw/cveid_craw/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/craw/cveid_craw/scrapy.cfg -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/.idea/1.0.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/.idea/1.0.iml -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/.idea/misc.xml -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/.idea/modules.xml -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/.idea/workspace.xml -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/__pycache__/cnnvd_parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/__pycache__/cnnvd_parser.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/__pycache__/compare.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/__pycache__/compare.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/__pycache__/cpe_dic_parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/__pycache__/cpe_dic_parser.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/__pycache__/get_data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/__pycache__/get_data.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/__pycache__/nvd_parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/__pycache__/nvd_parser.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/__pycache__/program_config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/__pycache__/program_config.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/__pycache__/program_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/__pycache__/program_utils.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/cnnvd_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/cnnvd_parser.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/compare.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/cpe_dic_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/cpe_dic_parser.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/entry.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/get_data.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/nvd_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/nvd_parser.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/program_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/program_config.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNNVD/program_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNNVD/program_utils.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/.idea/1.0.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/.idea/1.0.iml -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/.idea/misc.xml -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/.idea/modules.xml -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/.idea/workspace.xml -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/__pycache__/cnvd_parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/__pycache__/cnvd_parser.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/__pycache__/compare.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/__pycache__/compare.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/__pycache__/cpe_dic_parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/__pycache__/cpe_dic_parser.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/__pycache__/diff_of_cnnvd_and_cnvd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/__pycache__/diff_of_cnnvd_and_cnvd.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/__pycache__/get_data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/__pycache__/get_data.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/__pycache__/nvd_parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/__pycache__/nvd_parser.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/__pycache__/program_config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/__pycache__/program_config.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/__pycache__/program_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/__pycache__/program_utils.cpython-36.pyc -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/cnvd_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/cnvd_parser.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/compare.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/cpe_dic_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/cpe_dic_parser.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/diff_of_cnnvd_and_cnvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/diff_of_cnnvd_and_cnvd.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/entry.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/get_data.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/nvd_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/nvd_parser.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/program_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/program_config.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/program_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/program_utils.py -------------------------------------------------------------------------------- /detect_inconsistencies/CNVD/useful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/CNVD/useful.py -------------------------------------------------------------------------------- /detect_inconsistencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungryfoolou/Vulnerability_Mining/HEAD/detect_inconsistencies/README.md --------------------------------------------------------------------------------