nuclei/v2/pkg/operators/extractors/extractors.go

94 lines
2.9 KiB
Go
Raw Normal View History

2020-04-06 00:05:01 +05:30
package extractors
import "regexp"
// Extractor is used to extract part of response using a regex.
type Extractor struct {
2021-07-27 16:03:56 +05:30
// description: |
// Name of the extractor. Name should be lowercase and must not contain
// spaces or dashes (-).
// examples:
// - value: "\"cookie-extractor\""
2020-07-10 09:04:38 +02:00
Name string `yaml:"name,omitempty"`
2021-07-27 16:03:56 +05:30
// description: |
// Type is the type of the extractor.
// values:
// - "regex"
// - "kval"
Type string `yaml:"type"`
2020-07-15 00:47:01 +02:00
// extractorType is the internal type of the extractor
extractorType ExtractorType
2021-07-27 16:03:56 +05:30
// description: |
// Regex contains the regular expression patterns to exract from a part.
//
// Go regex engine does not supports lookaheads or lookbehinds, so as a result
// they are also not supported in nuclei.
// examples:
// - name: Braintree Access Token Regex
// value: >
// []string{"access_token\\$production\\$[0-9a-z]{16}\\$[0-9a-f]{32}"}
// - name: Wordpress Author Extraction regex
// value: >
// []string{"Author:(?:[A-Za-z0-9 -\\_=\"]+)?<span(?:[A-Za-z0-9 -\\_=\"]+)?>([A-Za-z0-9]+)<\\/span>"}
Regex []string `yaml:"regex"`
2021-07-27 16:03:56 +05:30
// description: |
// Group specifies a numbered group to extract from the regex.
// examples:
// - name: Example Regex Group
// - value: "1"
RegexGroup int `yaml:"group"`
2020-04-06 00:05:01 +05:30
// regexCompiled is the compiled variant
regexCompiled []*regexp.Regexp
2020-04-06 00:05:01 +05:30
2021-07-27 16:03:56 +05:30
// description: |
// kval contains the key-value pairs required in the response.
//
// Each protocol exposes a lot of different data in response. The kval
// extractor can be used to extract those key-value pairs. A list of
// supported parts is available in docs for request types.
// examples:
// - name: Extract Server Header From HTTP Response
// value: >
// []string{"Server"}
// - name: Extracting value of PHPSESSID Cookie
// value: >
// []string{"PHPSESSID"}
2020-07-16 10:32:00 +02:00
KVal []string `yaml:"kval,omitempty"`
2021-07-27 16:03:56 +05:30
// description: |
// Part is the part of the request response to extract data from.
2020-04-06 00:05:01 +05:30
//
2021-07-27 16:03:56 +05:30
// Each protocol exposes a lot of different parts which are well
// documented in docs for each request type.
// examples:
// - value: "\"body\""
// - value: "\"raw\""
2020-04-06 00:05:01 +05:30
Part string `yaml:"part,omitempty"`
2021-07-27 16:03:56 +05:30
// description: |
// Internal, when set to true will allow using the value extracted
// in the next request for some protocols (like HTTP).
2020-07-25 21:15:28 +02:00
Internal bool `yaml:"internal,omitempty"`
2020-04-06 00:05:01 +05:30
}
// ExtractorType is the type of the extractor specified
type ExtractorType = int
const (
// RegexExtractor extracts responses with regexes
RegexExtractor ExtractorType = iota + 1
2020-07-15 00:47:01 +02:00
// KValExtractor extracts responses with key:value
KValExtractor
)
// ExtractorTypes is an table for conversion of extractor type from string.
var ExtractorTypes = map[string]ExtractorType{
"regex": RegexExtractor,
2020-07-15 00:47:01 +02:00
"kval": KValExtractor,
}
2020-12-24 20:47:41 +05:30
// GetType returns the type of the matcher
func (e *Extractor) GetType() ExtractorType {
return e.extractorType
}