├── .github └── workflows │ └── semgrep.yml ├── .gitignore ├── autoattack ├── apps.py ├── example │ ├── exp.py │ ├── get_flag.py │ ├── pwn.py │ └── write_webshell.py ├── jobs.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── initadmin.py ├── migrations │ └── __init__.py └── models.py ├── config ├── __init__.py ├── asgi.py ├── settings.py └── wsgi.py ├── docker-compose.yaml ├── hosts.txt ├── manage.py ├── readme.md ├── requirements.txt ├── templates └── admin │ ├── base_site.html │ └── login.html └── utils ├── awd.py ├── django_job.py ├── encoder.py ├── readwrite.py ├── webshell.py └── webshell ├── eval.php.txt ├── fatter.php.txt ├── file_put_contents.php.txt ├── nodie.php.txt ├── passwd.php.txt ├── write_nodie_webshell.sh.txt └── write_webshell.sh.txt /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__ 3 | 0001_initial.py 4 | -------------------------------------------------------------------------------- /autoattack/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/autoattack/apps.py -------------------------------------------------------------------------------- /autoattack/example/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/autoattack/example/exp.py -------------------------------------------------------------------------------- /autoattack/example/get_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/autoattack/example/get_flag.py -------------------------------------------------------------------------------- /autoattack/example/pwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/autoattack/example/pwn.py -------------------------------------------------------------------------------- /autoattack/example/write_webshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/autoattack/example/write_webshell.py -------------------------------------------------------------------------------- /autoattack/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/autoattack/jobs.py -------------------------------------------------------------------------------- /autoattack/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoattack/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoattack/management/commands/initadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/autoattack/management/commands/initadmin.py -------------------------------------------------------------------------------- /autoattack/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoattack/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/autoattack/models.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/hosts.txt -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/manage.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/templates/admin/base_site.html -------------------------------------------------------------------------------- /templates/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/templates/admin/login.html -------------------------------------------------------------------------------- /utils/awd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/awd.py -------------------------------------------------------------------------------- /utils/django_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/django_job.py -------------------------------------------------------------------------------- /utils/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/encoder.py -------------------------------------------------------------------------------- /utils/readwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/readwrite.py -------------------------------------------------------------------------------- /utils/webshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/webshell.py -------------------------------------------------------------------------------- /utils/webshell/eval.php.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/webshell/fatter.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/webshell/fatter.php.txt -------------------------------------------------------------------------------- /utils/webshell/file_put_contents.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/webshell/file_put_contents.php.txt -------------------------------------------------------------------------------- /utils/webshell/nodie.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/webshell/nodie.php.txt -------------------------------------------------------------------------------- /utils/webshell/passwd.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/webshell/passwd.php.txt -------------------------------------------------------------------------------- /utils/webshell/write_nodie_webshell.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/webshell/write_nodie_webshell.sh.txt -------------------------------------------------------------------------------- /utils/webshell/write_webshell.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1nhann/Autoattack/HEAD/utils/webshell/write_webshell.sh.txt --------------------------------------------------------------------------------