From 2fdac836073be0d0302298145aa48cf0ac74e344 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 13 May 2010 08:27:51 +0000 Subject: [PATCH] minor fix --- 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 5f8afbd2f..5fef03e5d 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 = int(time.time() - start) + duration = time.time() - start if duration >= conf.timeSec: infoMsg = "the web application supports stacked queries "