Java是否容易受到整数溢出类型的异常影响?

时间:2019-07-16 12:18:36

标签: 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;
}

0 个答案:

没有答案