├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── codeql-analysis.yml ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── docker ├── Dockerfile ├── Dockerfile.alpine ├── Dockerfile.python ├── Dockerfile.python-slim ├── settings.py ├── setup.txt ├── startup.sh ├── tzdata.sh ├── urls.py └── xml │ └── empty.txt ├── functions.py ├── functions_nmap.py ├── migrations └── __init__.py ├── models.py ├── ndiff.py ├── network.py ├── nmap ├── cron.py ├── cve.py ├── nse │ ├── CVE-2018-7600_drupalgeddon.nse │ └── wordpress.nse ├── runcron.sh └── schedule │ └── .gitignore ├── nmap_merge.py ├── pdf.py ├── requirements.txt ├── static ├── async.js ├── custom.css ├── img │ └── bg.png ├── logo.png ├── logoblack.png ├── logomin.png └── report.css ├── templates └── nmapreport │ ├── main.html │ ├── nmap_auth.html │ ├── nmap_hostdetails.html │ ├── nmap_ndiff.html │ ├── nmap_network.html │ ├── nmap_portdetails.html │ ├── nmap_xmlfiles.html │ └── report.html ├── tests.py ├── token.py ├── urls.py └── views.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .github 2 | .git 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/admin.py -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/api.py -------------------------------------------------------------------------------- /apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/apps.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/docker/Dockerfile.alpine -------------------------------------------------------------------------------- /docker/Dockerfile.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/docker/Dockerfile.python -------------------------------------------------------------------------------- /docker/Dockerfile.python-slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/docker/Dockerfile.python-slim -------------------------------------------------------------------------------- /docker/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/docker/settings.py -------------------------------------------------------------------------------- /docker/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/docker/setup.txt -------------------------------------------------------------------------------- /docker/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/docker/startup.sh -------------------------------------------------------------------------------- /docker/tzdata.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | unset DEBIAN_FRONTEND 4 | dpkg-reconfigure tzdata 5 | -------------------------------------------------------------------------------- /docker/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/docker/urls.py -------------------------------------------------------------------------------- /docker/xml/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/functions.py -------------------------------------------------------------------------------- /functions_nmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/functions_nmap.py -------------------------------------------------------------------------------- /migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/models.py -------------------------------------------------------------------------------- /ndiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/ndiff.py -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/network.py -------------------------------------------------------------------------------- /nmap/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/nmap/cron.py -------------------------------------------------------------------------------- /nmap/cve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/nmap/cve.py -------------------------------------------------------------------------------- /nmap/nse/CVE-2018-7600_drupalgeddon.nse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/nmap/nse/CVE-2018-7600_drupalgeddon.nse -------------------------------------------------------------------------------- /nmap/nse/wordpress.nse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/nmap/nse/wordpress.nse -------------------------------------------------------------------------------- /nmap/runcron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/nmap/runcron.sh -------------------------------------------------------------------------------- /nmap/schedule/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /nmap_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/nmap_merge.py -------------------------------------------------------------------------------- /pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/pdf.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | xmltodict 3 | python-nmap 4 | Django 5 | -------------------------------------------------------------------------------- /static/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/static/async.js -------------------------------------------------------------------------------- /static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/static/custom.css -------------------------------------------------------------------------------- /static/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/static/img/bg.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/logoblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/static/logoblack.png -------------------------------------------------------------------------------- /static/logomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/static/logomin.png -------------------------------------------------------------------------------- /static/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/static/report.css -------------------------------------------------------------------------------- /templates/nmapreport/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/templates/nmapreport/main.html -------------------------------------------------------------------------------- /templates/nmapreport/nmap_auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/templates/nmapreport/nmap_auth.html -------------------------------------------------------------------------------- /templates/nmapreport/nmap_hostdetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/templates/nmapreport/nmap_hostdetails.html -------------------------------------------------------------------------------- /templates/nmapreport/nmap_ndiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/templates/nmapreport/nmap_ndiff.html -------------------------------------------------------------------------------- /templates/nmapreport/nmap_network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/templates/nmapreport/nmap_network.html -------------------------------------------------------------------------------- /templates/nmapreport/nmap_portdetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/templates/nmapreport/nmap_portdetails.html -------------------------------------------------------------------------------- /templates/nmapreport/nmap_xmlfiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/templates/nmapreport/nmap_xmlfiles.html -------------------------------------------------------------------------------- /templates/nmapreport/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/templates/nmapreport/report.html -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/tests.py -------------------------------------------------------------------------------- /token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/token.py -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/urls.py -------------------------------------------------------------------------------- /views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SECUREFOREST/WebMap/HEAD/views.py --------------------------------------------------------------------------------