mirror of https://github.com/daffainfo/nuclei.git
Merge pull request #1839 from projectdiscovery/issue-1833-scan-bug
Improving body dump logic for HTTP requestsdev
commit
51bca65236
|
@ -117,15 +117,17 @@ func dump(req *generatedRequest, reqURL string) ([]byte, error) {
|
||||||
if req.request != nil {
|
if req.request != nil {
|
||||||
// Create a copy on the fly of the request body - ignore errors
|
// Create a copy on the fly of the request body - ignore errors
|
||||||
bodyBytes, _ := req.request.BodyBytes()
|
bodyBytes, _ := req.request.BodyBytes()
|
||||||
|
var dumpBody bool
|
||||||
if len(bodyBytes) > 0 {
|
if len(bodyBytes) > 0 {
|
||||||
req.request.Request.ContentLength = int64(len(bodyBytes))
|
req.request.Request.ContentLength = int64(len(bodyBytes))
|
||||||
req.request.Request.Body = ioutil.NopCloser(bytes.NewReader(bodyBytes))
|
req.request.Request.Body = ioutil.NopCloser(bytes.NewReader(bodyBytes))
|
||||||
} else {
|
} else {
|
||||||
req.request.Request.ContentLength = 0
|
req.request.Request.ContentLength = 0
|
||||||
req.request.Request.Body = nil
|
req.request.Request.Body = nil
|
||||||
|
delete(req.request.Request.Header, "Content-length")
|
||||||
}
|
}
|
||||||
|
|
||||||
dumpBytes, err := httputil.DumpRequestOut(req.request.Request, true)
|
dumpBytes, err := httputil.DumpRequestOut(req.request.Request, dumpBody)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue