├── AVByPass ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── db.sqlite3 ├── download └── test.txt ├── images ├── image-20201225173011498.png └── image-20201225173214436.png ├── manage.py ├── requirements.txt ├── shellcode ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_shellcode.py │ ├── 0003_auto_20201225_0906.py │ └── __init__.py ├── models.py ├── shellcode.py ├── tests.py └── views.py └── templates ├── base.html ├── index.html └── shellcode.html /AVByPass/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AVByPass/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/AVByPass/asgi.py -------------------------------------------------------------------------------- /AVByPass/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/AVByPass/settings.py -------------------------------------------------------------------------------- /AVByPass/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/AVByPass/urls.py -------------------------------------------------------------------------------- /AVByPass/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/AVByPass/wsgi.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /download/test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /images/image-20201225173011498.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/images/image-20201225173011498.png -------------------------------------------------------------------------------- /images/image-20201225173214436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/images/image-20201225173214436.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyinstaller 2 | Django -------------------------------------------------------------------------------- /shellcode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shellcode/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/shellcode/admin.py -------------------------------------------------------------------------------- /shellcode/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/shellcode/apps.py -------------------------------------------------------------------------------- /shellcode/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/shellcode/migrations/0001_initial.py -------------------------------------------------------------------------------- /shellcode/migrations/0002_shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/shellcode/migrations/0002_shellcode.py -------------------------------------------------------------------------------- /shellcode/migrations/0003_auto_20201225_0906.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/shellcode/migrations/0003_auto_20201225_0906.py -------------------------------------------------------------------------------- /shellcode/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shellcode/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/shellcode/models.py -------------------------------------------------------------------------------- /shellcode/shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/shellcode/shellcode.py -------------------------------------------------------------------------------- /shellcode/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/shellcode/tests.py -------------------------------------------------------------------------------- /shellcode/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/shellcode/views.py -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhy0/AVByPass/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/shellcode.html: -------------------------------------------------------------------------------- 1 | {{ shellcode }} --------------------------------------------------------------------------------