├── .classpath ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── JNDI-Injection-Exploit-1.0-SNAPSHOT-all.jar ├── LICENSE ├── README.md ├── pom.xml ├── screenshots ├── 1.png ├── 2.png ├── modified.png ├── modified2.png └── modified_new.png ├── src ├── main │ ├── java │ │ ├── jetty │ │ │ └── JettyServer.java │ │ ├── jndi │ │ │ ├── LDAPRefServer.java │ │ │ └── RMIRefServer.java │ │ ├── run │ │ │ └── ServerStart.java │ │ └── util │ │ │ ├── Mapper.java │ │ │ ├── Reflections.java │ │ │ └── Transformers.java │ └── resources │ │ └── template │ │ ├── ExecTemplateJDK5.class │ │ ├── ExecTemplateJDK6.class │ │ ├── ExecTemplateJDK7.class │ │ └── ExecTemplateJDK8.class └── test │ ├── .DS_Store │ └── java │ ├── .DS_Store │ ├── ExecTemplateJDK5.java │ ├── ExecTemplateJDK6.java │ ├── ExecTemplateJDK7.java │ ├── ExecTemplateJDK8.java │ └── TestRuntime.java └── target ├── JNDI-Injection-Exploit-1.0-SNAPSHOT-all.jar ├── JNDI-Injection-Exploit-1.0-SNAPSHOT.jar ├── classes ├── jetty │ ├── JettyServer$DownloadServlet.class │ └── JettyServer.class ├── jndi │ ├── LDAPRefServer$OperationInterceptor.class │ ├── LDAPRefServer.class │ ├── RMIRefServer$1.class │ ├── RMIRefServer$2.class │ ├── RMIRefServer$Dummy.class │ ├── RMIRefServer$MarshalOutputStream.class │ └── RMIRefServer.class ├── run │ └── ServerStart.class ├── template │ ├── ExecTemplateJDK5.class │ ├── ExecTemplateJDK6.class │ ├── ExecTemplateJDK7.class │ └── ExecTemplateJDK8.class └── util │ ├── Mapper.class │ ├── Reflections.class │ ├── Transformers$TransformClass.class │ ├── Transformers$TransformMethod.class │ └── Transformers.class ├── maven-archiver └── pom.properties ├── maven-status └── maven-compiler-plugin │ ├── compile │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── testCompile │ └── default-testCompile │ ├── createdFiles.lst │ └── inputFiles.lst └── test-classes ├── ExecTemplateJDK5.class ├── ExecTemplateJDK6.class ├── ExecTemplateJDK7.class ├── ExecTemplateJDK8.class └── TestRuntime.class /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | #/target/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /JNDI-Injection-Exploit-1.0-SNAPSHOT-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/JNDI-Injection-Exploit-1.0-SNAPSHOT-all.jar -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/pom.xml -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/screenshots/modified.png -------------------------------------------------------------------------------- /screenshots/modified2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/screenshots/modified2.png -------------------------------------------------------------------------------- /screenshots/modified_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/screenshots/modified_new.png -------------------------------------------------------------------------------- /src/main/java/jetty/JettyServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/java/jetty/JettyServer.java -------------------------------------------------------------------------------- /src/main/java/jndi/LDAPRefServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/java/jndi/LDAPRefServer.java -------------------------------------------------------------------------------- /src/main/java/jndi/RMIRefServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/java/jndi/RMIRefServer.java -------------------------------------------------------------------------------- /src/main/java/run/ServerStart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/java/run/ServerStart.java -------------------------------------------------------------------------------- /src/main/java/util/Mapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/java/util/Mapper.java -------------------------------------------------------------------------------- /src/main/java/util/Reflections.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/java/util/Reflections.java -------------------------------------------------------------------------------- /src/main/java/util/Transformers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/java/util/Transformers.java -------------------------------------------------------------------------------- /src/main/resources/template/ExecTemplateJDK5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/resources/template/ExecTemplateJDK5.class -------------------------------------------------------------------------------- /src/main/resources/template/ExecTemplateJDK6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/resources/template/ExecTemplateJDK6.class -------------------------------------------------------------------------------- /src/main/resources/template/ExecTemplateJDK7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/resources/template/ExecTemplateJDK7.class -------------------------------------------------------------------------------- /src/main/resources/template/ExecTemplateJDK8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/main/resources/template/ExecTemplateJDK8.class -------------------------------------------------------------------------------- /src/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/test/.DS_Store -------------------------------------------------------------------------------- /src/test/java/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/test/java/.DS_Store -------------------------------------------------------------------------------- /src/test/java/ExecTemplateJDK5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/test/java/ExecTemplateJDK5.java -------------------------------------------------------------------------------- /src/test/java/ExecTemplateJDK6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/test/java/ExecTemplateJDK6.java -------------------------------------------------------------------------------- /src/test/java/ExecTemplateJDK7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/test/java/ExecTemplateJDK7.java -------------------------------------------------------------------------------- /src/test/java/ExecTemplateJDK8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/test/java/ExecTemplateJDK8.java -------------------------------------------------------------------------------- /src/test/java/TestRuntime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/src/test/java/TestRuntime.java -------------------------------------------------------------------------------- /target/JNDI-Injection-Exploit-1.0-SNAPSHOT-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/JNDI-Injection-Exploit-1.0-SNAPSHOT-all.jar -------------------------------------------------------------------------------- /target/JNDI-Injection-Exploit-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/JNDI-Injection-Exploit-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /target/classes/jetty/JettyServer$DownloadServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/jetty/JettyServer$DownloadServlet.class -------------------------------------------------------------------------------- /target/classes/jetty/JettyServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/jetty/JettyServer.class -------------------------------------------------------------------------------- /target/classes/jndi/LDAPRefServer$OperationInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/jndi/LDAPRefServer$OperationInterceptor.class -------------------------------------------------------------------------------- /target/classes/jndi/LDAPRefServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/jndi/LDAPRefServer.class -------------------------------------------------------------------------------- /target/classes/jndi/RMIRefServer$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/jndi/RMIRefServer$1.class -------------------------------------------------------------------------------- /target/classes/jndi/RMIRefServer$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/jndi/RMIRefServer$2.class -------------------------------------------------------------------------------- /target/classes/jndi/RMIRefServer$Dummy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/jndi/RMIRefServer$Dummy.class -------------------------------------------------------------------------------- /target/classes/jndi/RMIRefServer$MarshalOutputStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/jndi/RMIRefServer$MarshalOutputStream.class -------------------------------------------------------------------------------- /target/classes/jndi/RMIRefServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/jndi/RMIRefServer.class -------------------------------------------------------------------------------- /target/classes/run/ServerStart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/run/ServerStart.class -------------------------------------------------------------------------------- /target/classes/template/ExecTemplateJDK5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/template/ExecTemplateJDK5.class -------------------------------------------------------------------------------- /target/classes/template/ExecTemplateJDK6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/template/ExecTemplateJDK6.class -------------------------------------------------------------------------------- /target/classes/template/ExecTemplateJDK7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/template/ExecTemplateJDK7.class -------------------------------------------------------------------------------- /target/classes/template/ExecTemplateJDK8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/template/ExecTemplateJDK8.class -------------------------------------------------------------------------------- /target/classes/util/Mapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/util/Mapper.class -------------------------------------------------------------------------------- /target/classes/util/Reflections.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/util/Reflections.class -------------------------------------------------------------------------------- /target/classes/util/Transformers$TransformClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/util/Transformers$TransformClass.class -------------------------------------------------------------------------------- /target/classes/util/Transformers$TransformMethod.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/util/Transformers$TransformMethod.class -------------------------------------------------------------------------------- /target/classes/util/Transformers.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/classes/util/Transformers.class -------------------------------------------------------------------------------- /target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/maven-archiver/pom.properties -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /target/test-classes/ExecTemplateJDK5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/test-classes/ExecTemplateJDK5.class -------------------------------------------------------------------------------- /target/test-classes/ExecTemplateJDK6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/test-classes/ExecTemplateJDK6.class -------------------------------------------------------------------------------- /target/test-classes/ExecTemplateJDK7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/test-classes/ExecTemplateJDK7.class -------------------------------------------------------------------------------- /target/test-classes/ExecTemplateJDK8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/test-classes/ExecTemplateJDK8.class -------------------------------------------------------------------------------- /target/test-classes/TestRuntime.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckiestyle/JNDI-Exploit-Kit/HEAD/target/test-classes/TestRuntime.class --------------------------------------------------------------------------------