├── .gitignore ├── MANIFEST.in ├── README.md ├── changelog.txt ├── doc ├── 01-需求与设计.md ├── 02-快速开始.md ├── 03-编写脚本.md ├── 04-脚本扩展工具.md ├── 05-第三方搜索引擎.md ├── LICENSE.txt ├── banner.png ├── home.md ├── readme.md ├── test.png ├── usage.png ├── 内置脚本库.md ├── 版权声明.asciidoc └── 致谢.md ├── pocs ├── __init__.py ├── data │ ├── ZoomEye │ │ ├── 20200307121450.txt │ │ ├── 20200307131441.txt │ │ ├── 20200307131552.txt │ │ ├── 20200307143301.txt │ │ ├── 20200307143354.txt │ │ ├── 20200307143402.txt │ │ ├── 20200307143416.txt │ │ ├── 20200307143551.txt │ │ ├── 20200307143728.txt │ │ ├── 20200307143826.txt │ │ ├── 20200307152635.txt │ │ ├── 20200307153018.txt │ │ ├── 20200307153103.txt │ │ ├── 20200307153342.txt │ │ ├── 20200307153511.txt │ │ ├── 20200307154846.txt │ │ ├── 20200307172144.txt │ │ ├── 20200307172304.txt │ │ ├── 20200307172336.txt │ │ ├── 20200307172514.txt │ │ ├── 20200310202042.txt │ │ └── 20200310202105.txt │ ├── pass100.txt │ ├── pass1000.txt │ ├── user-agents.txt │ └── wooyun_domain ├── lib │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── fofa │ │ │ ├── __init__.py │ │ │ └── pack.py │ │ ├── google │ │ │ ├── __init__.py │ │ │ └── pack.py │ │ ├── shodan │ │ │ ├── __init__.py │ │ │ └── pack.py │ │ └── zoomeye │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── pack.py │ ├── cli.py │ ├── controller │ │ ├── __init__.py │ │ ├── api.py │ │ ├── engine.py │ │ └── loader.py │ ├── core │ │ ├── __init__.py │ │ ├── common.py │ │ ├── convert.py │ │ ├── data.py │ │ ├── datatype.py │ │ ├── enums.py │ │ ├── exception.py │ │ ├── log.py │ │ ├── option.py │ │ ├── register.py │ │ ├── revision.py │ │ └── settings.py │ ├── debug.py │ ├── parse │ │ ├── __init__.py │ │ └── cmdline.py │ └── utils │ │ ├── __init__.py │ │ ├── config.py │ │ ├── console.py │ │ ├── update.py │ │ └── versioncheck.py ├── plugin │ ├── __init__.py │ ├── ceye.py │ ├── cloudeye.py │ ├── dnslog.py │ ├── extracts.py │ ├── static.py │ ├── urlparser.py │ ├── useragent.py │ └── util.py ├── pocs.py ├── pocs_dnslog.py ├── script │ ├── __init__.py │ ├── activemq-upload.py │ ├── activemq-weakpass.py │ ├── apache │ │ └── tomcat-ajp-lfi.py │ ├── brute-example.py │ ├── confluence │ │ └── confluence-traversal.py │ ├── fiyo2.0.7-getshell.py │ ├── fuzz │ │ ├── __init__.py │ │ ├── bakfile.py │ │ ├── crossdomain.py │ │ ├── dzxss.py │ │ ├── gitleak.py │ │ ├── iisparse.py │ │ ├── ms15-034.py │ │ ├── phpinfo.py │ │ ├── phpmyadmin.py │ │ ├── svnleak.py │ │ ├── swf.py │ │ ├── tomcat_xmlleak.py │ │ └── wordspace.py │ ├── glassfish-traversal.py │ ├── jboss │ │ └── jboss-rce.py │ ├── jenkins │ │ ├── jenkins-cve-2017-1000353.py │ │ └── jenkins_poc.ser │ ├── joomla │ │ ├── joomla-registrationpro-sqli.py │ │ ├── joomla-videoflow-sqli.py │ │ └── joomla-videogallerylite-sqli.py │ ├── maccms8-rce.py │ ├── metinfo-504-sqli.py │ ├── navis-webaccess-sqli.py │ ├── opensshd-user-enum.py │ ├── output.py │ ├── php │ │ └── fastcgi-rce.py │ ├── phpcms │ │ ├── phpcms9.6.0-getshell.py │ │ └── phpcms9.6.0-sqli.py │ ├── phpmyadmin │ │ └── phpmyadmin-auth-rce.py │ ├── phpstudy_backdoor.py │ ├── redis │ │ ├── redis-cron-getshell.py │ │ ├── redis-sshkey-getshell.py │ │ ├── redis-unauth.py │ │ └── redis-web-probe.py │ ├── resin-doc-traversal.py │ ├── rsync-weakpass.py │ ├── samsoftech-admin-bypass.py │ ├── shiro-deserial-rce.py │ ├── siemens-camera-getpwd.py │ ├── solr │ │ ├── solr-unauth.py │ │ └── solr-velocity-rce.py │ ├── spider-example.py │ ├── spring │ │ └── spring-oauth2-rce.py │ ├── struts2 │ │ ├── __init__.py │ │ ├── s2-005.py │ │ ├── s2-015.py │ │ ├── s2-016.py │ │ ├── s2-032.py │ │ ├── s2-045.py │ │ ├── s2-052.py │ │ ├── s2-053.py │ │ ├── s2-057.py │ │ └── struts2-devmode.py │ ├── supervisor │ │ └── supervisord-RCE-CVE-2017-11610.py │ ├── test │ │ ├── __init__.py │ │ ├── test.py │ │ └── test2.py │ ├── test2.py │ ├── thinkphp │ │ ├── thinkphp-5-rce.py │ │ └── thinkphp-5.0.23-rce.py │ ├── tool │ │ ├── bing-dork.py │ │ ├── bingc.py │ │ ├── cdn-detect.py │ │ ├── craw.py │ │ ├── google-dork.py │ │ ├── portscan.py │ │ ├── vulscan.py │ │ └── waf.py │ ├── unauth │ │ ├── jetspeed-rest-unauth.py │ │ ├── kubernetes-unauth.py │ │ ├── memcached-unauth.py │ │ ├── mongodb-unauth.py │ │ └── redis-unauth.py │ ├── vbulletin-ssrf.py │ ├── vote-example.py │ ├── weblogic │ │ ├── weblogic-cve-2017-10271.py │ │ ├── weblogic-cve-2018-2628.py │ │ ├── weblogic-cve-2019-2725.py │ │ ├── weblogic-cve-2019-2729.py │ │ ├── weblogic-cve-2020-2551.py │ │ └── weblogic-ssrf-netmap.py │ ├── wordpress │ │ ├── wp-4.4-ssrf.py │ │ ├── wp-4.7-userinfo.py │ │ ├── wp-4.7.1-restapi.py │ │ ├── wp-bonkersbeat-filedownload.py │ │ ├── wp-forcedownload.py │ │ └── wp-ypo-filedownload.py │ ├── zabbix │ │ ├── zabbix-jsrpc-mysql-exp.py │ │ ├── zabbix-jsrpc-sqli.py │ │ └── zabbix-weakpass.py │ └── zonetransfer.py ├── test │ ├── example.py │ ├── myscriptdir │ │ ├── test.py │ │ └── test2.py │ ├── myself_script.py │ ├── test_ceye.py │ ├── test_config.py │ ├── test_dnslog.py │ ├── test_load_script.py │ ├── test_load_self_script.py │ ├── test_plugin_util.py │ ├── test_pocs_dnslog.py │ └── test_search_api.py ├── thirdparty │ ├── IPy │ │ ├── IPy.py │ │ └── __init__.py │ ├── __init__.py │ ├── ansistrm │ │ ├── __init__.py │ │ └── ansistrm.py │ ├── colorama │ │ ├── __init__.py │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── win32.py │ │ └── winterm.py │ ├── httplib2 │ │ ├── __init__.py │ │ ├── cacerts.txt │ │ ├── iri2uri.py │ │ └── socks.py │ ├── odict │ │ ├── __init__.py │ │ └── odict.py │ └── termcolor │ │ ├── __init__.py │ │ └── termcolor.py └── toolkit.conf.bak ├── requirement.txt ├── setup.cfg ├── setup.py └── test.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/changelog.txt -------------------------------------------------------------------------------- /doc/01-需求与设计.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/01-需求与设计.md -------------------------------------------------------------------------------- /doc/02-快速开始.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/02-快速开始.md -------------------------------------------------------------------------------- /doc/03-编写脚本.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/03-编写脚本.md -------------------------------------------------------------------------------- /doc/04-脚本扩展工具.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/04-脚本扩展工具.md -------------------------------------------------------------------------------- /doc/05-第三方搜索引擎.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/05-第三方搜索引擎.md -------------------------------------------------------------------------------- /doc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/LICENSE.txt -------------------------------------------------------------------------------- /doc/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/banner.png -------------------------------------------------------------------------------- /doc/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/home.md -------------------------------------------------------------------------------- /doc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/readme.md -------------------------------------------------------------------------------- /doc/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/test.png -------------------------------------------------------------------------------- /doc/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/usage.png -------------------------------------------------------------------------------- /doc/内置脚本库.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/内置脚本库.md -------------------------------------------------------------------------------- /doc/版权声明.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/版权声明.asciidoc -------------------------------------------------------------------------------- /doc/致谢.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/doc/致谢.md -------------------------------------------------------------------------------- /pocs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/__init__.py -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307121450.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307121450.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307131441.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307131552.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307131552.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307143301.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307143354.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307143402.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307143416.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307143416.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307143551.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307143551.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307143728.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307143728.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307143826.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307143826.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307152635.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307152635.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307153018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307153018.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307153103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307153103.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307153342.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307153342.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307153511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307153511.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307154846.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307154846.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307172144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307172144.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307172304.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307172304.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307172336.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307172336.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200307172514.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200307172514.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200310202042.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200310202042.txt -------------------------------------------------------------------------------- /pocs/data/ZoomEye/20200310202105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/ZoomEye/20200310202105.txt -------------------------------------------------------------------------------- /pocs/data/pass100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/pass100.txt -------------------------------------------------------------------------------- /pocs/data/pass1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/pass1000.txt -------------------------------------------------------------------------------- /pocs/data/user-agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/user-agents.txt -------------------------------------------------------------------------------- /pocs/data/wooyun_domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/data/wooyun_domain -------------------------------------------------------------------------------- /pocs/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/__init__.py -------------------------------------------------------------------------------- /pocs/lib/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/__init__.py -------------------------------------------------------------------------------- /pocs/lib/api/fofa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/fofa/__init__.py -------------------------------------------------------------------------------- /pocs/lib/api/fofa/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/fofa/pack.py -------------------------------------------------------------------------------- /pocs/lib/api/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/google/__init__.py -------------------------------------------------------------------------------- /pocs/lib/api/google/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/google/pack.py -------------------------------------------------------------------------------- /pocs/lib/api/shodan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/shodan/__init__.py -------------------------------------------------------------------------------- /pocs/lib/api/shodan/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/shodan/pack.py -------------------------------------------------------------------------------- /pocs/lib/api/zoomeye/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/zoomeye/__init__.py -------------------------------------------------------------------------------- /pocs/lib/api/zoomeye/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/zoomeye/base.py -------------------------------------------------------------------------------- /pocs/lib/api/zoomeye/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/api/zoomeye/pack.py -------------------------------------------------------------------------------- /pocs/lib/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/cli.py -------------------------------------------------------------------------------- /pocs/lib/controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/controller/__init__.py -------------------------------------------------------------------------------- /pocs/lib/controller/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/controller/api.py -------------------------------------------------------------------------------- /pocs/lib/controller/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/controller/engine.py -------------------------------------------------------------------------------- /pocs/lib/controller/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/controller/loader.py -------------------------------------------------------------------------------- /pocs/lib/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/__init__.py -------------------------------------------------------------------------------- /pocs/lib/core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/common.py -------------------------------------------------------------------------------- /pocs/lib/core/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/convert.py -------------------------------------------------------------------------------- /pocs/lib/core/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/data.py -------------------------------------------------------------------------------- /pocs/lib/core/datatype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/datatype.py -------------------------------------------------------------------------------- /pocs/lib/core/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/enums.py -------------------------------------------------------------------------------- /pocs/lib/core/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/exception.py -------------------------------------------------------------------------------- /pocs/lib/core/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/log.py -------------------------------------------------------------------------------- /pocs/lib/core/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/option.py -------------------------------------------------------------------------------- /pocs/lib/core/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/register.py -------------------------------------------------------------------------------- /pocs/lib/core/revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/revision.py -------------------------------------------------------------------------------- /pocs/lib/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/core/settings.py -------------------------------------------------------------------------------- /pocs/lib/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/debug.py -------------------------------------------------------------------------------- /pocs/lib/parse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/parse/__init__.py -------------------------------------------------------------------------------- /pocs/lib/parse/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/parse/cmdline.py -------------------------------------------------------------------------------- /pocs/lib/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/utils/__init__.py -------------------------------------------------------------------------------- /pocs/lib/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/utils/config.py -------------------------------------------------------------------------------- /pocs/lib/utils/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/utils/console.py -------------------------------------------------------------------------------- /pocs/lib/utils/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/utils/update.py -------------------------------------------------------------------------------- /pocs/lib/utils/versioncheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/lib/utils/versioncheck.py -------------------------------------------------------------------------------- /pocs/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/plugin/__init__.py -------------------------------------------------------------------------------- /pocs/plugin/ceye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/plugin/ceye.py -------------------------------------------------------------------------------- /pocs/plugin/cloudeye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/plugin/cloudeye.py -------------------------------------------------------------------------------- /pocs/plugin/dnslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/plugin/dnslog.py -------------------------------------------------------------------------------- /pocs/plugin/extracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/plugin/extracts.py -------------------------------------------------------------------------------- /pocs/plugin/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/plugin/static.py -------------------------------------------------------------------------------- /pocs/plugin/urlparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/plugin/urlparser.py -------------------------------------------------------------------------------- /pocs/plugin/useragent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/plugin/useragent.py -------------------------------------------------------------------------------- /pocs/plugin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/plugin/util.py -------------------------------------------------------------------------------- /pocs/pocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/pocs.py -------------------------------------------------------------------------------- /pocs/pocs_dnslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/pocs_dnslog.py -------------------------------------------------------------------------------- /pocs/script/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/__init__.py -------------------------------------------------------------------------------- /pocs/script/activemq-upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/activemq-upload.py -------------------------------------------------------------------------------- /pocs/script/activemq-weakpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/activemq-weakpass.py -------------------------------------------------------------------------------- /pocs/script/apache/tomcat-ajp-lfi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/apache/tomcat-ajp-lfi.py -------------------------------------------------------------------------------- /pocs/script/brute-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/brute-example.py -------------------------------------------------------------------------------- /pocs/script/confluence/confluence-traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/confluence/confluence-traversal.py -------------------------------------------------------------------------------- /pocs/script/fiyo2.0.7-getshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fiyo2.0.7-getshell.py -------------------------------------------------------------------------------- /pocs/script/fuzz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pocs/script/fuzz/bakfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/bakfile.py -------------------------------------------------------------------------------- /pocs/script/fuzz/crossdomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/crossdomain.py -------------------------------------------------------------------------------- /pocs/script/fuzz/dzxss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/dzxss.py -------------------------------------------------------------------------------- /pocs/script/fuzz/gitleak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/gitleak.py -------------------------------------------------------------------------------- /pocs/script/fuzz/iisparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/iisparse.py -------------------------------------------------------------------------------- /pocs/script/fuzz/ms15-034.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/ms15-034.py -------------------------------------------------------------------------------- /pocs/script/fuzz/phpinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/phpinfo.py -------------------------------------------------------------------------------- /pocs/script/fuzz/phpmyadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/phpmyadmin.py -------------------------------------------------------------------------------- /pocs/script/fuzz/svnleak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/svnleak.py -------------------------------------------------------------------------------- /pocs/script/fuzz/swf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/swf.py -------------------------------------------------------------------------------- /pocs/script/fuzz/tomcat_xmlleak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/tomcat_xmlleak.py -------------------------------------------------------------------------------- /pocs/script/fuzz/wordspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/fuzz/wordspace.py -------------------------------------------------------------------------------- /pocs/script/glassfish-traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/glassfish-traversal.py -------------------------------------------------------------------------------- /pocs/script/jboss/jboss-rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/jboss/jboss-rce.py -------------------------------------------------------------------------------- /pocs/script/jenkins/jenkins-cve-2017-1000353.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/jenkins/jenkins-cve-2017-1000353.py -------------------------------------------------------------------------------- /pocs/script/jenkins/jenkins_poc.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/jenkins/jenkins_poc.ser -------------------------------------------------------------------------------- /pocs/script/joomla/joomla-registrationpro-sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/joomla/joomla-registrationpro-sqli.py -------------------------------------------------------------------------------- /pocs/script/joomla/joomla-videoflow-sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/joomla/joomla-videoflow-sqli.py -------------------------------------------------------------------------------- /pocs/script/joomla/joomla-videogallerylite-sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/joomla/joomla-videogallerylite-sqli.py -------------------------------------------------------------------------------- /pocs/script/maccms8-rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/maccms8-rce.py -------------------------------------------------------------------------------- /pocs/script/metinfo-504-sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/metinfo-504-sqli.py -------------------------------------------------------------------------------- /pocs/script/navis-webaccess-sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/navis-webaccess-sqli.py -------------------------------------------------------------------------------- /pocs/script/opensshd-user-enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/opensshd-user-enum.py -------------------------------------------------------------------------------- /pocs/script/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/output.py -------------------------------------------------------------------------------- /pocs/script/php/fastcgi-rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/php/fastcgi-rce.py -------------------------------------------------------------------------------- /pocs/script/phpcms/phpcms9.6.0-getshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/phpcms/phpcms9.6.0-getshell.py -------------------------------------------------------------------------------- /pocs/script/phpcms/phpcms9.6.0-sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/phpcms/phpcms9.6.0-sqli.py -------------------------------------------------------------------------------- /pocs/script/phpmyadmin/phpmyadmin-auth-rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/phpmyadmin/phpmyadmin-auth-rce.py -------------------------------------------------------------------------------- /pocs/script/phpstudy_backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/phpstudy_backdoor.py -------------------------------------------------------------------------------- /pocs/script/redis/redis-cron-getshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/redis/redis-cron-getshell.py -------------------------------------------------------------------------------- /pocs/script/redis/redis-sshkey-getshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/redis/redis-sshkey-getshell.py -------------------------------------------------------------------------------- /pocs/script/redis/redis-unauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/redis/redis-unauth.py -------------------------------------------------------------------------------- /pocs/script/redis/redis-web-probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/redis/redis-web-probe.py -------------------------------------------------------------------------------- /pocs/script/resin-doc-traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/resin-doc-traversal.py -------------------------------------------------------------------------------- /pocs/script/rsync-weakpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/rsync-weakpass.py -------------------------------------------------------------------------------- /pocs/script/samsoftech-admin-bypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/samsoftech-admin-bypass.py -------------------------------------------------------------------------------- /pocs/script/shiro-deserial-rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/shiro-deserial-rce.py -------------------------------------------------------------------------------- /pocs/script/siemens-camera-getpwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/siemens-camera-getpwd.py -------------------------------------------------------------------------------- /pocs/script/solr/solr-unauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/solr/solr-unauth.py -------------------------------------------------------------------------------- /pocs/script/solr/solr-velocity-rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/solr/solr-velocity-rce.py -------------------------------------------------------------------------------- /pocs/script/spider-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/spider-example.py -------------------------------------------------------------------------------- /pocs/script/spring/spring-oauth2-rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/spring/spring-oauth2-rce.py -------------------------------------------------------------------------------- /pocs/script/struts2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/__init__.py -------------------------------------------------------------------------------- /pocs/script/struts2/s2-005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/s2-005.py -------------------------------------------------------------------------------- /pocs/script/struts2/s2-015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/s2-015.py -------------------------------------------------------------------------------- /pocs/script/struts2/s2-016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/s2-016.py -------------------------------------------------------------------------------- /pocs/script/struts2/s2-032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/s2-032.py -------------------------------------------------------------------------------- /pocs/script/struts2/s2-045.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/s2-045.py -------------------------------------------------------------------------------- /pocs/script/struts2/s2-052.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/s2-052.py -------------------------------------------------------------------------------- /pocs/script/struts2/s2-053.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/s2-053.py -------------------------------------------------------------------------------- /pocs/script/struts2/s2-057.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/s2-057.py -------------------------------------------------------------------------------- /pocs/script/struts2/struts2-devmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/struts2/struts2-devmode.py -------------------------------------------------------------------------------- /pocs/script/supervisor/supervisord-RCE-CVE-2017-11610.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/supervisor/supervisord-RCE-CVE-2017-11610.py -------------------------------------------------------------------------------- /pocs/script/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pocs/script/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/test/test.py -------------------------------------------------------------------------------- /pocs/script/test/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/test/test2.py -------------------------------------------------------------------------------- /pocs/script/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/test2.py -------------------------------------------------------------------------------- /pocs/script/thinkphp/thinkphp-5-rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/thinkphp/thinkphp-5-rce.py -------------------------------------------------------------------------------- /pocs/script/thinkphp/thinkphp-5.0.23-rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/thinkphp/thinkphp-5.0.23-rce.py -------------------------------------------------------------------------------- /pocs/script/tool/bing-dork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/tool/bing-dork.py -------------------------------------------------------------------------------- /pocs/script/tool/bingc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/tool/bingc.py -------------------------------------------------------------------------------- /pocs/script/tool/cdn-detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/tool/cdn-detect.py -------------------------------------------------------------------------------- /pocs/script/tool/craw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/tool/craw.py -------------------------------------------------------------------------------- /pocs/script/tool/google-dork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/tool/google-dork.py -------------------------------------------------------------------------------- /pocs/script/tool/portscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/tool/portscan.py -------------------------------------------------------------------------------- /pocs/script/tool/vulscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/tool/vulscan.py -------------------------------------------------------------------------------- /pocs/script/tool/waf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/tool/waf.py -------------------------------------------------------------------------------- /pocs/script/unauth/jetspeed-rest-unauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/unauth/jetspeed-rest-unauth.py -------------------------------------------------------------------------------- /pocs/script/unauth/kubernetes-unauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/unauth/kubernetes-unauth.py -------------------------------------------------------------------------------- /pocs/script/unauth/memcached-unauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/unauth/memcached-unauth.py -------------------------------------------------------------------------------- /pocs/script/unauth/mongodb-unauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/unauth/mongodb-unauth.py -------------------------------------------------------------------------------- /pocs/script/unauth/redis-unauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/unauth/redis-unauth.py -------------------------------------------------------------------------------- /pocs/script/vbulletin-ssrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/vbulletin-ssrf.py -------------------------------------------------------------------------------- /pocs/script/vote-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/vote-example.py -------------------------------------------------------------------------------- /pocs/script/weblogic/weblogic-cve-2017-10271.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/weblogic/weblogic-cve-2017-10271.py -------------------------------------------------------------------------------- /pocs/script/weblogic/weblogic-cve-2018-2628.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/weblogic/weblogic-cve-2018-2628.py -------------------------------------------------------------------------------- /pocs/script/weblogic/weblogic-cve-2019-2725.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/weblogic/weblogic-cve-2019-2725.py -------------------------------------------------------------------------------- /pocs/script/weblogic/weblogic-cve-2019-2729.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/weblogic/weblogic-cve-2019-2729.py -------------------------------------------------------------------------------- /pocs/script/weblogic/weblogic-cve-2020-2551.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/weblogic/weblogic-cve-2020-2551.py -------------------------------------------------------------------------------- /pocs/script/weblogic/weblogic-ssrf-netmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/weblogic/weblogic-ssrf-netmap.py -------------------------------------------------------------------------------- /pocs/script/wordpress/wp-4.4-ssrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/wordpress/wp-4.4-ssrf.py -------------------------------------------------------------------------------- /pocs/script/wordpress/wp-4.7-userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/wordpress/wp-4.7-userinfo.py -------------------------------------------------------------------------------- /pocs/script/wordpress/wp-4.7.1-restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/wordpress/wp-4.7.1-restapi.py -------------------------------------------------------------------------------- /pocs/script/wordpress/wp-bonkersbeat-filedownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/wordpress/wp-bonkersbeat-filedownload.py -------------------------------------------------------------------------------- /pocs/script/wordpress/wp-forcedownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/wordpress/wp-forcedownload.py -------------------------------------------------------------------------------- /pocs/script/wordpress/wp-ypo-filedownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/wordpress/wp-ypo-filedownload.py -------------------------------------------------------------------------------- /pocs/script/zabbix/zabbix-jsrpc-mysql-exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/zabbix/zabbix-jsrpc-mysql-exp.py -------------------------------------------------------------------------------- /pocs/script/zabbix/zabbix-jsrpc-sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/zabbix/zabbix-jsrpc-sqli.py -------------------------------------------------------------------------------- /pocs/script/zabbix/zabbix-weakpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/zabbix/zabbix-weakpass.py -------------------------------------------------------------------------------- /pocs/script/zonetransfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/script/zonetransfer.py -------------------------------------------------------------------------------- /pocs/test/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/example.py -------------------------------------------------------------------------------- /pocs/test/myscriptdir/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/myscriptdir/test.py -------------------------------------------------------------------------------- /pocs/test/myscriptdir/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/myscriptdir/test2.py -------------------------------------------------------------------------------- /pocs/test/myself_script.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #coding:utf-8 3 | 4 | """ 5 | 测试自定义脚本的加载 6 | """ 7 | 8 | def poc(str): 9 | return True -------------------------------------------------------------------------------- /pocs/test/test_ceye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/test_ceye.py -------------------------------------------------------------------------------- /pocs/test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/test_config.py -------------------------------------------------------------------------------- /pocs/test/test_dnslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/test_dnslog.py -------------------------------------------------------------------------------- /pocs/test/test_load_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/test_load_script.py -------------------------------------------------------------------------------- /pocs/test/test_load_self_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/test_load_self_script.py -------------------------------------------------------------------------------- /pocs/test/test_plugin_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/test_plugin_util.py -------------------------------------------------------------------------------- /pocs/test/test_pocs_dnslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/test_pocs_dnslog.py -------------------------------------------------------------------------------- /pocs/test/test_search_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/test/test_search_api.py -------------------------------------------------------------------------------- /pocs/thirdparty/IPy/IPy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/IPy/IPy.py -------------------------------------------------------------------------------- /pocs/thirdparty/IPy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/IPy/__init__.py -------------------------------------------------------------------------------- /pocs/thirdparty/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/__init__.py -------------------------------------------------------------------------------- /pocs/thirdparty/ansistrm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/ansistrm/__init__.py -------------------------------------------------------------------------------- /pocs/thirdparty/ansistrm/ansistrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/ansistrm/ansistrm.py -------------------------------------------------------------------------------- /pocs/thirdparty/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/colorama/__init__.py -------------------------------------------------------------------------------- /pocs/thirdparty/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/colorama/ansi.py -------------------------------------------------------------------------------- /pocs/thirdparty/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/colorama/ansitowin32.py -------------------------------------------------------------------------------- /pocs/thirdparty/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/colorama/initialise.py -------------------------------------------------------------------------------- /pocs/thirdparty/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/colorama/win32.py -------------------------------------------------------------------------------- /pocs/thirdparty/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/colorama/winterm.py -------------------------------------------------------------------------------- /pocs/thirdparty/httplib2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/httplib2/__init__.py -------------------------------------------------------------------------------- /pocs/thirdparty/httplib2/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/httplib2/cacerts.txt -------------------------------------------------------------------------------- /pocs/thirdparty/httplib2/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/httplib2/iri2uri.py -------------------------------------------------------------------------------- /pocs/thirdparty/httplib2/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/httplib2/socks.py -------------------------------------------------------------------------------- /pocs/thirdparty/odict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/odict/__init__.py -------------------------------------------------------------------------------- /pocs/thirdparty/odict/odict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/odict/odict.py -------------------------------------------------------------------------------- /pocs/thirdparty/termcolor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/termcolor/__init__.py -------------------------------------------------------------------------------- /pocs/thirdparty/termcolor/termcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/thirdparty/termcolor/termcolor.py -------------------------------------------------------------------------------- /pocs/toolkit.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/pocs/toolkit.conf.bak -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/requirement.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | 4 | [bdist_wheel] 5 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/setup.py -------------------------------------------------------------------------------- /test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsir404/POC-S/HEAD/test.png --------------------------------------------------------------------------------