├── README.md ├── nbproject ├── ant-deploy.xml ├── build-impl.xml ├── genfiles.properties ├── private │ ├── private.properties │ ├── private.xml │ └── retriever │ │ └── catalog.xml ├── project.properties └── project.xml ├── src ├── conf │ └── MANIFEST.MF └── java │ └── org │ └── cysecurity │ └── springdemo │ ├── AdminController.java │ ├── ErrorController.java │ └── HelloController.java └── web ├── META-INF └── context.xml ├── WEB-INF ├── applicationContext.xml ├── dispatcher-servlet.xml ├── glassfish-web.xml ├── jsp │ ├── Admin.jsp │ ├── Error.jsp │ └── HelloWorld.jsp ├── messages.properties ├── messages_en.properties └── web.xml └── redirect.jsp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/README.md -------------------------------------------------------------------------------- /nbproject/ant-deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/nbproject/ant-deploy.xml -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/nbproject/private/private.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/private/retriever/catalog.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /src/java/org/cysecurity/springdemo/AdminController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/src/java/org/cysecurity/springdemo/AdminController.java -------------------------------------------------------------------------------- /src/java/org/cysecurity/springdemo/ErrorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/src/java/org/cysecurity/springdemo/ErrorController.java -------------------------------------------------------------------------------- /src/java/org/cysecurity/springdemo/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/src/java/org/cysecurity/springdemo/HelloController.java -------------------------------------------------------------------------------- /web/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/META-INF/context.xml -------------------------------------------------------------------------------- /web/WEB-INF/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/WEB-INF/applicationContext.xml -------------------------------------------------------------------------------- /web/WEB-INF/dispatcher-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/WEB-INF/dispatcher-servlet.xml -------------------------------------------------------------------------------- /web/WEB-INF/glassfish-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/WEB-INF/glassfish-web.xml -------------------------------------------------------------------------------- /web/WEB-INF/jsp/Admin.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/WEB-INF/jsp/Admin.jsp -------------------------------------------------------------------------------- /web/WEB-INF/jsp/Error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/WEB-INF/jsp/Error.jsp -------------------------------------------------------------------------------- /web/WEB-INF/jsp/HelloWorld.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/WEB-INF/jsp/HelloWorld.jsp -------------------------------------------------------------------------------- /web/WEB-INF/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/WEB-INF/messages.properties -------------------------------------------------------------------------------- /web/WEB-INF/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/WEB-INF/messages_en.properties -------------------------------------------------------------------------------- /web/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/WEB-INF/web.xml -------------------------------------------------------------------------------- /web/redirect.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSPF-Founder/VulnerableSpring/HEAD/web/redirect.jsp --------------------------------------------------------------------------------