Java 1.8.0_102 Mysql 8.0.17 Tomcat 8.5.11 IDEA git clone https://github.com/JoyChou93/java-sec-code Open in IDEA and clickrunbutton. Example: return: Viarus Tomcat git clone https://github.com/JoyChou93/java-sec-code&cd java-sec-code ...
Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up {{ message }} xiaohuan05 / java-sec-code Public Notifications You must be signed in to change notification settings Fork 2 Star 0 Code Issues 1 ...
Java常见通用漏洞和修复的代码以及利用payload. Contribute to JoyChou93/java-sec-code development by creating an account on GitHub.
Java web common vulnerabilities and security code which is base on springboot and spring security - java-sec-code/Fastjson.java at master · JoyChou93/java-sec-code
git clone https://github.com/JoyChou93/java-sec-code cd java-sec-code mvn clean package -DskipTests java -jar target/java-sec-code-1.0.0.jar Authenticate http://localhost:8080/login If you are not logged in, accessing any page will redirect you to the login page. The username & passwor...
* <a href="https://github.com/JoyChou93/java-sec-code/wiki/URL-whtielist-Bypass">More details</a> */ @GetMapping("/vuln/url_bypass") public void url_bypass(String url, HttpServletResponse res) throws IOException { logger.info("url: " + url); if (!SecurityUtil.isHttp(url)...
* @desc: Java url redirect */ @Controller @RequestMapping("/urlRedirect") public class URLRedirect { /** * @disc: 存在URL重定向漏洞 * @fix: 添加URL白名单 https://github.com/JoyChou93/trident/blob/master/src/main/java/CheckURL.java */ @GetMapping("/redirect") public String redir...
Java web common vulnerabilities and security code which is base on springboot and spring security - JoyChou93/java-sec-code