├── README.md ├── config ├── config.ini └── sysrule.json ├── img ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── lib ├── __pycache__ │ ├── req.cpython-39.pyc │ └── util.cpython-39.pyc ├── req.py └── util.py └── xazlscan.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/README.md -------------------------------------------------------------------------------- /config/config.ini: -------------------------------------------------------------------------------- 1 | 2 | [login] 3 | email=admin@xazlscan.com 4 | token=vdNBfhdxsJeKBFpF4aERJOGEWd5eZZ -------------------------------------------------------------------------------- /config/sysrule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/config/sysrule.json -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/img/4.png -------------------------------------------------------------------------------- /lib/__pycache__/req.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/lib/__pycache__/req.cpython-39.pyc -------------------------------------------------------------------------------- /lib/__pycache__/util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/lib/__pycache__/util.cpython-39.pyc -------------------------------------------------------------------------------- /lib/req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/lib/req.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/lib/util.py -------------------------------------------------------------------------------- /xazlscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myh0st/xazlscan/HEAD/xazlscan.py --------------------------------------------------------------------------------