├── .github └── workflows │ ├── copyright.yaml │ ├── docker.yaml │ └── gitlab.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── cvescannerv2.nse ├── example_data ├── metasploitable2 ├── metasploitable2.json ├── metasploitable2.log ├── metasploitable3 ├── metasploitable3.json └── metasploitable3.log └── extra ├── database.py ├── http-paths-vulnerscom.json ├── http-regex-vulnerscom.json ├── product-aliases.json ├── query.py └── requirements.txt /.github/workflows/copyright.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/.github/workflows/copyright.yaml -------------------------------------------------------------------------------- /.github/workflows/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/.github/workflows/docker.yaml -------------------------------------------------------------------------------- /.github/workflows/gitlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/.github/workflows/gitlab.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/README.md -------------------------------------------------------------------------------- /cvescannerv2.nse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/cvescannerv2.nse -------------------------------------------------------------------------------- /example_data/metasploitable2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/example_data/metasploitable2 -------------------------------------------------------------------------------- /example_data/metasploitable2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/example_data/metasploitable2.json -------------------------------------------------------------------------------- /example_data/metasploitable2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/example_data/metasploitable2.log -------------------------------------------------------------------------------- /example_data/metasploitable3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/example_data/metasploitable3 -------------------------------------------------------------------------------- /example_data/metasploitable3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/example_data/metasploitable3.json -------------------------------------------------------------------------------- /example_data/metasploitable3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/example_data/metasploitable3.log -------------------------------------------------------------------------------- /extra/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/extra/database.py -------------------------------------------------------------------------------- /extra/http-paths-vulnerscom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/extra/http-paths-vulnerscom.json -------------------------------------------------------------------------------- /extra/http-regex-vulnerscom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/extra/http-regex-vulnerscom.json -------------------------------------------------------------------------------- /extra/product-aliases.json: -------------------------------------------------------------------------------- 1 | { 2 | "iis": ["internet_information_services"] 3 | } -------------------------------------------------------------------------------- /extra/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/extra/query.py -------------------------------------------------------------------------------- /extra/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmanjarrez/CVEScannerV2/HEAD/extra/requirements.txt --------------------------------------------------------------------------------