├── HTTP.pl ├── HTTPFromFile.pl ├── README.md ├── modsec_lua ├── log2File.lua └── xss_detect.lua ├── requirePackage.txt ├── t ├── CommandExecution_callback-1.t ├── CommandExecution_createfunction-1.t ├── CommandExecution_dynamicvar-1.t ├── CommandExecution_eval-1.t ├── CommandExecution_preg_replace-1.t ├── CommandExecution_system-1.t ├── FileInclude-1.t ├── FileInclude-2.t ├── FileInclude-3.t ├── FileInclude-4.t ├── FileInclude-5.t ├── FileInclude_filegetcontents-1.t ├── FileUpload.t ├── redirect-1.t ├── sqli_code-1.t ├── sqli_comment-1.t ├── sqli_overflow-1.t ├── xss-1.t └── yijuhua_ce-1.t ├── vulCode ├── commandExecution │ ├── CommandExecution_arraymap.php │ ├── CommandExecution_createfunction.php │ ├── CommandExecution_dynamicvar.php │ ├── CommandExecution_eval.php │ ├── CommandExecution_preg_replace.php │ └── CommandExecution_system.php ├── fileInclude │ ├── FileInclude.php │ └── FileInclude_filegetcontents.php ├── redirect.php ├── webshell │ └── yijuhua.php └── xss │ └── xss.php └── xss.t /HTTP.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/HTTP.pl -------------------------------------------------------------------------------- /HTTPFromFile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/HTTPFromFile.pl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/README.md -------------------------------------------------------------------------------- /modsec_lua/log2File.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/modsec_lua/log2File.lua -------------------------------------------------------------------------------- /modsec_lua/xss_detect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/modsec_lua/xss_detect.lua -------------------------------------------------------------------------------- /requirePackage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/requirePackage.txt -------------------------------------------------------------------------------- /t/CommandExecution_callback-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/CommandExecution_callback-1.t -------------------------------------------------------------------------------- /t/CommandExecution_createfunction-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/CommandExecution_createfunction-1.t -------------------------------------------------------------------------------- /t/CommandExecution_dynamicvar-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/CommandExecution_dynamicvar-1.t -------------------------------------------------------------------------------- /t/CommandExecution_eval-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/CommandExecution_eval-1.t -------------------------------------------------------------------------------- /t/CommandExecution_preg_replace-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/CommandExecution_preg_replace-1.t -------------------------------------------------------------------------------- /t/CommandExecution_system-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/CommandExecution_system-1.t -------------------------------------------------------------------------------- /t/FileInclude-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/FileInclude-1.t -------------------------------------------------------------------------------- /t/FileInclude-2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/FileInclude-2.t -------------------------------------------------------------------------------- /t/FileInclude-3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/FileInclude-3.t -------------------------------------------------------------------------------- /t/FileInclude-4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/FileInclude-4.t -------------------------------------------------------------------------------- /t/FileInclude-5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/FileInclude-5.t -------------------------------------------------------------------------------- /t/FileInclude_filegetcontents-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/FileInclude_filegetcontents-1.t -------------------------------------------------------------------------------- /t/FileUpload.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/FileUpload.t -------------------------------------------------------------------------------- /t/redirect-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/redirect-1.t -------------------------------------------------------------------------------- /t/sqli_code-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/sqli_code-1.t -------------------------------------------------------------------------------- /t/sqli_comment-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/sqli_comment-1.t -------------------------------------------------------------------------------- /t/sqli_overflow-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/sqli_overflow-1.t -------------------------------------------------------------------------------- /t/xss-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/xss-1.t -------------------------------------------------------------------------------- /t/yijuhua_ce-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/t/yijuhua_ce-1.t -------------------------------------------------------------------------------- /vulCode/commandExecution/CommandExecution_arraymap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/vulCode/commandExecution/CommandExecution_arraymap.php -------------------------------------------------------------------------------- /vulCode/commandExecution/CommandExecution_createfunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/vulCode/commandExecution/CommandExecution_createfunction.php -------------------------------------------------------------------------------- /vulCode/commandExecution/CommandExecution_dynamicvar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/vulCode/commandExecution/CommandExecution_dynamicvar.php -------------------------------------------------------------------------------- /vulCode/commandExecution/CommandExecution_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/vulCode/commandExecution/CommandExecution_eval.php -------------------------------------------------------------------------------- /vulCode/commandExecution/CommandExecution_preg_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/vulCode/commandExecution/CommandExecution_preg_replace.php -------------------------------------------------------------------------------- /vulCode/commandExecution/CommandExecution_system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/vulCode/commandExecution/CommandExecution_system.php -------------------------------------------------------------------------------- /vulCode/fileInclude/FileInclude.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vulCode/fileInclude/FileInclude_filegetcontents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/vulCode/fileInclude/FileInclude_filegetcontents.php -------------------------------------------------------------------------------- /vulCode/redirect.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vulCode/webshell/yijuhua.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/vulCode/webshell/yijuhua.php -------------------------------------------------------------------------------- /vulCode/xss/xss.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xss.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjiti/WAFTest/HEAD/xss.t --------------------------------------------------------------------------------