标签: java security security-testing
我正在尝试从下面的简单Java代码中发现Integer Overflow可以利用的漏洞?
String number = //userinput- could be from UI.. int num = Integer.parseInt(number); if(num > 0){ total = num * 100; }