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

Skip to content

Commit 4beef09

Browse files
committed
Minor language fix (we support SOCKS proxy settings too)
1 parent 1088011 commit 4beef09

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

lib/parse/cmdline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ def cmdLineParser():
121121
"key_file,cert_file)")
122122

123123
request.add_option("--proxy", dest="proxy",
124-
help="Use a HTTP proxy to connect to the target URL")
124+
help="Use a proxy to connect to the target URL")
125125

126126
request.add_option("--proxy-cred", dest="pCred",
127-
help="HTTP proxy authentication credentials "
127+
help="Proxy authentication credentials "
128128
"(name:password)")
129129

130130
request.add_option("--ignore-proxy", dest="ignoreProxy", action="store_true",
131-
help="Ignore system default HTTP proxy")
131+
help="Ignore system default proxy settings")
132132

133133
request.add_option("--tor", dest="tor",
134134
action="store_true",

sqlmap.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,16 @@ aCred =
8888
# Syntax: key_file,cert_file
8989
aCert =
9090

91-
# Use a HTTP proxy to connect to the target URL.
91+
# Use a proxy to connect to the target URL.
9292
# Syntax: http://address:port
9393
proxy =
9494

95-
# HTTP proxy authentication credentials. Useful only if the proxy requires
96-
# HTTP Basic or Digest authentication and you have such data.
95+
# Proxy authentication credentials. Useful only if the proxy requires
96+
# Basic or Digest authentication and you have such data.
9797
# Syntax: username:password
9898
pCred =
9999

100-
# Ignore system default HTTP proxy.
100+
# Ignore system default proxy settings.
101101
# Valid: True or False
102102
ignoreProxy = False
103103

0 commit comments

Comments
 (0)