├── Auxile.py ├── LICENSE ├── README.md ├── changelog ├── core ├── __init__.py ├── __pycache__ │ └── DONT_DELETE_THIS_FOLDER ├── banner.py ├── complete.py ├── error.py ├── misc.py ├── parse.py ├── shell.py └── wordlist │ ├── DATABASE_FOLDER │ ├── admin.txt │ ├── dir │ ├── lfi.txt │ ├── plugins.txt │ ├── shells │ ├── upload.txt │ └── xss.txt ├── modules ├── __init__.py ├── brute.py ├── encdec.py ├── finder.py ├── joomsql.py ├── listener.py ├── nmap.py ├── prestashop.py ├── rce.py ├── scanner.py ├── userpro.py ├── webkit.py ├── wp_exp.py ├── wp_user.py └── xssy.py └── requirements.txt /Auxile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/Auxile.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/README.md -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/changelog -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/__pycache__/DONT_DELETE_THIS_FOLDER: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/banner.py -------------------------------------------------------------------------------- /core/complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/complete.py -------------------------------------------------------------------------------- /core/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/error.py -------------------------------------------------------------------------------- /core/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/misc.py -------------------------------------------------------------------------------- /core/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/parse.py -------------------------------------------------------------------------------- /core/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/shell.py -------------------------------------------------------------------------------- /core/wordlist/DATABASE_FOLDER: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/wordlist/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/wordlist/admin.txt -------------------------------------------------------------------------------- /core/wordlist/dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/wordlist/dir -------------------------------------------------------------------------------- /core/wordlist/lfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/wordlist/lfi.txt -------------------------------------------------------------------------------- /core/wordlist/plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/wordlist/plugins.txt -------------------------------------------------------------------------------- /core/wordlist/shells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/wordlist/shells -------------------------------------------------------------------------------- /core/wordlist/upload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/wordlist/upload.txt -------------------------------------------------------------------------------- /core/wordlist/xss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/core/wordlist/xss.txt -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/brute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/brute.py -------------------------------------------------------------------------------- /modules/encdec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/encdec.py -------------------------------------------------------------------------------- /modules/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/finder.py -------------------------------------------------------------------------------- /modules/joomsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/joomsql.py -------------------------------------------------------------------------------- /modules/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/listener.py -------------------------------------------------------------------------------- /modules/nmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/nmap.py -------------------------------------------------------------------------------- /modules/prestashop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/prestashop.py -------------------------------------------------------------------------------- /modules/rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/rce.py -------------------------------------------------------------------------------- /modules/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/scanner.py -------------------------------------------------------------------------------- /modules/userpro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/userpro.py -------------------------------------------------------------------------------- /modules/webkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/webkit.py -------------------------------------------------------------------------------- /modules/wp_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/wp_exp.py -------------------------------------------------------------------------------- /modules/wp_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/wp_user.py -------------------------------------------------------------------------------- /modules/xssy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonluca/AUXILE/HEAD/modules/xssy.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | bs4 3 | pexpect 4 | --------------------------------------------------------------------------------