You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, it's valid to obtain a c0omparison time starting from ten, in this case, in the line 15: if int(r.elapsed.total_seconds()) > 10:
its comparison operator should be updated to: if int(r.elapsed.total_seconds()) >= 10:
The first time I obtained this output:
(+) Checking if tracking cookie is vulnerable to time-based blind SQLi....
(-) Not vulnerable to blind based SQL injection
Updating the operator, I got this one:
(+) Checking if tracking cookie is vulnerable to time-based blind SQLi....
(+) Vulnerable to blind-based SQL injection
The text was updated successfully, but these errors were encountered:
Hi, it's valid to obtain a c0omparison time starting from ten, in this case, in the line 15:
if int(r.elapsed.total_seconds()) > 10:
its comparison operator should be updated to:
if int(r.elapsed.total_seconds()) >= 10:
The first time I obtained this output:
(+) Checking if tracking cookie is vulnerable to time-based blind SQLi....
(-) Not vulnerable to blind based SQL injection
Updating the operator, I got this one:
(+) Checking if tracking cookie is vulnerable to time-based blind SQLi....
(+) Vulnerable to blind-based SQL injection
The text was updated successfully, but these errors were encountered: