ffuf/pkg/runner/simple.go

161 lines
4.1 KiB
Go
Raw Normal View History

2018-11-08 09:26:32 +00:00
package runner
import (
"bytes"
"crypto/tls"
"fmt"
2018-11-08 09:26:32 +00:00
"io/ioutil"
"net"
2018-11-08 09:26:32 +00:00
"net/http"
"net/http/httputil"
"net/textproto"
"net/url"
2018-11-08 09:26:32 +00:00
"strconv"
"strings"
"time"
"unicode/utf8"
"github.com/ffuf/ffuf/pkg/ffuf"
)
//Download results < 5MB
const MAX_DOWNLOAD_SIZE = 5242880
type SimpleRunner struct {
config *ffuf.Config
client *http.Client
}
func NewSimpleRunner(conf *ffuf.Config, replay bool) ffuf.RunnerProvider {
2018-11-08 09:26:32 +00:00
var simplerunner SimpleRunner
proxyURL := http.ProxyFromEnvironment
customProxy := ""
if replay {
customProxy = conf.ReplayProxyURL
} else {
customProxy = conf.ProxyURL
}
if len(customProxy) > 0 {
pu, err := url.Parse(customProxy)
if err == nil {
proxyURL = http.ProxyURL(pu)
}
}
2018-11-08 09:26:32 +00:00
simplerunner.config = conf
simplerunner.client = &http.Client{
CheckRedirect: func(req *http.Request, via []*http.Request) error { return http.ErrUseLastResponse },
Timeout: time.Duration(time.Duration(conf.Timeout) * time.Second),
2018-11-08 09:26:32 +00:00
Transport: &http.Transport{
Proxy: proxyURL,
2018-11-14 20:38:13 +00:00
MaxIdleConns: 1000,
MaxIdleConnsPerHost: 500,
MaxConnsPerHost: 500,
DialContext: (&net.Dialer{
Timeout: time.Duration(time.Duration(conf.Timeout) * time.Second),
}).DialContext,
TLSHandshakeTimeout: time.Duration(time.Duration(conf.Timeout) * time.Second),
2018-11-08 09:26:32 +00:00
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
Renegotiation: tls.RenegotiateOnceAsClient,
2018-11-08 09:26:32 +00:00
},
}}
2019-04-03 09:54:32 +00:00
if conf.FollowRedirects {
simplerunner.client.CheckRedirect = nil
}
2018-11-08 09:26:32 +00:00
return &simplerunner
}
func (r *SimpleRunner) Prepare(input map[string][]byte) (ffuf.Request, error) {
2018-11-08 09:26:32 +00:00
req := ffuf.NewRequest(r.config)
req.Headers = r.config.Headers
req.Url = r.config.Url
req.Method = r.config.Method
req.Data = []byte(r.config.Data)
for keyword, inputitem := range input {
req.Method = strings.ReplaceAll(req.Method, keyword, string(inputitem))
headers := make(map[string]string, len(req.Headers))
for h, v := range req.Headers {
var CanonicalHeader string = textproto.CanonicalMIMEHeaderKey(strings.ReplaceAll(h, keyword, string(inputitem)))
headers[CanonicalHeader] = strings.ReplaceAll(v, keyword, string(inputitem))
}
req.Headers = headers
req.Url = strings.ReplaceAll(req.Url, keyword, string(inputitem))
req.Data = []byte(strings.ReplaceAll(string(req.Data), keyword, string(inputitem)))
2018-11-08 09:26:32 +00:00
}
2018-11-08 09:26:32 +00:00
req.Input = input
return req, nil
}
func (r *SimpleRunner) Execute(req *ffuf.Request) (ffuf.Response, error) {
var httpreq *http.Request
var err error
2020-02-09 11:29:12 +00:00
var rawreq []byte
2018-11-08 09:26:32 +00:00
data := bytes.NewReader(req.Data)
httpreq, err = http.NewRequestWithContext(r.config.Context, req.Method, req.Url, data)
2018-11-08 09:26:32 +00:00
if err != nil {
return ffuf.Response{}, err
}
// set default User-Agent header if not present
2018-11-08 09:26:32 +00:00
if _, ok := req.Headers["User-Agent"]; !ok {
req.Headers["User-Agent"] = fmt.Sprintf("%s v%s", "Fuzz Faster U Fool", ffuf.Version())
2018-11-08 09:26:32 +00:00
}
2018-11-09 13:21:23 +00:00
// Handle Go http.Request special cases
if _, ok := req.Headers["Host"]; ok {
httpreq.Host = req.Headers["Host"]
}
req.Host = httpreq.Host
2018-11-08 09:26:32 +00:00
httpreq = httpreq.WithContext(r.config.Context)
for k, v := range req.Headers {
httpreq.Header.Set(k, v)
}
2020-02-09 11:29:12 +00:00
if len(r.config.OutputDirectory) > 0 {
rawreq, _ = httputil.DumpRequestOut(httpreq, true)
}
2018-11-08 09:26:32 +00:00
httpresp, err := r.client.Do(httpreq)
if err != nil {
return ffuf.Response{}, err
}
2018-11-08 09:26:32 +00:00
resp := ffuf.NewResponse(httpresp, req)
defer httpresp.Body.Close()
// Check if we should download the resource or not
size, err := strconv.Atoi(httpresp.Header.Get("Content-Length"))
if err == nil {
resp.ContentLength = int64(size)
if (r.config.IgnoreBody) || (size > MAX_DOWNLOAD_SIZE) {
2018-11-08 09:26:32 +00:00
resp.Cancelled = true
return resp, nil
}
}
if len(r.config.OutputDirectory) > 0 {
rawresp, _ := httputil.DumpResponse(httpresp, true)
resp.Request.Raw = string(rawreq)
resp.Raw = string(rawresp)
}
2018-11-08 09:26:32 +00:00
if respbody, err := ioutil.ReadAll(httpresp.Body); err == nil {
resp.ContentLength = int64(utf8.RuneCountInString(string(respbody)))
resp.Data = respbody
}
2018-11-12 17:06:49 +00:00
wordsSize := len(strings.Split(string(resp.Data), " "))
linesSize := len(strings.Split(string(resp.Data), "\n"))
2018-11-12 17:06:49 +00:00
resp.ContentWords = int64(wordsSize)
resp.ContentLines = int64(linesSize)
2018-11-12 17:06:49 +00:00
2018-11-08 09:26:32 +00:00
return resp, nil
}