From 0a363d3f2b555ebbeb6348f0ae03077ade0b13a7 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sun, 4 Apr 2010 14:38:48 +0000 Subject: [PATCH] fix for not properly clearing cookies when in multiple targets scanning mode spotted by Kasper Fons --- lib/core/target.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/core/target.py b/lib/core/target.py index dd49389b1..724deed96 100644 --- a/lib/core/target.py +++ b/lib/core/target.py @@ -235,6 +235,8 @@ def initTargetEnv(): kb.unionComment = "" kb.unionCount = None kb.unionPosition = None + if conf.cj: + conf.cj.clear() def setupTargetEnv(): __createTargetDirs()