├── .gitignore ├── .idea ├── $CACHE_FILE$ ├── .gitignore ├── JSP-Webshells.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── jarRepositories.xml ├── libraries │ ├── Maven__com_unboundid_unboundid_ldapsdk_3_1_1.xml │ ├── Maven__javax_servlet_javax_servlet_api_3_1_0.xml │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_43.xml │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_43.xml │ └── Maven__org_apache_tomcat_tomcat_annotations_api_8_5_43.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── README.md ├── jsp ├── 1 │ ├── 1.jsp │ ├── BcelEvil.java │ └── README.md ├── 2 │ ├── 2.jsp │ ├── ByteCodeEvil.java │ └── README.md ├── 3 │ ├── 3.jsp │ └── README.md ├── 4 │ ├── 4.jsp │ ├── Evil.java │ └── README.md ├── 5 │ ├── 5.jsp │ └── README.md ├── 6 │ ├── 6.jsp │ ├── EvilByteCode6.java │ └── README.md ├── 7 │ ├── 7.jsp │ └── README.md ├── 8 │ ├── 8.jsp │ └── README.md ├── 9 │ ├── 9.jsp │ └── README.md ├── 10 │ ├── 10.jsp │ ├── EvilScript.java │ ├── META-INF │ │ └── services │ │ │ └── javax.script.ScriptEngineFactory │ ├── README.md │ └── evil.jar ├── 11 │ ├── 11.jsp │ ├── EvilTranslet.java │ └── README.md ├── 12 │ ├── 12.jsp │ ├── EvilReadObject.java │ └── README.md ├── 13 │ ├── 13.jsp │ ├── Calc.java │ ├── LdapServer.java │ ├── OperationInterceptor.java │ └── README.md ├── 14 │ ├── 14.jsp │ ├── 14_2.jsp │ └── README.md ├── 15 │ ├── 15.jsp │ ├── Evil15.java │ ├── EvilMake.java │ └── README.md ├── 16 │ ├── 16.jsp │ ├── Evil16.java │ └── README.md ├── 17 │ ├── 17.jsp │ ├── 17_2.jsp │ └── README.md ├── 18 │ ├── 18.jsp │ └── README.md ├── 19 │ ├── 19.jsp │ ├── 19_2.jsp │ └── README.md ├── 20 │ ├── 20.jsp │ └── README.md ├── 21 │ ├── README.md │ ├── bcel.jsp │ └── proxy.jsp └── 22 │ ├── 22.jsp │ └── README.md └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | build 3 | target 4 | .idea -------------------------------------------------------------------------------- /.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/JSP-Webshells.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/JSP-Webshells.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_unboundid_unboundid_ldapsdk_3_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/libraries/Maven__com_unboundid_unboundid_ldapsdk_3_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__javax_servlet_javax_servlet_api_3_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/libraries/Maven__javax_servlet_javax_servlet_api_3_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_43.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_43.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_43.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_43.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_tomcat_annotations_api_8_5_43.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/libraries/Maven__org_apache_tomcat_tomcat_annotations_api_8_5_43.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/README.md -------------------------------------------------------------------------------- /jsp/1/1.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/1/1.jsp -------------------------------------------------------------------------------- /jsp/1/BcelEvil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/1/BcelEvil.java -------------------------------------------------------------------------------- /jsp/1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/1/README.md -------------------------------------------------------------------------------- /jsp/10/10.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/10/10.jsp -------------------------------------------------------------------------------- /jsp/10/EvilScript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/10/EvilScript.java -------------------------------------------------------------------------------- /jsp/10/META-INF/services/javax.script.ScriptEngineFactory: -------------------------------------------------------------------------------- 1 | EvilScript -------------------------------------------------------------------------------- /jsp/10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/10/README.md -------------------------------------------------------------------------------- /jsp/10/evil.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsp/11/11.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/11/11.jsp -------------------------------------------------------------------------------- /jsp/11/EvilTranslet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/11/EvilTranslet.java -------------------------------------------------------------------------------- /jsp/11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/11/README.md -------------------------------------------------------------------------------- /jsp/12/12.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/12/12.jsp -------------------------------------------------------------------------------- /jsp/12/EvilReadObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/12/EvilReadObject.java -------------------------------------------------------------------------------- /jsp/12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/12/README.md -------------------------------------------------------------------------------- /jsp/13/13.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/13/13.jsp -------------------------------------------------------------------------------- /jsp/13/Calc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/13/Calc.java -------------------------------------------------------------------------------- /jsp/13/LdapServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/13/LdapServer.java -------------------------------------------------------------------------------- /jsp/13/OperationInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/13/OperationInterceptor.java -------------------------------------------------------------------------------- /jsp/13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/13/README.md -------------------------------------------------------------------------------- /jsp/14/14.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/14/14.jsp -------------------------------------------------------------------------------- /jsp/14/14_2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/14/14_2.jsp -------------------------------------------------------------------------------- /jsp/14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/14/README.md -------------------------------------------------------------------------------- /jsp/15/15.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/15/15.jsp -------------------------------------------------------------------------------- /jsp/15/Evil15.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/15/Evil15.java -------------------------------------------------------------------------------- /jsp/15/EvilMake.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/15/EvilMake.java -------------------------------------------------------------------------------- /jsp/15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/15/README.md -------------------------------------------------------------------------------- /jsp/16/16.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/16/16.jsp -------------------------------------------------------------------------------- /jsp/16/Evil16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/16/Evil16.java -------------------------------------------------------------------------------- /jsp/16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/16/README.md -------------------------------------------------------------------------------- /jsp/17/17.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/17/17.jsp -------------------------------------------------------------------------------- /jsp/17/17_2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/17/17_2.jsp -------------------------------------------------------------------------------- /jsp/17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/17/README.md -------------------------------------------------------------------------------- /jsp/18/18.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/18/18.jsp -------------------------------------------------------------------------------- /jsp/18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/18/README.md -------------------------------------------------------------------------------- /jsp/19/19.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/19/19.jsp -------------------------------------------------------------------------------- /jsp/19/19_2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/19/19_2.jsp -------------------------------------------------------------------------------- /jsp/19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/19/README.md -------------------------------------------------------------------------------- /jsp/2/2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/2/2.jsp -------------------------------------------------------------------------------- /jsp/2/ByteCodeEvil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/2/ByteCodeEvil.java -------------------------------------------------------------------------------- /jsp/2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/2/README.md -------------------------------------------------------------------------------- /jsp/20/20.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/20/20.jsp -------------------------------------------------------------------------------- /jsp/20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/20/README.md -------------------------------------------------------------------------------- /jsp/21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/21/README.md -------------------------------------------------------------------------------- /jsp/21/bcel.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/21/bcel.jsp -------------------------------------------------------------------------------- /jsp/21/proxy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/21/proxy.jsp -------------------------------------------------------------------------------- /jsp/22/22.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/22/22.jsp -------------------------------------------------------------------------------- /jsp/22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/22/README.md -------------------------------------------------------------------------------- /jsp/3/3.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/3/3.jsp -------------------------------------------------------------------------------- /jsp/3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/3/README.md -------------------------------------------------------------------------------- /jsp/4/4.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/4/4.jsp -------------------------------------------------------------------------------- /jsp/4/Evil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/4/Evil.java -------------------------------------------------------------------------------- /jsp/4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/4/README.md -------------------------------------------------------------------------------- /jsp/5/5.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/5/5.jsp -------------------------------------------------------------------------------- /jsp/5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/5/README.md -------------------------------------------------------------------------------- /jsp/6/6.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/6/6.jsp -------------------------------------------------------------------------------- /jsp/6/EvilByteCode6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/6/EvilByteCode6.java -------------------------------------------------------------------------------- /jsp/6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/6/README.md -------------------------------------------------------------------------------- /jsp/7/7.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/7/7.jsp -------------------------------------------------------------------------------- /jsp/7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/7/README.md -------------------------------------------------------------------------------- /jsp/8/8.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/8/8.jsp -------------------------------------------------------------------------------- /jsp/8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/8/README.md -------------------------------------------------------------------------------- /jsp/9/9.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/9/9.jsp -------------------------------------------------------------------------------- /jsp/9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/jsp/9/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedr3am/JSP-WebShells/HEAD/pom.xml --------------------------------------------------------------------------------