Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 02fb505

Browse files
committed
Merge pull request #1186 from cvwillegen/master
Fix some spelling errors in help texts (through -> thorough)
2 parents b2fca35 + 80fb2e2 commit 02fb505

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

lib/parse/cmdline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ def cmdLineParser():
694694

695695
miscellaneous.add_option("--identify-waf", dest="identifyWaf",
696696
action="store_true",
697-
help="Make a through testing for a WAF/IPS/IDS protection")
697+
help="Make a thorough testing for a WAF/IPS/IDS protection")
698698

699699
miscellaneous.add_option("--mobile", dest="mobile",
700700
action="store_true",
@@ -710,7 +710,7 @@ def cmdLineParser():
710710

711711
miscellaneous.add_option("--smart", dest="smart",
712712
action="store_true",
713-
help="Conduct through tests only if positive heuristic(s)")
713+
help="Conduct thorough tests only if positive heuristic(s)")
714714

715715
miscellaneous.add_option("--sqlmap-shell", dest="sqlmapShell", action="store_true",
716716
help="Prompt for an interactive sqlmap shell")

lib/request/connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ def queryPage(value=None, place=None, content=False, getRatioValue=False, silent
701701
payload = payload.replace("'", REPLACEMENT_MARKER).replace('"', "'").replace(REPLACEMENT_MARKER, '"')
702702
value = agent.replacePayload(value, payload)
703703
else:
704-
# GET, POST, URI and Cookie payload needs to be throughly URL encoded
704+
# GET, POST, URI and Cookie payload needs to be thoroughly URL encoded
705705
if place in (PLACE.GET, PLACE.URI, PLACE.COOKIE) and not conf.skipUrlEncode or place in (PLACE.POST, PLACE.CUSTOM_POST) and kb.postUrlEncode:
706706
payload = urlencode(payload, '%', False, place != PLACE.URI) # spaceplus is handled down below
707707
value = agent.replacePayload(value, payload)

sqlmap.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ disableColoring = False
735735
# Default: 1
736736
googlePage = 1
737737

738-
# Make a through testing for a WAF/IPS/IDS protection.
738+
# Make a thorough testing for a WAF/IPS/IDS protection.
739739
# Valid: True or False
740740
identifyWaf = False
741741

@@ -747,7 +747,7 @@ mobile = False
747747
# Valid: True or False
748748
pageRank = False
749749

750-
# Conduct through tests only if positive heuristic(s).
750+
# Conduct thorough tests only if positive heuristic(s).
751751
# Valid: True or False
752752
smart = False
753753

0 commit comments

Comments
 (0)