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

Commit 35031e7

Browse files
committed
correct some errors and add a comment
1 parent f7998ce commit 35031e7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

autosqli/sqlmap_stage.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33

44
def sqlmap_stage(args, targets):
5+
""" do a sqlmap scan on all the targets """
56
pass

autosqli/stages.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def launchWafStage(args):
2424
wafdetect_stage(args)
2525

2626

27-
def launchSlmapStage(args):
27+
def launchSqlmapStage(args):
2828
log.debug("Launching the sqlmap stage")
2929
sqlmap_stage(args)
3030

@@ -58,7 +58,7 @@ def nextStage(args):
5858
launchWafStage(args)
5959
return_value = True
6060
elif current_stage == SQLMAP_STAGE:
61-
launchSlmapStage(args)
61+
launchSqlmapStage(args)
6262
return_value = True
6363
elif current_stage == REPORT_STAGE:
6464
launchReportStage(args)

0 commit comments

Comments
 (0)