From 0a4c1f8aecdf7b52838065c850bfa35a8667660a Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 13 May 2010 09:34:08 +0000 Subject: [PATCH] unfix (conf.timeSec is an integer - my fault) --- lib/techniques/outband/stacked.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/techniques/outband/stacked.py b/lib/techniques/outband/stacked.py index 5fef03e5d..5f8afbd2f 100644 --- a/lib/techniques/outband/stacked.py +++ b/lib/techniques/outband/stacked.py @@ -45,7 +45,7 @@ def stackedTest(): query = getDelayQuery() start = time.time() payload, _ = inject.goStacked(query) - duration = time.time() - start + duration = int(time.time() - start) if duration >= conf.timeSec: infoMsg = "the web application supports stacked queries "