├── .gitignore ├── CVE_2022_28346 ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── demo ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── image-20220426224053969.png ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/.gitignore -------------------------------------------------------------------------------- /CVE_2022_28346/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CVE_2022_28346/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/CVE_2022_28346/asgi.py -------------------------------------------------------------------------------- /CVE_2022_28346/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/CVE_2022_28346/settings.py -------------------------------------------------------------------------------- /CVE_2022_28346/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/CVE_2022_28346/urls.py -------------------------------------------------------------------------------- /CVE_2022_28346/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/CVE_2022_28346/wsgi.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/README.md -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/demo/admin.py -------------------------------------------------------------------------------- /demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/demo/apps.py -------------------------------------------------------------------------------- /demo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/demo/migrations/0001_initial.py -------------------------------------------------------------------------------- /demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/demo/models.py -------------------------------------------------------------------------------- /demo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/demo/tests.py -------------------------------------------------------------------------------- /demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/demo/views.py -------------------------------------------------------------------------------- /image-20220426224053969.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/image-20220426224053969.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeEpinGh0st/CVE-2022-28346/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==3.2.11 --------------------------------------------------------------------------------