├── Awvs_Agent.xmind ├── README.md ├── __init__.py ├── bak_file ├── __init__.py ├── __init__.pyc ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── models.pyc ├── urls.py ├── urls.pyc ├── views.py └── views.pyc ├── models.py ├── screen ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png └── web.py /Awvs_Agent.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/Awvs_Agent.xmind -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bak_file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bak_file/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/bak_file/__init__.pyc -------------------------------------------------------------------------------- /bak_file/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/bak_file/apps.py -------------------------------------------------------------------------------- /bak_file/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bak_file/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/bak_file/models.py -------------------------------------------------------------------------------- /bak_file/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/bak_file/models.pyc -------------------------------------------------------------------------------- /bak_file/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/bak_file/urls.py -------------------------------------------------------------------------------- /bak_file/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/bak_file/urls.pyc -------------------------------------------------------------------------------- /bak_file/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/bak_file/views.py -------------------------------------------------------------------------------- /bak_file/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/bak_file/views.pyc -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/models.py -------------------------------------------------------------------------------- /screen/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/screen/1.png -------------------------------------------------------------------------------- /screen/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/screen/2.png -------------------------------------------------------------------------------- /screen/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/screen/3.png -------------------------------------------------------------------------------- /screen/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/screen/4.png -------------------------------------------------------------------------------- /screen/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/screen/5.png -------------------------------------------------------------------------------- /web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lee-0x00/sec-awvs-agent/HEAD/web.py --------------------------------------------------------------------------------