├── .gitignore ├── LICENSE.txt ├── README.md ├── api ├── apiserver.py ├── logs │ └── blank ├── models │ ├── __init__.py │ ├── collected_page.py │ ├── initiate_database.py │ ├── injection_record.py │ ├── request_record.py │ └── user.py ├── probe.js ├── requirements.txt └── templates │ ├── full_report_inline_view.htm │ ├── image_401_load_template.htm │ ├── image_load_template.htm │ ├── markdown_template.md │ ├── pgp_encrypted_template.txt │ └── xss_email_template.htm ├── generate_config.py └── gui ├── guiserver.py ├── requirements.txt ├── static ├── angularicons │ ├── angularicons.eot │ ├── angularicons.svg │ ├── angularicons.ttf │ └── angularicons.woff ├── css │ ├── aboutus.css │ ├── app.css │ ├── bootstrap.min.css │ ├── contactus.css │ ├── cover.css │ ├── docs.css │ ├── features.css │ ├── homepage.css │ ├── main.css │ ├── mainapp.css │ ├── prettify.css │ ├── pricing.css │ ├── signup.css │ ├── site.css │ └── site.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── icons │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ └── apple-touch-icon.png ├── img │ ├── Jumbotron.jpg │ ├── ascii-logo.gif │ ├── automated_payload_generation.png │ ├── automatic_page_recon.png │ ├── bg.png │ ├── bootflat-ui-kit.jpg │ ├── canvas_rendered_screenshots.png │ ├── correlated_injections.png │ ├── custom_xss_shortdomain.png │ ├── design.png │ ├── divider.png │ ├── easy_markdown_generation_reports.png │ ├── fast.png │ ├── favicon.ico │ ├── feature-bootstrap.png │ ├── feature-css.png │ ├── feature-lightweight.png │ ├── feature-mobile.png │ ├── footer-logo.png │ ├── github.png │ ├── index.png │ ├── logo-index.png │ ├── logo.png │ ├── manage_all_your_injections.png │ ├── photo-1.jpg │ ├── photo-2.jpg │ ├── photo-3.jpg │ ├── photo-4.jpg │ ├── prototyping.png │ ├── report_email_alerts.png │ ├── share.gif │ ├── slider1.jpg │ ├── slider2.jpg │ ├── slider3.jpg │ ├── thumbnail-1.jpg │ ├── thumbnail-2.jpg │ ├── thumbnail-3.jpg │ ├── thumbnail-4.jpg │ ├── together.png │ ├── wild_flowers.png │ ├── xss-hunter-report.png │ └── xss_frontpage_alert.png ├── js │ ├── app.js │ ├── bootstrap.min.js │ ├── clipboard.min.js │ ├── contactus.js │ ├── homepage.js │ ├── html5shiv.js │ ├── ie-emulation-modes-warning.js │ ├── ie10-viewport-bug-workaround.js │ ├── jquery-1.10.1.min.js │ ├── jquery-2.1.4.min.js │ ├── main.js │ ├── navbar.js │ ├── prettify.js │ ├── register.js │ ├── respond.min.js │ ├── site.min.js │ └── site.min.map └── video │ ├── xss_the_wrong_way.mp4 │ └── xss_the_wrong_way.webm └── templates ├── contact.htm ├── features.htm ├── footer.htm ├── header.htm ├── homepage.htm ├── mainapp.htm ├── mainapp_collected_pages.htm ├── mainapp_payloads.htm ├── mainapp_settings.htm ├── mainapp_xss_fires.htm ├── navbar.htm └── signup.htm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/README.md -------------------------------------------------------------------------------- /api/apiserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/apiserver.py -------------------------------------------------------------------------------- /api/logs/blank: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/models/collected_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/models/collected_page.py -------------------------------------------------------------------------------- /api/models/initiate_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/models/initiate_database.py -------------------------------------------------------------------------------- /api/models/injection_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/models/injection_record.py -------------------------------------------------------------------------------- /api/models/request_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/models/request_record.py -------------------------------------------------------------------------------- /api/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/models/user.py -------------------------------------------------------------------------------- /api/probe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/probe.js -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/requirements.txt -------------------------------------------------------------------------------- /api/templates/full_report_inline_view.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/templates/full_report_inline_view.htm -------------------------------------------------------------------------------- /api/templates/image_401_load_template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/templates/image_401_load_template.htm -------------------------------------------------------------------------------- /api/templates/image_load_template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/templates/image_load_template.htm -------------------------------------------------------------------------------- /api/templates/markdown_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/templates/markdown_template.md -------------------------------------------------------------------------------- /api/templates/pgp_encrypted_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/templates/pgp_encrypted_template.txt -------------------------------------------------------------------------------- /api/templates/xss_email_template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/api/templates/xss_email_template.htm -------------------------------------------------------------------------------- /generate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/generate_config.py -------------------------------------------------------------------------------- /gui/guiserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/guiserver.py -------------------------------------------------------------------------------- /gui/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/requirements.txt -------------------------------------------------------------------------------- /gui/static/angularicons/angularicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/angularicons/angularicons.eot -------------------------------------------------------------------------------- /gui/static/angularicons/angularicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/angularicons/angularicons.svg -------------------------------------------------------------------------------- /gui/static/angularicons/angularicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/angularicons/angularicons.ttf -------------------------------------------------------------------------------- /gui/static/angularicons/angularicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/angularicons/angularicons.woff -------------------------------------------------------------------------------- /gui/static/css/aboutus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/aboutus.css -------------------------------------------------------------------------------- /gui/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/app.css -------------------------------------------------------------------------------- /gui/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /gui/static/css/contactus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/contactus.css -------------------------------------------------------------------------------- /gui/static/css/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/cover.css -------------------------------------------------------------------------------- /gui/static/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/docs.css -------------------------------------------------------------------------------- /gui/static/css/features.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/features.css -------------------------------------------------------------------------------- /gui/static/css/homepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/homepage.css -------------------------------------------------------------------------------- /gui/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/main.css -------------------------------------------------------------------------------- /gui/static/css/mainapp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/mainapp.css -------------------------------------------------------------------------------- /gui/static/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/prettify.css -------------------------------------------------------------------------------- /gui/static/css/pricing.css: -------------------------------------------------------------------------------- 1 | .pricing_title_section { 2 | font-size: 36px; 3 | } 4 | -------------------------------------------------------------------------------- /gui/static/css/signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/signup.css -------------------------------------------------------------------------------- /gui/static/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/site.css -------------------------------------------------------------------------------- /gui/static/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/css/site.min.css -------------------------------------------------------------------------------- /gui/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /gui/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /gui/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /gui/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /gui/static/icons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/icons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /gui/static/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /gui/static/icons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/icons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /gui/static/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /gui/static/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /gui/static/icons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/icons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /gui/static/icons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/icons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /gui/static/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /gui/static/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /gui/static/img/Jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/Jumbotron.jpg -------------------------------------------------------------------------------- /gui/static/img/ascii-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/ascii-logo.gif -------------------------------------------------------------------------------- /gui/static/img/automated_payload_generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/automated_payload_generation.png -------------------------------------------------------------------------------- /gui/static/img/automatic_page_recon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/automatic_page_recon.png -------------------------------------------------------------------------------- /gui/static/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/bg.png -------------------------------------------------------------------------------- /gui/static/img/bootflat-ui-kit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/bootflat-ui-kit.jpg -------------------------------------------------------------------------------- /gui/static/img/canvas_rendered_screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/canvas_rendered_screenshots.png -------------------------------------------------------------------------------- /gui/static/img/correlated_injections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/correlated_injections.png -------------------------------------------------------------------------------- /gui/static/img/custom_xss_shortdomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/custom_xss_shortdomain.png -------------------------------------------------------------------------------- /gui/static/img/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/design.png -------------------------------------------------------------------------------- /gui/static/img/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/divider.png -------------------------------------------------------------------------------- /gui/static/img/easy_markdown_generation_reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/easy_markdown_generation_reports.png -------------------------------------------------------------------------------- /gui/static/img/fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/fast.png -------------------------------------------------------------------------------- /gui/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/favicon.ico -------------------------------------------------------------------------------- /gui/static/img/feature-bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/feature-bootstrap.png -------------------------------------------------------------------------------- /gui/static/img/feature-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/feature-css.png -------------------------------------------------------------------------------- /gui/static/img/feature-lightweight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/feature-lightweight.png -------------------------------------------------------------------------------- /gui/static/img/feature-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/feature-mobile.png -------------------------------------------------------------------------------- /gui/static/img/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/footer-logo.png -------------------------------------------------------------------------------- /gui/static/img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/github.png -------------------------------------------------------------------------------- /gui/static/img/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/index.png -------------------------------------------------------------------------------- /gui/static/img/logo-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/logo-index.png -------------------------------------------------------------------------------- /gui/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/logo.png -------------------------------------------------------------------------------- /gui/static/img/manage_all_your_injections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/manage_all_your_injections.png -------------------------------------------------------------------------------- /gui/static/img/photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/photo-1.jpg -------------------------------------------------------------------------------- /gui/static/img/photo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/photo-2.jpg -------------------------------------------------------------------------------- /gui/static/img/photo-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/photo-3.jpg -------------------------------------------------------------------------------- /gui/static/img/photo-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/photo-4.jpg -------------------------------------------------------------------------------- /gui/static/img/prototyping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/prototyping.png -------------------------------------------------------------------------------- /gui/static/img/report_email_alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/report_email_alerts.png -------------------------------------------------------------------------------- /gui/static/img/share.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/share.gif -------------------------------------------------------------------------------- /gui/static/img/slider1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/slider1.jpg -------------------------------------------------------------------------------- /gui/static/img/slider2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/slider2.jpg -------------------------------------------------------------------------------- /gui/static/img/slider3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/slider3.jpg -------------------------------------------------------------------------------- /gui/static/img/thumbnail-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/thumbnail-1.jpg -------------------------------------------------------------------------------- /gui/static/img/thumbnail-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/thumbnail-2.jpg -------------------------------------------------------------------------------- /gui/static/img/thumbnail-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/thumbnail-3.jpg -------------------------------------------------------------------------------- /gui/static/img/thumbnail-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/thumbnail-4.jpg -------------------------------------------------------------------------------- /gui/static/img/together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/together.png -------------------------------------------------------------------------------- /gui/static/img/wild_flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/wild_flowers.png -------------------------------------------------------------------------------- /gui/static/img/xss-hunter-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/xss-hunter-report.png -------------------------------------------------------------------------------- /gui/static/img/xss_frontpage_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/img/xss_frontpage_alert.png -------------------------------------------------------------------------------- /gui/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/app.js -------------------------------------------------------------------------------- /gui/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /gui/static/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/clipboard.min.js -------------------------------------------------------------------------------- /gui/static/js/contactus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/contactus.js -------------------------------------------------------------------------------- /gui/static/js/homepage.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/static/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/html5shiv.js -------------------------------------------------------------------------------- /gui/static/js/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /gui/static/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /gui/static/js/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /gui/static/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /gui/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/main.js -------------------------------------------------------------------------------- /gui/static/js/navbar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/static/js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/prettify.js -------------------------------------------------------------------------------- /gui/static/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/register.js -------------------------------------------------------------------------------- /gui/static/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/respond.min.js -------------------------------------------------------------------------------- /gui/static/js/site.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/site.min.js -------------------------------------------------------------------------------- /gui/static/js/site.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/js/site.min.map -------------------------------------------------------------------------------- /gui/static/video/xss_the_wrong_way.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/video/xss_the_wrong_way.mp4 -------------------------------------------------------------------------------- /gui/static/video/xss_the_wrong_way.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/static/video/xss_the_wrong_way.webm -------------------------------------------------------------------------------- /gui/templates/contact.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/contact.htm -------------------------------------------------------------------------------- /gui/templates/features.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/features.htm -------------------------------------------------------------------------------- /gui/templates/footer.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gui/templates/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/header.htm -------------------------------------------------------------------------------- /gui/templates/homepage.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/homepage.htm -------------------------------------------------------------------------------- /gui/templates/mainapp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/mainapp.htm -------------------------------------------------------------------------------- /gui/templates/mainapp_collected_pages.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/mainapp_collected_pages.htm -------------------------------------------------------------------------------- /gui/templates/mainapp_payloads.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/mainapp_payloads.htm -------------------------------------------------------------------------------- /gui/templates/mainapp_settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/mainapp_settings.htm -------------------------------------------------------------------------------- /gui/templates/mainapp_xss_fires.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/mainapp_xss_fires.htm -------------------------------------------------------------------------------- /gui/templates/navbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/navbar.htm -------------------------------------------------------------------------------- /gui/templates/signup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/HEAD/gui/templates/signup.htm --------------------------------------------------------------------------------