├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── circle.yml ├── data └── update_maxmind.sh ├── jager.py ├── parsers ├── __init__.py └── pdf.py ├── requirements.txt ├── scripts └── test.sh ├── setup.py ├── src └── __init__.py ├── testing.ipynb └── tests ├── test_extract_cves.py └── test_extract_ips.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/circle.yml -------------------------------------------------------------------------------- /data/update_maxmind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/data/update_maxmind.sh -------------------------------------------------------------------------------- /jager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/jager.py -------------------------------------------------------------------------------- /parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsers/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/parsers/pdf.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/testing.ipynb -------------------------------------------------------------------------------- /tests/test_extract_cves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/tests/test_extract_cves.py -------------------------------------------------------------------------------- /tests/test_extract_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroberts/jager/HEAD/tests/test_extract_ips.py --------------------------------------------------------------------------------