├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── brutexss.py ├── brutexss.txt ├── checkurl.py ├── icon.ico ├── mechanize ├── _BLANK ├── __init__.py ├── __init__.pyc ├── _auth.py ├── _auth.pyc ├── _beautifulsoup.py ├── _beautifulsoup.pyc ├── _clientcookie.py ├── _clientcookie.pyc ├── _debug.py ├── _debug.pyc ├── _firefox3cookiejar.py ├── _firefox3cookiejar.pyc ├── _form.py ├── _form.pyc ├── _gzip.py ├── _gzip.pyc ├── _headersutil.py ├── _headersutil.pyc ├── _html.py ├── _html.pyc ├── _http.py ├── _http.pyc ├── _lwpcookiejar.py ├── _lwpcookiejar.pyc ├── _markupbase.py ├── _mechanize.py ├── _mechanize.pyc ├── _mozillacookiejar.py ├── _mozillacookiejar.pyc ├── _msiecookiejar.py ├── _msiecookiejar.pyc ├── _opener.py ├── _opener.pyc ├── _pullparser.py ├── _pullparser.pyc ├── _request.py ├── _request.pyc ├── _response.py ├── _response.pyc ├── _rfc3986.py ├── _rfc3986.pyc ├── _sgmllib_copy.py ├── _sgmllib_copy.pyc ├── _sockettimeout.py ├── _sockettimeout.pyc ├── _testcase.py ├── _urllib2.py ├── _urllib2.pyc ├── _urllib2_fork.py ├── _urllib2_fork.pyc ├── _useragent.py ├── _useragent.pyc ├── _util.py ├── _util.pyc ├── _version.py └── _version.pyc ├── parameters.py ├── screenshots ├── BruteXSS.png ├── _BLANK ├── brutexssaction.png ├── brutexssstart.png └── bupdate.png ├── version.txt ├── wordlist.txt └── wordlistimport.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2LQFT9QM4M7YU 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/README.md -------------------------------------------------------------------------------- /brutexss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/brutexss.py -------------------------------------------------------------------------------- /brutexss.txt: -------------------------------------------------------------------------------- 1 | Rajesh Majumdar 2 | and Xnuvers007 3 | -------------------------------------------------------------------------------- /checkurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/checkurl.py -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/icon.ico -------------------------------------------------------------------------------- /mechanize/_BLANK: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mechanize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/__init__.py -------------------------------------------------------------------------------- /mechanize/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/__init__.pyc -------------------------------------------------------------------------------- /mechanize/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_auth.py -------------------------------------------------------------------------------- /mechanize/_auth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_auth.pyc -------------------------------------------------------------------------------- /mechanize/_beautifulsoup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_beautifulsoup.py -------------------------------------------------------------------------------- /mechanize/_beautifulsoup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_beautifulsoup.pyc -------------------------------------------------------------------------------- /mechanize/_clientcookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_clientcookie.py -------------------------------------------------------------------------------- /mechanize/_clientcookie.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_clientcookie.pyc -------------------------------------------------------------------------------- /mechanize/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_debug.py -------------------------------------------------------------------------------- /mechanize/_debug.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_debug.pyc -------------------------------------------------------------------------------- /mechanize/_firefox3cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_firefox3cookiejar.py -------------------------------------------------------------------------------- /mechanize/_firefox3cookiejar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_firefox3cookiejar.pyc -------------------------------------------------------------------------------- /mechanize/_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_form.py -------------------------------------------------------------------------------- /mechanize/_form.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_form.pyc -------------------------------------------------------------------------------- /mechanize/_gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_gzip.py -------------------------------------------------------------------------------- /mechanize/_gzip.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_gzip.pyc -------------------------------------------------------------------------------- /mechanize/_headersutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_headersutil.py -------------------------------------------------------------------------------- /mechanize/_headersutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_headersutil.pyc -------------------------------------------------------------------------------- /mechanize/_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_html.py -------------------------------------------------------------------------------- /mechanize/_html.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_html.pyc -------------------------------------------------------------------------------- /mechanize/_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_http.py -------------------------------------------------------------------------------- /mechanize/_http.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_http.pyc -------------------------------------------------------------------------------- /mechanize/_lwpcookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_lwpcookiejar.py -------------------------------------------------------------------------------- /mechanize/_lwpcookiejar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_lwpcookiejar.pyc -------------------------------------------------------------------------------- /mechanize/_markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_markupbase.py -------------------------------------------------------------------------------- /mechanize/_mechanize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_mechanize.py -------------------------------------------------------------------------------- /mechanize/_mechanize.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_mechanize.pyc -------------------------------------------------------------------------------- /mechanize/_mozillacookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_mozillacookiejar.py -------------------------------------------------------------------------------- /mechanize/_mozillacookiejar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_mozillacookiejar.pyc -------------------------------------------------------------------------------- /mechanize/_msiecookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_msiecookiejar.py -------------------------------------------------------------------------------- /mechanize/_msiecookiejar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_msiecookiejar.pyc -------------------------------------------------------------------------------- /mechanize/_opener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_opener.py -------------------------------------------------------------------------------- /mechanize/_opener.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_opener.pyc -------------------------------------------------------------------------------- /mechanize/_pullparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_pullparser.py -------------------------------------------------------------------------------- /mechanize/_pullparser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_pullparser.pyc -------------------------------------------------------------------------------- /mechanize/_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_request.py -------------------------------------------------------------------------------- /mechanize/_request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_request.pyc -------------------------------------------------------------------------------- /mechanize/_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_response.py -------------------------------------------------------------------------------- /mechanize/_response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_response.pyc -------------------------------------------------------------------------------- /mechanize/_rfc3986.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_rfc3986.py -------------------------------------------------------------------------------- /mechanize/_rfc3986.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_rfc3986.pyc -------------------------------------------------------------------------------- /mechanize/_sgmllib_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_sgmllib_copy.py -------------------------------------------------------------------------------- /mechanize/_sgmllib_copy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_sgmllib_copy.pyc -------------------------------------------------------------------------------- /mechanize/_sockettimeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_sockettimeout.py -------------------------------------------------------------------------------- /mechanize/_sockettimeout.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_sockettimeout.pyc -------------------------------------------------------------------------------- /mechanize/_testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_testcase.py -------------------------------------------------------------------------------- /mechanize/_urllib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_urllib2.py -------------------------------------------------------------------------------- /mechanize/_urllib2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_urllib2.pyc -------------------------------------------------------------------------------- /mechanize/_urllib2_fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_urllib2_fork.py -------------------------------------------------------------------------------- /mechanize/_urllib2_fork.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_urllib2_fork.pyc -------------------------------------------------------------------------------- /mechanize/_useragent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_useragent.py -------------------------------------------------------------------------------- /mechanize/_useragent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_useragent.pyc -------------------------------------------------------------------------------- /mechanize/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_util.py -------------------------------------------------------------------------------- /mechanize/_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_util.pyc -------------------------------------------------------------------------------- /mechanize/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_version.py -------------------------------------------------------------------------------- /mechanize/_version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/mechanize/_version.pyc -------------------------------------------------------------------------------- /parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/parameters.py -------------------------------------------------------------------------------- /screenshots/BruteXSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/screenshots/BruteXSS.png -------------------------------------------------------------------------------- /screenshots/_BLANK: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /screenshots/brutexssaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/screenshots/brutexssaction.png -------------------------------------------------------------------------------- /screenshots/brutexssstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/screenshots/brutexssstart.png -------------------------------------------------------------------------------- /screenshots/bupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/screenshots/bupdate.png -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.5 2 | -------------------------------------------------------------------------------- /wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/wordlist.txt -------------------------------------------------------------------------------- /wordlistimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/BruteXSS/HEAD/wordlistimport.py --------------------------------------------------------------------------------