mirror of https://github.com/daffainfo/nuclei.git
18 lines
446 B
Go
18 lines
446 B
Go
package requests
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"net/http/httputil"
|
|
"strings"
|
|
|
|
"github.com/projectdiscovery/rawhttp"
|
|
)
|
|
|
|
func Dump(req *HTTPRequest, reqURL string) ([]byte, error) {
|
|
if req.Request != nil {
|
|
return httputil.DumpRequest(req.Request.Request, true)
|
|
}
|
|
|
|
return rawhttp.DumpRequestRaw(req.RawRequest.Method, reqURL, req.RawRequest.Path, ExpandMapValues(req.RawRequest.Headers), ioutil.NopCloser(strings.NewReader(req.RawRequest.Data)))
|
|
}
|