You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add the `--chunk` option to send requests in chunks
* solve the httplib&urllib2 content-legnth
* remove info
* Solve the error caused by the mix of get mode and chunk
* add CHUNKED_KEYWORDS `union`
Copy file name to clipboardExpand all lines: lib/parse/cmdline.py
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -220,6 +220,8 @@ def cmdLineParser(argv=None):
220
220
221
221
request.add_option("--eval", dest="evalCode",
222
222
help="Evaluate provided Python code before the request (e.g. \"import hashlib;id2=hashlib.md5(id).hexdigest()\")")
223
+
224
+
request.add_option("--chunk", dest="chunk", action="store_true", help="all requests will be added headers with 'Transfer-Encoding: Chunked' and sent by transcoding")
223
225
224
226
# Optimization options
225
227
optimization=OptionGroup(parser, "Optimization", "These options can be used to optimize the performance of sqlmap")
0 commit comments