Skip to content
This repository was archived by the owner on Apr 17, 2021. It is now read-only.

Commit 1c31901

Browse files
committed
sqlmap stage structure changes
1 parent d22f091 commit 1c31901

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

autosqli/sqlmap_stage.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ def sqlmap_stage(args):
77
""" do a sqlmap scan on all the targets """
88

99
while True:
10-
with save.get_unsqlmapped_target() as target:
11-
# there is no not sqlmapped target remaining
12-
if target is None:
13-
break
10+
target = save.get_unsqlmapped_target()
11+
12+
if target is None:
13+
break
1414

1515

0 commit comments

Comments
 (0)