├── .github └── FUNDING.yml ├── LICENSE.md ├── README.md ├── VERSION.md ├── detectify-cves.py ├── preview.png └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwen001/detectify-cves/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwen001/detectify-cves/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwen001/detectify-cves/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- 1 | 1.1.0 2 | -------------------------------------------------------------------------------- /detectify-cves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwen001/detectify-cves/HEAD/detectify-cves.py -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwen001/detectify-cves/HEAD/preview.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | json 2 | csv 3 | argparse 4 | colored --------------------------------------------------------------------------------