2020-12-21 10:21:43 +00:00
|
|
|
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"
|
2020-12-28 20:00:07 +00:00
|
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/output"
|
2020-12-24 20:54:55 +00:00
|
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/types"
|
2020-12-21 10:21:43 +00:00
|
|
|
)
|
|
|
|
|
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 {
|
2021-01-01 14:06:21 +00:00
|
|
|
item, ok := getMatchPart(matcher.Part, data)
|
|
|
|
if !ok {
|
|
|
|
return false
|
2020-12-24 20:54:55 +00:00
|
|
|
}
|
|
|
|
|
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:
|
2021-01-01 14:06:21 +00:00
|
|
|
return matcher.Result(matcher.MatchSize(len(item)))
|
2020-12-24 15:17:41 +00:00
|
|
|
case matchers.WordsMatcher:
|
2021-01-01 14:06:21 +00:00
|
|
|
return matcher.Result(matcher.MatchWords(item))
|
2020-12-24 15:17:41 +00:00
|
|
|
case matchers.RegexMatcher:
|
2021-01-01 14:06:21 +00:00
|
|
|
return matcher.Result(matcher.MatchRegex(item))
|
2020-12-24 15:17:41 +00:00
|
|
|
case matchers.BinaryMatcher:
|
2021-01-01 14:06:21 +00:00
|
|
|
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{} {
|
2021-01-01 14:06:21 +00:00
|
|
|
item, ok := getMatchPart(extractor.Part, data)
|
|
|
|
if !ok {
|
|
|
|
return nil
|
2020-12-24 15:17:41 +00:00
|
|
|
}
|
2021-01-01 14:06:21 +00:00
|
|
|
switch extractor.GetType() {
|
|
|
|
case extractors.RegexExtractor:
|
|
|
|
return extractor.ExtractRegex(item)
|
|
|
|
case extractors.KValExtractor:
|
|
|
|
return extractor.ExtractKval(data)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2020-12-24 20:54:55 +00:00
|
|
|
|
2021-01-01 14:06:21 +00:00
|
|
|
// getMatchPart returns the match part honoring "all" matchers + others.
|
|
|
|
func getMatchPart(part string, data output.InternalEvent) (string, bool) {
|
|
|
|
if part == "header" {
|
|
|
|
part = "all_headers"
|
|
|
|
}
|
2021-01-01 11:37:24 +00:00
|
|
|
var itemStr string
|
2021-01-01 14:06:21 +00:00
|
|
|
|
|
|
|
if part == "all" {
|
2021-01-01 11:37:24 +00:00
|
|
|
builder := &strings.Builder{}
|
|
|
|
builder.WriteString(data["body"].(string))
|
|
|
|
builder.WriteString(data["all_headers"].(string))
|
|
|
|
itemStr = builder.String()
|
|
|
|
} else {
|
2021-01-01 14:06:21 +00:00
|
|
|
item, ok := data[part]
|
2021-01-01 11:37:24 +00:00
|
|
|
if !ok {
|
2021-01-01 14:06:21 +00:00
|
|
|
return "", false
|
2021-01-01 11:37:24 +00:00
|
|
|
}
|
|
|
|
itemStr = types.ToString(item)
|
2020-12-24 20:54:55 +00:00
|
|
|
}
|
2021-01-01 14:06:21 +00:00
|
|
|
return itemStr, true
|
2020-12-24 15:17:41 +00:00
|
|
|
}
|
|
|
|
|
2020-12-21 10:21:43 +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()))
|
2020-12-21 10:21:43 +00:00
|
|
|
for k, v := range extra {
|
|
|
|
data[k] = v
|
|
|
|
}
|
|
|
|
|
2020-12-29 06:12:46 +00:00
|
|
|
data["host"] = host
|
|
|
|
data["matched"] = matched
|
2020-12-28 20:00:07 +00:00
|
|
|
if r.options.Options.JSONRequests {
|
|
|
|
data["request"] = rawReq
|
|
|
|
data["response"] = rawResp
|
|
|
|
}
|
|
|
|
|
2020-12-21 10:21:43 +00:00
|
|
|
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
|
|
|
}
|
2020-12-21 10:21:43 +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
|
2020-12-21 10:21:43 +00:00
|
|
|
|
|
|
|
if r, err := httputil.DumpResponse(resp, true); err == nil {
|
2020-12-24 06:43:18 +00:00
|
|
|
rawString := string(r)
|
|
|
|
data["raw"] = rawString
|
2020-12-21 10:21:43 +00:00
|
|
|
}
|
|
|
|
data["duration"] = duration.Seconds()
|
|
|
|
return data
|
|
|
|
}
|
2020-12-28 20:00:07 +00:00
|
|
|
|
|
|
|
// 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)
|
2020-12-28 20:00:07 +00:00
|
|
|
|
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{
|
2020-12-28 20:00:07 +00:00
|
|
|
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
|
2020-12-28 20:00:07 +00:00
|
|
|
}
|