nuclei/v2/pkg/protocols/http/operators.go

156 lines
4.7 KiB
Go
Raw Normal View History

package http
import (
"net/http"
"net/http/httputil"
"strings"
"time"
2020-12-24 15:17:41 +00:00
"github.com/projectdiscovery/nuclei/v2/pkg/operators/extractors"
"github.com/projectdiscovery/nuclei/v2/pkg/operators/matchers"
"github.com/projectdiscovery/nuclei/v2/pkg/output"
"github.com/projectdiscovery/nuclei/v2/pkg/types"
)
2020-12-24 15:17:41 +00:00
// Match matches a generic data response again a given matcher
func (r *Request) Match(data map[string]interface{}, matcher *matchers.Matcher) bool {
item, ok := getMatchPart(matcher.Part, data)
if !ok {
return false
}
2020-12-24 15:17:41 +00:00
switch matcher.GetType() {
case matchers.StatusMatcher:
statusCode, ok := data["status_code"]
if !ok {
return false
}
return matcher.Result(matcher.MatchStatusCode(statusCode.(int)))
case matchers.SizeMatcher:
return matcher.Result(matcher.MatchSize(len(item)))
2020-12-24 15:17:41 +00:00
case matchers.WordsMatcher:
return matcher.Result(matcher.MatchWords(item))
2020-12-24 15:17:41 +00:00
case matchers.RegexMatcher:
return matcher.Result(matcher.MatchRegex(item))
2020-12-24 15:17:41 +00:00
case matchers.BinaryMatcher:
return matcher.Result(matcher.MatchBinary(item))
2020-12-24 15:17:41 +00:00
case matchers.DSLMatcher:
return matcher.Result(matcher.MatchDSL(data))
}
return false
}
// Extract performs extracting operation for a extractor on model and returns true or false.
func (r *Request) Extract(data map[string]interface{}, extractor *extractors.Extractor) map[string]struct{} {
item, ok := getMatchPart(extractor.Part, data)
if !ok {
return nil
2020-12-24 15:17:41 +00:00
}
switch extractor.GetType() {
case extractors.RegexExtractor:
return extractor.ExtractRegex(item)
case extractors.KValExtractor:
return extractor.ExtractKval(data)
}
return nil
}
// getMatchPart returns the match part honoring "all" matchers + others.
func getMatchPart(part string, data output.InternalEvent) (string, bool) {
if part == "header" {
part = "all_headers"
}
var itemStr string
if part == "all" {
builder := &strings.Builder{}
builder.WriteString(data["body"].(string))
builder.WriteString(data["all_headers"].(string))
itemStr = builder.String()
} else {
item, ok := data[part]
if !ok {
return "", false
}
itemStr = types.ToString(item)
}
return itemStr, true
2020-12-24 15:17:41 +00:00
}
// responseToDSLMap converts a HTTP response to a map for use in DSL matching
2020-12-29 06:12:46 +00:00
func (r *Request) responseToDSLMap(resp *http.Response, host, matched, rawReq, rawResp, body, headers string, duration time.Duration, extra map[string]interface{}) map[string]interface{} {
data := make(map[string]interface{}, len(extra)+8+len(resp.Header)+len(resp.Cookies()))
for k, v := range extra {
data[k] = v
}
2020-12-29 06:12:46 +00:00
data["host"] = host
data["matched"] = matched
if r.options.Options.JSONRequests {
data["request"] = rawReq
data["response"] = rawResp
}
data["content_length"] = resp.ContentLength
data["status_code"] = resp.StatusCode
2020-12-23 20:12:04 +00:00
data["body"] = body
2020-12-24 06:43:18 +00:00
for _, cookie := range resp.Cookies() {
2021-01-12 07:50:46 +00:00
data[strings.ToLower(cookie.Name)] = cookie.Value
2020-12-24 06:43:18 +00:00
}
for k, v := range resp.Header {
k = strings.ToLower(strings.TrimSpace(strings.ReplaceAll(k, "-", "_")))
data[k] = strings.Join(v, " ")
}
2020-12-24 06:43:18 +00:00
data["all_headers"] = headers
if r, err := httputil.DumpResponse(resp, true); err == nil {
2020-12-24 06:43:18 +00:00
rawString := string(r)
data["raw"] = rawString
}
data["duration"] = duration.Seconds()
return data
}
// makeResultEvent creates a result event from internal wrapped event
func (r *Request) makeResultEvent(wrapped *output.InternalWrappedEvent) []*output.ResultEvent {
2020-12-29 06:12:46 +00:00
results := make([]*output.ResultEvent, 0, len(wrapped.OperatorsResult.Matches)+1)
2021-01-11 15:41:35 +00:00
// If we have multiple matchers with names, write each of them separately.
if len(wrapped.OperatorsResult.Matches) > 0 {
for k := range wrapped.OperatorsResult.Matches {
data := r.makeResultEventItem(wrapped)
data.MatcherName = k
results = append(results, data)
}
} else if len(wrapped.OperatorsResult.Extracts) > 0 {
for k, v := range wrapped.OperatorsResult.Extracts {
data := r.makeResultEventItem(wrapped)
data.ExtractedResults = v
data.ExtractorName = k
results = append(results, data)
}
} else {
data := r.makeResultEventItem(wrapped)
results = append(results, data)
}
return results
}
func (r *Request) makeResultEventItem(wrapped *output.InternalWrappedEvent) *output.ResultEvent {
data := &output.ResultEvent{
TemplateID: r.options.TemplateID,
Info: r.options.TemplateInfo,
Type: "http",
Host: wrapped.InternalEvent["host"].(string),
Matched: wrapped.InternalEvent["matched"].(string),
Metadata: wrapped.OperatorsResult.PayloadValues,
ExtractedResults: wrapped.OperatorsResult.OutputExtracts,
}
if r.options.Options.JSONRequests {
data.Request = wrapped.InternalEvent["request"].(string)
data.Response = wrapped.InternalEvent["raw"].(string)
}
2021-01-11 15:41:35 +00:00
return data
}