├── .gitattributes ├── .gitignore ├── LICENSE.md ├── config.py ├── docs ├── examples.md └── 취약점 데이터베이스 생성 솔루션 매뉴얼 V1.0.pdf ├── initialize.py ├── src ├── get_cvepatch_from_git.py ├── get_source_from_cvepatch.py ├── repo_updater.py ├── vul_dup_remover.py ├── vul_hidx_generator.py └── vul_verifier.py └── tools ├── FuncParser-opt.jar ├── __init__.py ├── cvedatagen ├── README.md ├── __init__.py ├── common.py ├── cveXmlDownloader.py ├── cveXmlParser.py └── cveXmlUpdater.py └── parseutility.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pkl binary 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/LICENSE.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/config.py -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/취약점 데이터베이스 생성 솔루션 매뉴얼 V1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/docs/취약점 데이터베이스 생성 솔루션 매뉴얼 V1.0.pdf -------------------------------------------------------------------------------- /initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/initialize.py -------------------------------------------------------------------------------- /src/get_cvepatch_from_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/src/get_cvepatch_from_git.py -------------------------------------------------------------------------------- /src/get_source_from_cvepatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/src/get_source_from_cvepatch.py -------------------------------------------------------------------------------- /src/repo_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/src/repo_updater.py -------------------------------------------------------------------------------- /src/vul_dup_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/src/vul_dup_remover.py -------------------------------------------------------------------------------- /src/vul_hidx_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/src/vul_hidx_generator.py -------------------------------------------------------------------------------- /src/vul_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/src/vul_verifier.py -------------------------------------------------------------------------------- /tools/FuncParser-opt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/tools/FuncParser-opt.jar -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/cvedatagen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/tools/cvedatagen/README.md -------------------------------------------------------------------------------- /tools/cvedatagen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/cvedatagen/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/tools/cvedatagen/common.py -------------------------------------------------------------------------------- /tools/cvedatagen/cveXmlDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/tools/cvedatagen/cveXmlDownloader.py -------------------------------------------------------------------------------- /tools/cvedatagen/cveXmlParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/tools/cvedatagen/cveXmlParser.py -------------------------------------------------------------------------------- /tools/cvedatagen/cveXmlUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/tools/cvedatagen/cveXmlUpdater.py -------------------------------------------------------------------------------- /tools/parseutility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squizz617/vulnDBGen/HEAD/tools/parseutility.py --------------------------------------------------------------------------------