├── .detect-secrets.json ├── .dockleignore ├── .github └── dependabot.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── analyze_hosts.py ├── analyze_hosts.sh ├── display_results.py ├── fours.sh ├── requirements.txt ├── results_to_html.py ├── sonar-project.properties ├── templates └── results.html ├── test_ssl_handshake.sh └── tox.ini /.detect-secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/.detect-secrets.json -------------------------------------------------------------------------------- /.dockleignore: -------------------------------------------------------------------------------- 1 | # allow root user, to properly use nmap 2 | CIS-DI-0001 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | \#*# 2 | *.py[cod] 3 | \.* 4 | analyze_hosts.output 5 | doc8.ini 6 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/README.md -------------------------------------------------------------------------------- /analyze_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/analyze_hosts.py -------------------------------------------------------------------------------- /analyze_hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/analyze_hosts.sh -------------------------------------------------------------------------------- /display_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/display_results.py -------------------------------------------------------------------------------- /fours.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/fours.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/requirements.txt -------------------------------------------------------------------------------- /results_to_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/results_to_html.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- 1 | sonar.projectKey=security-scripts -------------------------------------------------------------------------------- /templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/templates/results.html -------------------------------------------------------------------------------- /test_ssl_handshake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/test_ssl_handshake.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMosmans/security-scripts/HEAD/tox.ini --------------------------------------------------------------------------------