├── .gitignore ├── Dockerfile ├── README.md ├── exploit.py ├── pom.xml ├── screenshots ├── RCE.png ├── runexploit_2.png └── webpage.png └── src ├── main ├── java │ └── com │ │ └── reznok │ │ └── helloworld │ │ ├── Greeting.java │ │ ├── HelloController.java │ │ └── HelloworldApplication.java └── resources │ ├── application.properties │ └── templates │ └── hello.html └── test └── java └── com └── reznok └── helloworld └── HelloworldApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/README.md -------------------------------------------------------------------------------- /exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/exploit.py -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/pom.xml -------------------------------------------------------------------------------- /screenshots/RCE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/screenshots/RCE.png -------------------------------------------------------------------------------- /screenshots/runexploit_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/screenshots/runexploit_2.png -------------------------------------------------------------------------------- /screenshots/webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/screenshots/webpage.png -------------------------------------------------------------------------------- /src/main/java/com/reznok/helloworld/Greeting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/src/main/java/com/reznok/helloworld/Greeting.java -------------------------------------------------------------------------------- /src/main/java/com/reznok/helloworld/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/src/main/java/com/reznok/helloworld/HelloController.java -------------------------------------------------------------------------------- /src/main/java/com/reznok/helloworld/HelloworldApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/src/main/java/com/reznok/helloworld/HelloworldApplication.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/resources/templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/src/main/resources/templates/hello.html -------------------------------------------------------------------------------- /src/test/java/com/reznok/helloworld/HelloworldApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunasec-io/Spring4Shell-POC/HEAD/src/test/java/com/reznok/helloworld/HelloworldApplicationTests.java --------------------------------------------------------------------------------