Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0a4c1f8

Browse files
committed
unfix (conf.timeSec is an integer - my fault)
1 parent 2323d85 commit 0a4c1f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/techniques/outband/stacked.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def stackedTest():
4545
query = getDelayQuery()
4646
start = time.time()
4747
payload, _ = inject.goStacked(query)
48-
duration = time.time() - start
48+
duration = int(time.time() - start)
4949

5050
if duration >= conf.timeSec:
5151
infoMsg = "the web application supports stacked queries "

0 commit comments

Comments
 (0)