From c0e7bf66f7d23f48896e69b005f3798f8ee794bb Mon Sep 17 00:00:00 2001 From: Brock Date: Fri, 19 Dec 2014 11:51:45 +0800 Subject: [PATCH] add some new items --- XSSscan.py | 326 + cms-explorer-1.0.tar.bz2 | Bin 0 -> 176245 bytes cms-explorer-1.0/LICENSE.txt | 674 ++ cms-explorer-1.0/LW2.pm | 3865 ++++++++ cms-explorer-1.0/README.txt | 110 + cms-explorer-1.0/cms-explorer.pl | 572 ++ cms-explorer-1.0/drupal_plugins.txt | 6266 +++++++++++++ cms-explorer-1.0/drupal_themes.txt | 821 ++ cms-explorer-1.0/joomla_plugins.txt | 224 + cms-explorer-1.0/joomla_themes.txt | 30 + cms-explorer-1.0/wp_plugins.txt | 13019 ++++++++++++++++++++++++++ cms-explorer-1.0/wp_themes.txt | 3598 +++++++ data/BHDB.txt | 4546 +++++++++ dorkscan.py | 101 + gather.py | 14 +- geoedge.py | 107 + httptrace.py | 54 + rfitest.txt | 1076 +++ rwhois.sh | 138 + shock2.py | 0 shock_hunter.py | 0 struts2.py | 0 struts2_2.py | 0 struts_scan.py | 0 tankattack.py | 0 tcpscan.py | 0 urlutil.py | 0 wafw00f/.coveralls.yml | 0 wafw00f/.editorconfig | 15 + wafw00f/.gitignore | 61 + wafw00f/.landscape.yaml | 6 + wafw00f/.pylintrc | 273 + wafw00f/.travis.yml | 15 + wafw00f/CREDITS.txt | 17 + wafw00f/LICENSE | 28 + wafw00f/MANIFEST.in | 9 + wafw00f/Makefile | 44 + wafw00f/README.md | 110 + wafw00f/docs/Makefile | 177 + wafw00f/docs/conf.py | 261 + wafw00f/docs/index.rst | 22 + wafw00f/nose.cfg | 4 + wafw00f/requirements.txt | 1 + wafw00f/requirements/common.txt | 1 + wafw00f/requirements/dev.txt | 3 + wafw00f/requirements/docs.txt | 3 + wafw00f/requirements/prod.txt | 1 + wafw00f/requirements/test.txt | 7 + wafw00f/setup.py | 26 + wafw00f/wafw00f/__init__.py | 840 ++ wafw00f/wafw00f/tests/__init__.py | 0 wafw00f/wafw00f/tests/test_main.py | 114 + 52 files changed, 37572 insertions(+), 7 deletions(-) create mode 100755 XSSscan.py create mode 100644 cms-explorer-1.0.tar.bz2 create mode 100644 cms-explorer-1.0/LICENSE.txt create mode 100644 cms-explorer-1.0/LW2.pm create mode 100644 cms-explorer-1.0/README.txt create mode 100755 cms-explorer-1.0/cms-explorer.pl create mode 100644 cms-explorer-1.0/drupal_plugins.txt create mode 100644 cms-explorer-1.0/drupal_themes.txt create mode 100644 cms-explorer-1.0/joomla_plugins.txt create mode 100644 cms-explorer-1.0/joomla_themes.txt create mode 100644 cms-explorer-1.0/wp_plugins.txt create mode 100644 cms-explorer-1.0/wp_themes.txt create mode 100644 data/BHDB.txt create mode 100755 dorkscan.py create mode 100755 geoedge.py create mode 100755 httptrace.py create mode 100644 rfitest.txt create mode 100755 rwhois.sh mode change 100644 => 100755 shock2.py mode change 100644 => 100755 shock_hunter.py mode change 100644 => 100755 struts2.py mode change 100644 => 100755 struts2_2.py mode change 100644 => 100755 struts_scan.py mode change 100644 => 100755 tankattack.py mode change 100644 => 100755 tcpscan.py mode change 100644 => 100755 urlutil.py create mode 100644 wafw00f/.coveralls.yml create mode 100644 wafw00f/.editorconfig create mode 100644 wafw00f/.gitignore create mode 100644 wafw00f/.landscape.yaml create mode 100644 wafw00f/.pylintrc create mode 100644 wafw00f/.travis.yml create mode 100644 wafw00f/CREDITS.txt create mode 100644 wafw00f/LICENSE create mode 100644 wafw00f/MANIFEST.in create mode 100644 wafw00f/Makefile create mode 100644 wafw00f/README.md create mode 100644 wafw00f/docs/Makefile create mode 100644 wafw00f/docs/conf.py create mode 100644 wafw00f/docs/index.rst create mode 100644 wafw00f/nose.cfg create mode 100644 wafw00f/requirements.txt create mode 100644 wafw00f/requirements/common.txt create mode 100644 wafw00f/requirements/dev.txt create mode 100644 wafw00f/requirements/docs.txt create mode 100644 wafw00f/requirements/prod.txt create mode 100644 wafw00f/requirements/test.txt create mode 100644 wafw00f/setup.py create mode 100644 wafw00f/wafw00f/__init__.py create mode 100644 wafw00f/wafw00f/tests/__init__.py create mode 100644 wafw00f/wafw00f/tests/test_main.py diff --git a/XSSscan.py b/XSSscan.py new file mode 100755 index 0000000..8d95e16 --- /dev/null +++ b/XSSscan.py @@ -0,0 +1,326 @@ +#!/usr/bin/python +#XSS Scanner that can find hosts using a google query or search one site. +#If XSS is found it attempts to collect email addresses to further your attack +#or warn the target of the flaw. When the scan is complete +#it will print out the XSS's found and or write to file, it will find false positives +#so manually check before getting to excited. It also has verbose mode and +#you can change the alert pop-up message, check options!! +# +#Changelog v1.1: added options, verbose, write to file, change alert +#Changelog v1.2: added more xss payloads, an exception, better syntax, more runtime feedback +#Changelog v1.3: added https support, more xss payloads, the ability to change port, fixed some user input #problems, exiting without error messages with Ctrl-C (KeyboardInterrupt) +# +#http://darkcode.h1x.com +#d3hydr8[at]gmail[dot]com + +import sys, urllib2, re, sets, random, httplib, time, socket + +def title(): + print "\n\t d3hydr8[at]gmail[dot]com XSS Scanner v1.3" + print "\t-----------------------------------------------" + +def usage(): + title() + print "\n Usage: python XSSscan.py