├── README.md ├── proxy ├── config.xml ├── isqlmap.py ├── proxy_io.py ├── run.bat └── task.py ├── pscan.sql ├── root ├── api.php ├── config.php ├── conn.php ├── css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ └── style.css ├── dump.php ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── background.jpg │ ├── content.jpg │ ├── contentbot.jpg │ ├── header.png │ └── topcontent.jpg ├── index.php ├── js │ ├── bootstrap.min.js │ ├── jquery.min.js │ └── scripts.js ├── phpinfo.php ├── post_inj.php ├── pr.php └── style.css ├── run_deamo.bat ├── run_proxy.bat └── run_sqlmap.bat /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/README.md -------------------------------------------------------------------------------- /proxy/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/proxy/config.xml -------------------------------------------------------------------------------- /proxy/isqlmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/proxy/isqlmap.py -------------------------------------------------------------------------------- /proxy/proxy_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/proxy/proxy_io.py -------------------------------------------------------------------------------- /proxy/run.bat: -------------------------------------------------------------------------------- 1 | proxy_io.py 8080 -------------------------------------------------------------------------------- /proxy/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/proxy/task.py -------------------------------------------------------------------------------- /pscan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/pscan.sql -------------------------------------------------------------------------------- /root/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/api.php -------------------------------------------------------------------------------- /root/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/config.php -------------------------------------------------------------------------------- /root/conn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/conn.php -------------------------------------------------------------------------------- /root/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /root/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/css/bootstrap.min.css -------------------------------------------------------------------------------- /root/css/style.css: -------------------------------------------------------------------------------- 1 | # Empty CSS file for your own CSS -------------------------------------------------------------------------------- /root/dump.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /root/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /root/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /root/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /root/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /root/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/images/background.jpg -------------------------------------------------------------------------------- /root/images/content.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/images/content.jpg -------------------------------------------------------------------------------- /root/images/contentbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/images/contentbot.jpg -------------------------------------------------------------------------------- /root/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/images/header.png -------------------------------------------------------------------------------- /root/images/topcontent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/images/topcontent.jpg -------------------------------------------------------------------------------- /root/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/index.php -------------------------------------------------------------------------------- /root/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/js/bootstrap.min.js -------------------------------------------------------------------------------- /root/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/js/jquery.min.js -------------------------------------------------------------------------------- /root/js/scripts.js: -------------------------------------------------------------------------------- 1 | // Empty JS for your own code to be here -------------------------------------------------------------------------------- /root/phpinfo.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/post_inj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/post_inj.php -------------------------------------------------------------------------------- /root/pr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/pr.php -------------------------------------------------------------------------------- /root/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/root/style.css -------------------------------------------------------------------------------- /run_deamo.bat: -------------------------------------------------------------------------------- 1 | cd proxy 2 | task.py -------------------------------------------------------------------------------- /run_proxy.bat: -------------------------------------------------------------------------------- 1 | cd proxy 2 | run.bat -------------------------------------------------------------------------------- /run_sqlmap.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-scan/GourdScan/HEAD/run_sqlmap.bat --------------------------------------------------------------------------------