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

Commit 7309065

Browse files
committed
.
1 parent 5eb9776 commit 7309065

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

autosqli/tamper_engine.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44

55
def get_options_for_target(target):
66
""" return a customized set of sqlmap options for a target ( tampers ) """
7+
78
# FIXME: to debug :)
8-
tampers_string = ''
99
tampers = target.get_tampers_paths()
1010
options = sqlmap_options.BASE_SQLMAP_OPTIONS
1111

12+
# add all the tampers in tampers to a string: tampers_string
13+
# format: tamper1,tamper2,tamper3
14+
tampers_string = ''
1215
for tamper in tampers:
1316
tampers.remove(tamper)
1417
tampers_string.append("{}{}".format(

0 commit comments

Comments
 (0)