brokensound77 / OptionsBleed-POC-Scanner

OptionsBleed (CVE-2017-9798) PoC / Scanner

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TypeError: 'float' object cannot be interpreted as an integer

netsys-it opened this issue · comments

Stack trace:
Traceback (most recent call last): File "OptionsBleed-POC-Scanner/bleeder.py", line 127, in <module> main() File "OptionsBleed-POC-Scanner/bleeder.py", line 105, in main hemorrhage(args.count / method_count, 'option') File "OptionsBleed-POC-Scanner/bleeder.py", line 76, in hemorrhage for i in range(count): TypeError: 'float' object cannot be interpreted as an integer
For resolve problem:
Add type conversion on 76 line:
count = int(count)