├── .gitignore ├── README.md ├── config.conf ├── core ├── __init__.py ├── colorprinter.py ├── config.py ├── console.py ├── controller.py ├── ctftools │ ├── __init__.py │ ├── bintostr.py │ ├── kaisa.py │ ├── morse.py │ ├── nbase64.py │ └── zhalan.py ├── data.py ├── download.py ├── exploit.py ├── output.py ├── plugins │ ├── __init__.py │ ├── download.py │ ├── gevent_func.py │ ├── password.py │ ├── portscan.py │ ├── process_func.py │ ├── subnet.py │ ├── thread_func.py │ ├── webdir_gevent_multi.py │ ├── webdir_multiprocessing.py │ ├── webdir_threads.py │ └── whois.py └── scripts │ ├── 045poc.py │ ├── __init__.py │ ├── beescms_getshell.py │ ├── beescms_getshell2.py │ ├── beescms_getshell3.py │ ├── fpm.py │ ├── heartbeat.py │ ├── phpcms9.6.0-getshell.py │ ├── phpcms9.6.0-sqli.py │ ├── test.py │ └── thinkphp5.x_getshell.py ├── data ├── backup.dict ├── backup.txt └── dict.txt ├── help.png ├── requirements.txt ├── s7scan.py ├── test └── test.py └── utils ├── dnsparse.py ├── portresult.py ├── sqliresult.py └── urldeal.py /.gitignore: -------------------------------------------------------------------------------- 1 | reports/* 2 | *.pyc 3 | idea 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/README.md -------------------------------------------------------------------------------- /config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/config.conf -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/colorprinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/colorprinter.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/config.py -------------------------------------------------------------------------------- /core/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/console.py -------------------------------------------------------------------------------- /core/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/controller.py -------------------------------------------------------------------------------- /core/ctftools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/ctftools/bintostr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/ctftools/bintostr.py -------------------------------------------------------------------------------- /core/ctftools/kaisa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/ctftools/kaisa.py -------------------------------------------------------------------------------- /core/ctftools/morse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/ctftools/morse.py -------------------------------------------------------------------------------- /core/ctftools/nbase64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/ctftools/nbase64.py -------------------------------------------------------------------------------- /core/ctftools/zhalan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/ctftools/zhalan.py -------------------------------------------------------------------------------- /core/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/data.py -------------------------------------------------------------------------------- /core/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/download.py -------------------------------------------------------------------------------- /core/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/exploit.py -------------------------------------------------------------------------------- /core/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/output.py -------------------------------------------------------------------------------- /core/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/plugins/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/download.py -------------------------------------------------------------------------------- /core/plugins/gevent_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/gevent_func.py -------------------------------------------------------------------------------- /core/plugins/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/password.py -------------------------------------------------------------------------------- /core/plugins/portscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/portscan.py -------------------------------------------------------------------------------- /core/plugins/process_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/process_func.py -------------------------------------------------------------------------------- /core/plugins/subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/subnet.py -------------------------------------------------------------------------------- /core/plugins/thread_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/thread_func.py -------------------------------------------------------------------------------- /core/plugins/webdir_gevent_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/webdir_gevent_multi.py -------------------------------------------------------------------------------- /core/plugins/webdir_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/webdir_multiprocessing.py -------------------------------------------------------------------------------- /core/plugins/webdir_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/webdir_threads.py -------------------------------------------------------------------------------- /core/plugins/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/plugins/whois.py -------------------------------------------------------------------------------- /core/scripts/045poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/045poc.py -------------------------------------------------------------------------------- /core/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/scripts/beescms_getshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/beescms_getshell.py -------------------------------------------------------------------------------- /core/scripts/beescms_getshell2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/beescms_getshell2.py -------------------------------------------------------------------------------- /core/scripts/beescms_getshell3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/beescms_getshell3.py -------------------------------------------------------------------------------- /core/scripts/fpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/fpm.py -------------------------------------------------------------------------------- /core/scripts/heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/heartbeat.py -------------------------------------------------------------------------------- /core/scripts/phpcms9.6.0-getshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/phpcms9.6.0-getshell.py -------------------------------------------------------------------------------- /core/scripts/phpcms9.6.0-sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/phpcms9.6.0-sqli.py -------------------------------------------------------------------------------- /core/scripts/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/test.py -------------------------------------------------------------------------------- /core/scripts/thinkphp5.x_getshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/core/scripts/thinkphp5.x_getshell.py -------------------------------------------------------------------------------- /data/backup.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/data/backup.dict -------------------------------------------------------------------------------- /data/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/data/backup.txt -------------------------------------------------------------------------------- /data/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/data/dict.txt -------------------------------------------------------------------------------- /help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/help.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/requirements.txt -------------------------------------------------------------------------------- /s7scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/s7scan.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/test/test.py -------------------------------------------------------------------------------- /utils/dnsparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/utils/dnsparse.py -------------------------------------------------------------------------------- /utils/portresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/utils/portresult.py -------------------------------------------------------------------------------- /utils/sqliresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/utils/sqliresult.py -------------------------------------------------------------------------------- /utils/urldeal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/S7scan/HEAD/utils/urldeal.py --------------------------------------------------------------------------------