├── .github ├── ISSUE_TEMPLATE ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── pull_request.yml │ └── release.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── README.md ├── RELEASING.md ├── SECURITY.md ├── corsair_scan ├── __init__.py ├── corsair_cli.py └── corsair_scan.py ├── images ├── cli-report.png └── corsair_scan.png ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py └── test ├── test_corsair_cli.py ├── test_corsair_scan.py └── testfiles ├── json_test.json └── json_test_malformed.json /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | # History 2 | 3 | ## 0.1.0 (TBC) 4 | 5 | - Initial release. 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/SECURITY.md -------------------------------------------------------------------------------- /corsair_scan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /corsair_scan/corsair_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/corsair_scan/corsair_cli.py -------------------------------------------------------------------------------- /corsair_scan/corsair_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/corsair_scan/corsair_scan.py -------------------------------------------------------------------------------- /images/cli-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/images/cli-report.png -------------------------------------------------------------------------------- /images/corsair_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/images/corsair_scan.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_corsair_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/test/test_corsair_cli.py -------------------------------------------------------------------------------- /test/test_corsair_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/test/test_corsair_scan.py -------------------------------------------------------------------------------- /test/testfiles/json_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Santandersecurityresearch/corsair_scan/HEAD/test/testfiles/json_test.json -------------------------------------------------------------------------------- /test/testfiles/json_test_malformed.json: -------------------------------------------------------------------------------- 1 | [{ 2 | test 3 | } 4 | }] 5 | --------------------------------------------------------------------------------