├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── circle.yml ├── db.sqlite3 ├── djmoth ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── docker ├── ci.py ├── dockercfg.template └── supervisord.conf ├── manage.py ├── moth ├── __init__.py ├── fixtures │ └── initial_data.json ├── forms │ ├── __init__.py │ └── generic.py ├── models.py ├── static │ └── moth │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── spinning.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _spinning.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── sticky-footer-navbar.css │ │ └── style.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── images │ │ └── w3af.png │ │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery.js │ │ └── misc │ │ ├── eicar.com │ │ ├── eicar.com.txt │ │ ├── eicar_com.zip │ │ ├── eicarcom2.zip │ │ ├── section.txt │ │ └── xpath.xml ├── templates │ └── moth │ │ ├── about.html │ │ ├── base.html │ │ ├── home.html │ │ ├── index-of-family.html │ │ ├── index-of.html │ │ ├── vulnerability-form.html │ │ ├── vulnerability-manual-form.html │ │ ├── vulnerability-multipart-form.html │ │ ├── vulnerability-output.html │ │ ├── vulnerability-users-table.html │ │ └── vulnerability.html ├── tests │ ├── __init__.py │ ├── test_plugin_families.py │ ├── test_raw_url_path.py │ ├── test_router.py │ └── test_site.py ├── utils │ ├── __init__.py │ └── plugin_families.py └── views │ ├── __init__.py │ ├── base │ ├── __init__.py │ ├── family_index_template_view.py │ ├── form_template_view.py │ ├── html_template_view.py │ ├── index_template_view.py │ ├── raw_path_view.py │ ├── static_template_view.py │ └── vulnerable_template_view.py │ ├── router.py │ ├── site.py │ └── vulnerabilities │ ├── __init__.py │ ├── audit │ ├── __init__.py │ ├── blind_sqli.py │ ├── eval_vuln.py │ ├── global_redirect.py │ ├── local_file_read.py │ ├── memcache_injection.py │ ├── os_commanding.py │ ├── phishing_vector.py │ ├── sql_injection.py │ ├── ssrf.py │ ├── xpath.py │ └── xss.py │ ├── auth │ ├── __init__.py │ ├── auth_1.py │ ├── auth_2.py │ └── basic.py │ ├── bruteforce │ ├── __init__.py │ └── form.py │ ├── core │ ├── __init__.py │ ├── cookies.py │ ├── deflate.py │ ├── delay.py │ ├── encoding_euc-jp.py │ ├── encoding_spaces.py │ ├── encoding_utf8.py │ ├── file_upload.py │ ├── gzip.py │ └── headers.py │ ├── crawl │ ├── __init__.py │ ├── digit_sum.py │ ├── dir_bruter.py │ ├── oracle_discovery.py │ ├── web_spider.py │ └── wordnet.py │ ├── grep │ ├── __init__.py │ ├── ajax.py │ ├── clamav.py │ ├── click_jacking.py │ ├── code_disclosure.py │ ├── credit_cards.py │ ├── cross_domain_js.py │ ├── csp.py │ ├── directory_indexing.py │ ├── dom_xss.py │ ├── dot_net_event_validation.py │ ├── empty.py │ ├── error_500.py │ ├── error_pages.py │ ├── form_autocomplete.py │ ├── get_emails.py │ ├── hash_find.py │ ├── html_comments.py │ ├── http_in_body.py │ ├── lang.py │ ├── meta_tags.py │ ├── motw.py │ ├── objects.py │ ├── oracle.py │ ├── password_profiling.py │ ├── private_ip.py │ ├── ssn.py │ ├── strange_headers.py │ ├── strange_http_code.py │ ├── strange_parameters.py │ ├── svn_users.py │ └── wsdl_greper.py │ └── infrastructure │ ├── __init__.py │ └── halberd.py ├── requirements.txt ├── ssl ├── README.md ├── cacert.pem └── privkey.pem └── start_daemons.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/circle.yml -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /djmoth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djmoth/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/djmoth/settings.py -------------------------------------------------------------------------------- /djmoth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/djmoth/urls.py -------------------------------------------------------------------------------- /djmoth/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/djmoth/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/docker/ci.py -------------------------------------------------------------------------------- /docker/dockercfg.template: -------------------------------------------------------------------------------- 1 | {"https://index.docker.io/v1/":{"auth":"","email":""}} 2 | -------------------------------------------------------------------------------- /docker/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/docker/supervisord.conf -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/manage.py -------------------------------------------------------------------------------- /moth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/fixtures/initial_data.json -------------------------------------------------------------------------------- /moth/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/forms/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/forms/generic.py -------------------------------------------------------------------------------- /moth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/models.py -------------------------------------------------------------------------------- /moth/static/moth/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/bootstrap-theme.css -------------------------------------------------------------------------------- /moth/static/moth/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /moth/static/moth/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/bootstrap.css -------------------------------------------------------------------------------- /moth/static/moth/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/bootstrap.min.css -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/core.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/icons.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/larger.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/list.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/path.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/spinning.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/spinning.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/less/variables.less -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_spinning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_spinning.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /moth/static/moth/css/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /moth/static/moth/css/sticky-footer-navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/sticky-footer-navbar.css -------------------------------------------------------------------------------- /moth/static/moth/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/css/style.css -------------------------------------------------------------------------------- /moth/static/moth/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /moth/static/moth/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /moth/static/moth/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /moth/static/moth/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /moth/static/moth/images/w3af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/images/w3af.png -------------------------------------------------------------------------------- /moth/static/moth/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/js/bootstrap.js -------------------------------------------------------------------------------- /moth/static/moth/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/js/bootstrap.min.js -------------------------------------------------------------------------------- /moth/static/moth/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/js/jquery.js -------------------------------------------------------------------------------- /moth/static/moth/misc/eicar.com: -------------------------------------------------------------------------------- 1 | X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* -------------------------------------------------------------------------------- /moth/static/moth/misc/eicar.com.txt: -------------------------------------------------------------------------------- 1 | X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* -------------------------------------------------------------------------------- /moth/static/moth/misc/eicar_com.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/misc/eicar_com.zip -------------------------------------------------------------------------------- /moth/static/moth/misc/eicarcom2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/misc/eicarcom2.zip -------------------------------------------------------------------------------- /moth/static/moth/misc/section.txt: -------------------------------------------------------------------------------- 1 | Reading section text. 2 | -------------------------------------------------------------------------------- /moth/static/moth/misc/xpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/static/moth/misc/xpath.xml -------------------------------------------------------------------------------- /moth/templates/moth/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/about.html -------------------------------------------------------------------------------- /moth/templates/moth/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/base.html -------------------------------------------------------------------------------- /moth/templates/moth/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/home.html -------------------------------------------------------------------------------- /moth/templates/moth/index-of-family.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/index-of-family.html -------------------------------------------------------------------------------- /moth/templates/moth/index-of.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/index-of.html -------------------------------------------------------------------------------- /moth/templates/moth/vulnerability-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/vulnerability-form.html -------------------------------------------------------------------------------- /moth/templates/moth/vulnerability-manual-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/vulnerability-manual-form.html -------------------------------------------------------------------------------- /moth/templates/moth/vulnerability-multipart-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/vulnerability-multipart-form.html -------------------------------------------------------------------------------- /moth/templates/moth/vulnerability-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/vulnerability-output.html -------------------------------------------------------------------------------- /moth/templates/moth/vulnerability-users-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/vulnerability-users-table.html -------------------------------------------------------------------------------- /moth/templates/moth/vulnerability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/templates/moth/vulnerability.html -------------------------------------------------------------------------------- /moth/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/tests/test_plugin_families.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/tests/test_plugin_families.py -------------------------------------------------------------------------------- /moth/tests/test_raw_url_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/tests/test_raw_url_path.py -------------------------------------------------------------------------------- /moth/tests/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/tests/test_router.py -------------------------------------------------------------------------------- /moth/tests/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/tests/test_site.py -------------------------------------------------------------------------------- /moth/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/utils/plugin_families.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/utils/plugin_families.py -------------------------------------------------------------------------------- /moth/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/__init__.py -------------------------------------------------------------------------------- /moth/views/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/views/base/family_index_template_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/base/family_index_template_view.py -------------------------------------------------------------------------------- /moth/views/base/form_template_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/base/form_template_view.py -------------------------------------------------------------------------------- /moth/views/base/html_template_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/base/html_template_view.py -------------------------------------------------------------------------------- /moth/views/base/index_template_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/base/index_template_view.py -------------------------------------------------------------------------------- /moth/views/base/raw_path_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/base/raw_path_view.py -------------------------------------------------------------------------------- /moth/views/base/static_template_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/base/static_template_view.py -------------------------------------------------------------------------------- /moth/views/base/vulnerable_template_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/base/vulnerable_template_view.py -------------------------------------------------------------------------------- /moth/views/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/router.py -------------------------------------------------------------------------------- /moth/views/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/site.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/blind_sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/blind_sqli.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/eval_vuln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/eval_vuln.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/global_redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/global_redirect.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/local_file_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/local_file_read.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/memcache_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/memcache_injection.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/os_commanding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/os_commanding.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/phishing_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/phishing_vector.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/sql_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/sql_injection.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/ssrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/ssrf.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/xpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/xpath.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/audit/xss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/audit/xss.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/views/vulnerabilities/auth/auth_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/auth/auth_1.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/auth/auth_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/auth/auth_2.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/auth/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/auth/basic.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/bruteforce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/views/vulnerabilities/bruteforce/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/bruteforce/form.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/core/cookies.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/deflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/core/deflate.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/core/delay.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/encoding_euc-jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/core/encoding_euc-jp.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/encoding_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/core/encoding_spaces.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/encoding_utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/core/encoding_utf8.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/file_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/core/file_upload.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/core/gzip.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/core/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/core/headers.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/crawl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/views/vulnerabilities/crawl/digit_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/crawl/digit_sum.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/crawl/dir_bruter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/crawl/dir_bruter.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/crawl/oracle_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/crawl/oracle_discovery.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/crawl/web_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/crawl/web_spider.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/crawl/wordnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/crawl/wordnet.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/ajax.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/clamav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/clamav.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/click_jacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/click_jacking.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/code_disclosure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/code_disclosure.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/credit_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/credit_cards.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/cross_domain_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/cross_domain_js.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/csp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/csp.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/directory_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/directory_indexing.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/dom_xss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/dom_xss.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/dot_net_event_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/dot_net_event_validation.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/empty.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/error_500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/error_500.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/error_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/error_pages.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/form_autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/form_autocomplete.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/get_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/get_emails.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/hash_find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/hash_find.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/html_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/html_comments.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/http_in_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/http_in_body.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/lang.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/meta_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/meta_tags.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/motw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/motw.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/objects.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/oracle.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/password_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/password_profiling.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/private_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/private_ip.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/ssn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/ssn.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/strange_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/strange_headers.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/strange_http_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/strange_http_code.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/strange_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/strange_parameters.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/svn_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/svn_users.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/grep/wsdl_greper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/grep/wsdl_greper.py -------------------------------------------------------------------------------- /moth/views/vulnerabilities/infrastructure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moth/views/vulnerabilities/infrastructure/halberd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/moth/views/vulnerabilities/infrastructure/halberd.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/requirements.txt -------------------------------------------------------------------------------- /ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/ssl/README.md -------------------------------------------------------------------------------- /ssl/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/ssl/cacert.pem -------------------------------------------------------------------------------- /ssl/privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/ssl/privkey.pem -------------------------------------------------------------------------------- /start_daemons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresriancho/django-moth/HEAD/start_daemons.py --------------------------------------------------------------------------------