├── .github └── workflows │ └── lint_python.yml ├── .gitignore ├── Demo ├── RedTeam_logo3.gif ├── cve_description.gif ├── cve_description.png ├── dashboard.png ├── fullscan.gif ├── http-verb-tampering.gif └── rdp-bruteforce.gif ├── Dockerfile ├── LICENSE.md ├── README.md ├── RedTeam_toolkit ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── entrypoint.sh ├── manage.py ├── requirements.txt └── toolkit ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20210816_1449.py ├── 0003_alter_report_id.py └── __init__.py ├── models.py ├── scripts ├── __init__.py ├── checksum.py ├── crowbar.py ├── crowbar │ ├── __init__.py │ └── lib │ │ ├── __init__.py │ │ ├── core │ │ ├── __init__.py │ │ ├── common.py │ │ ├── exceptions.py │ │ ├── iprange.py │ │ ├── logger.py │ │ └── threadpool.py │ │ ├── main.py │ │ └── nmap.py ├── ctpdf.py ├── cvescanner.py ├── dirscanner.py ├── linux │ ├── __init__.py │ └── openssh_72.py ├── nmap.py ├── rustscan.py ├── sshbrute.py ├── webapp │ ├── __init__.py │ ├── auto_xss_finder.py │ ├── cve_2021_41773.py │ ├── cve_2022_1388.py │ ├── gather_url.py │ ├── knockpy │ │ ├── __init__.py │ │ ├── config.json │ │ ├── knockpy.py │ │ └── wordlist.txt │ ├── subbrute │ │ ├── __init__.py │ │ ├── resolvers.txt │ │ └── subbrute.py │ ├── subdomain_finder.py │ ├── sublist3r.py │ └── verbtampering.py ├── windows │ ├── __init__.py │ ├── printspooler.py │ ├── proxyshell.py │ └── rdpbrute.py └── wordlist │ ├── password.txt │ └── username.txt ├── static └── toolkit │ ├── c.bin │ ├── css │ ├── 403.css │ ├── base.css │ ├── block_cube.css │ ├── dashboard.css │ ├── download_page.css │ ├── font-awesome.css │ ├── searchbar.css │ ├── searchbar_main.css │ ├── single_input.css │ ├── sshrdp.css │ ├── subdomain_checkbox.css │ ├── templatemo-training-studio.css │ ├── under_meintenance.css │ ├── verbtampertable.css │ ├── webapp_menu.css │ └── webcrawlertable.css │ ├── fonts │ ├── Flaticon.woff │ ├── FontAwesome.otf │ ├── flexslider-icon.eot │ ├── flexslider-icon.svg │ ├── flexslider-icon.ttf │ ├── flexslider-icon.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── slick.eot │ ├── slick.svg │ ├── slick.ttf │ └── slick.woff │ ├── images │ ├── background_hand.jpg │ ├── cve.png │ ├── daco.png │ ├── daco2.png │ ├── daco4.png │ ├── dir_scan.png │ ├── favicon.png │ ├── favicon2.png │ ├── grt-1920x1200.jpg │ ├── ip_scan.png │ ├── linux.png │ ├── live_host.png │ ├── microsoft.png │ ├── openssh.png │ ├── pdf_logo.png │ ├── print-nightmare.jpg │ ├── rdp-brute.png │ ├── red_eagle.png │ ├── sidebar_logo.png │ ├── sidebar_pic.jpg │ ├── ssh_brute.png │ ├── webapp.jpg │ └── webapp.png │ └── js │ ├── custom.js │ ├── jquery-2.1.0.min.js │ └── scrollreveal.min.js ├── templates └── toolkit │ ├── 403.html │ ├── base.html │ ├── cvedes.html │ ├── dashboard.html │ ├── dirscan.html │ ├── download.html │ ├── fullscan.html │ ├── home.html │ ├── linux │ └── home.html │ ├── livehost.html │ ├── login.html │ ├── sshbruteforce.html │ ├── stream.html │ ├── webapp │ ├── cve_2021_41773.html │ ├── cve_2022_1388.html │ ├── index.html │ ├── subdomain.html │ ├── verbtampering.html │ ├── webcrawler.html │ └── xss_finder.html │ └── windows │ ├── index.html │ ├── proxyshell.html │ └── rdpbruteforce.html ├── tests.py ├── urls.py └── views.py /.github/workflows/lint_python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/.github/workflows/lint_python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/RedTeam_logo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/Demo/RedTeam_logo3.gif -------------------------------------------------------------------------------- /Demo/cve_description.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/Demo/cve_description.gif -------------------------------------------------------------------------------- /Demo/cve_description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/Demo/cve_description.png -------------------------------------------------------------------------------- /Demo/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/Demo/dashboard.png -------------------------------------------------------------------------------- /Demo/fullscan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/Demo/fullscan.gif -------------------------------------------------------------------------------- /Demo/http-verb-tampering.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/Demo/http-verb-tampering.gif -------------------------------------------------------------------------------- /Demo/rdp-bruteforce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/Demo/rdp-bruteforce.gif -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/README.md -------------------------------------------------------------------------------- /RedTeam_toolkit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RedTeam_toolkit/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/RedTeam_toolkit/asgi.py -------------------------------------------------------------------------------- /RedTeam_toolkit/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/RedTeam_toolkit/settings.py -------------------------------------------------------------------------------- /RedTeam_toolkit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/RedTeam_toolkit/urls.py -------------------------------------------------------------------------------- /RedTeam_toolkit/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/RedTeam_toolkit/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/requirements.txt -------------------------------------------------------------------------------- /toolkit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/admin.py -------------------------------------------------------------------------------- /toolkit/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/apps.py -------------------------------------------------------------------------------- /toolkit/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/forms.py -------------------------------------------------------------------------------- /toolkit/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/migrations/0001_initial.py -------------------------------------------------------------------------------- /toolkit/migrations/0002_auto_20210816_1449.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/migrations/0002_auto_20210816_1449.py -------------------------------------------------------------------------------- /toolkit/migrations/0003_alter_report_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/migrations/0003_alter_report_id.py -------------------------------------------------------------------------------- /toolkit/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/models.py -------------------------------------------------------------------------------- /toolkit/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/scripts/checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/checksum.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/__init__.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/lib/__init__.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/lib/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/lib/core/__init__.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/lib/core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/lib/core/common.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/lib/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/lib/core/exceptions.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/lib/core/iprange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/lib/core/iprange.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/lib/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/lib/core/logger.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/lib/core/threadpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/lib/core/threadpool.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/lib/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/lib/main.py -------------------------------------------------------------------------------- /toolkit/scripts/crowbar/lib/nmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/crowbar/lib/nmap.py -------------------------------------------------------------------------------- /toolkit/scripts/ctpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/ctpdf.py -------------------------------------------------------------------------------- /toolkit/scripts/cvescanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/cvescanner.py -------------------------------------------------------------------------------- /toolkit/scripts/dirscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/dirscanner.py -------------------------------------------------------------------------------- /toolkit/scripts/linux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/scripts/linux/openssh_72.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/linux/openssh_72.py -------------------------------------------------------------------------------- /toolkit/scripts/nmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/nmap.py -------------------------------------------------------------------------------- /toolkit/scripts/rustscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/rustscan.py -------------------------------------------------------------------------------- /toolkit/scripts/sshbrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/sshbrute.py -------------------------------------------------------------------------------- /toolkit/scripts/webapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/scripts/webapp/auto_xss_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/auto_xss_finder.py -------------------------------------------------------------------------------- /toolkit/scripts/webapp/cve_2021_41773.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/cve_2021_41773.py -------------------------------------------------------------------------------- /toolkit/scripts/webapp/cve_2022_1388.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/cve_2022_1388.py -------------------------------------------------------------------------------- /toolkit/scripts/webapp/gather_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/gather_url.py -------------------------------------------------------------------------------- /toolkit/scripts/webapp/knockpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/scripts/webapp/knockpy/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/knockpy/config.json -------------------------------------------------------------------------------- /toolkit/scripts/webapp/knockpy/knockpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/knockpy/knockpy.py -------------------------------------------------------------------------------- /toolkit/scripts/webapp/knockpy/wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/knockpy/wordlist.txt -------------------------------------------------------------------------------- /toolkit/scripts/webapp/subbrute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/scripts/webapp/subbrute/resolvers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/subbrute/resolvers.txt -------------------------------------------------------------------------------- /toolkit/scripts/webapp/subbrute/subbrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/subbrute/subbrute.py -------------------------------------------------------------------------------- /toolkit/scripts/webapp/subdomain_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/subdomain_finder.py -------------------------------------------------------------------------------- /toolkit/scripts/webapp/sublist3r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/sublist3r.py -------------------------------------------------------------------------------- /toolkit/scripts/webapp/verbtampering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/webapp/verbtampering.py -------------------------------------------------------------------------------- /toolkit/scripts/windows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/scripts/windows/printspooler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/windows/printspooler.py -------------------------------------------------------------------------------- /toolkit/scripts/windows/proxyshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/windows/proxyshell.py -------------------------------------------------------------------------------- /toolkit/scripts/windows/rdpbrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/windows/rdpbrute.py -------------------------------------------------------------------------------- /toolkit/scripts/wordlist/password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/wordlist/password.txt -------------------------------------------------------------------------------- /toolkit/scripts/wordlist/username.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/scripts/wordlist/username.txt -------------------------------------------------------------------------------- /toolkit/static/toolkit/c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/c.bin -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/403.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/403.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/base.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/block_cube.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/block_cube.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/dashboard.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/download_page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/download_page.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/font-awesome.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/searchbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/searchbar.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/searchbar_main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/searchbar_main.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/single_input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/single_input.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/sshrdp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/sshrdp.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/subdomain_checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/subdomain_checkbox.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/templatemo-training-studio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/templatemo-training-studio.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/under_meintenance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/under_meintenance.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/verbtampertable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/verbtampertable.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/webapp_menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/webapp_menu.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/css/webcrawlertable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/css/webcrawlertable.css -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/Flaticon.woff -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/flexslider-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/flexslider-icon.eot -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/flexslider-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/flexslider-icon.svg -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/flexslider-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/flexslider-icon.ttf -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/flexslider-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/flexslider-icon.woff -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/slick.eot -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/slick.svg -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/slick.ttf -------------------------------------------------------------------------------- /toolkit/static/toolkit/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/fonts/slick.woff -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/background_hand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/background_hand.jpg -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/cve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/cve.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/daco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/daco.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/daco2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/daco2.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/daco4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/daco4.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/dir_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/dir_scan.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/favicon.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/favicon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/favicon2.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/grt-1920x1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/grt-1920x1200.jpg -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/ip_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/ip_scan.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/linux.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/live_host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/live_host.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/microsoft.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/openssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/openssh.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/pdf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/pdf_logo.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/print-nightmare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/print-nightmare.jpg -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/rdp-brute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/rdp-brute.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/red_eagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/red_eagle.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/sidebar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/sidebar_logo.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/sidebar_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/sidebar_pic.jpg -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/ssh_brute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/ssh_brute.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/webapp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/webapp.jpg -------------------------------------------------------------------------------- /toolkit/static/toolkit/images/webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/images/webapp.png -------------------------------------------------------------------------------- /toolkit/static/toolkit/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/js/custom.js -------------------------------------------------------------------------------- /toolkit/static/toolkit/js/jquery-2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/js/jquery-2.1.0.min.js -------------------------------------------------------------------------------- /toolkit/static/toolkit/js/scrollreveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/static/toolkit/js/scrollreveal.min.js -------------------------------------------------------------------------------- /toolkit/templates/toolkit/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/403.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/base.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/cvedes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/cvedes.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/dashboard.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/dirscan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/dirscan.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/download.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/fullscan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/fullscan.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/home.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/linux/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/linux/home.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/livehost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/livehost.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/login.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/sshbruteforce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/sshbruteforce.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/stream.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/webapp/cve_2021_41773.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/webapp/cve_2021_41773.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/webapp/cve_2022_1388.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/webapp/cve_2022_1388.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/webapp/index.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/webapp/subdomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/webapp/subdomain.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/webapp/verbtampering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/webapp/verbtampering.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/webapp/webcrawler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/webapp/webcrawler.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/webapp/xss_finder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/webapp/xss_finder.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/windows/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/windows/index.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/windows/proxyshell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/windows/proxyshell.html -------------------------------------------------------------------------------- /toolkit/templates/toolkit/windows/rdpbruteforce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/templates/toolkit/windows/rdpbruteforce.html -------------------------------------------------------------------------------- /toolkit/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/tests.py -------------------------------------------------------------------------------- /toolkit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/urls.py -------------------------------------------------------------------------------- /toolkit/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signorrayan/RedTeam_toolkit/HEAD/toolkit/views.py --------------------------------------------------------------------------------