2022-11-01 20:28:50 +05:30
|
|
|
package fuzz
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"regexp"
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols"
|
2023-06-26 19:25:51 +02:00
|
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/contextargs"
|
2022-11-01 20:28:50 +05:30
|
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/generators"
|
|
|
|
|
"github.com/projectdiscovery/retryablehttp-go"
|
2023-01-24 22:04:52 +05:30
|
|
|
urlutil "github.com/projectdiscovery/utils/url"
|
2022-11-01 20:28:50 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ExecuteRuleInput is the input for rule Execute function
|
|
|
|
|
type ExecuteRuleInput struct {
|
2023-06-26 19:25:51 +02:00
|
|
|
// Input is the context args input
|
|
|
|
|
Input *contextargs.Context
|
2022-11-01 20:28:50 +05:30
|
|
|
// Callback is the callback for generated rule requests
|
|
|
|
|
Callback func(GeneratedRequest) bool
|
|
|
|
|
// InteractURLs contains interact urls for execute call
|
|
|
|
|
InteractURLs []string
|
|
|
|
|
// Values contains dynamic values for the rule
|
|
|
|
|
Values map[string]interface{}
|
|
|
|
|
// BaseRequest is the base http request for fuzzing rule
|
|
|
|
|
BaseRequest *retryablehttp.Request
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GeneratedRequest is a single generated request for rule
|
|
|
|
|
type GeneratedRequest struct {
|
|
|
|
|
// Request is the http request for rule
|
|
|
|
|
Request *retryablehttp.Request
|
|
|
|
|
// InteractURLs is the list of interactsh urls
|
|
|
|
|
InteractURLs []string
|
|
|
|
|
// DynamicValues contains dynamic values map
|
|
|
|
|
DynamicValues map[string]interface{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Execute executes a fuzzing rule accepting a callback on which
|
|
|
|
|
// generated requests are returned.
|
|
|
|
|
//
|
|
|
|
|
// Input is not thread safe and should not be shared between concurrent
|
|
|
|
|
// goroutines.
|
|
|
|
|
func (rule *Rule) Execute(input *ExecuteRuleInput) error {
|
2023-06-26 19:25:51 +02:00
|
|
|
if !rule.isExecutable(input.Input) {
|
2022-11-01 20:28:50 +05:30
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
baseValues := input.Values
|
|
|
|
|
if rule.generator == nil {
|
|
|
|
|
evaluatedValues, interactURLs := rule.options.Variables.EvaluateWithInteractsh(baseValues, rule.options.Interactsh)
|
2023-05-25 18:32:35 +02:00
|
|
|
input.Values = generators.MergeMaps(evaluatedValues, baseValues, rule.options.Constants)
|
2022-11-01 20:28:50 +05:30
|
|
|
input.InteractURLs = interactURLs
|
|
|
|
|
err := rule.executeRuleValues(input)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
iterator := rule.generator.NewIterator()
|
|
|
|
|
for {
|
|
|
|
|
values, next := iterator.Value()
|
|
|
|
|
if !next {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
evaluatedValues, interactURLs := rule.options.Variables.EvaluateWithInteractsh(generators.MergeMaps(values, baseValues), rule.options.Interactsh)
|
|
|
|
|
input.InteractURLs = interactURLs
|
2023-05-25 18:32:35 +02:00
|
|
|
input.Values = generators.MergeMaps(values, evaluatedValues, baseValues, rule.options.Constants)
|
2022-11-01 20:28:50 +05:30
|
|
|
|
|
|
|
|
if err := rule.executeRuleValues(input); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// isExecutable returns true if the rule can be executed based on provided input
|
2023-06-26 19:25:51 +02:00
|
|
|
func (rule *Rule) isExecutable(input *contextargs.Context) bool {
|
|
|
|
|
parsed, err := urlutil.Parse(input.MetaInput.Input)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false
|
|
|
|
|
}
|
2022-11-01 20:28:50 +05:30
|
|
|
if len(parsed.Query()) > 0 && rule.partType == queryPartType {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// executeRuleValues executes a rule with a set of values
|
|
|
|
|
func (rule *Rule) executeRuleValues(input *ExecuteRuleInput) error {
|
|
|
|
|
for _, payload := range rule.Fuzz {
|
|
|
|
|
if err := rule.executePartRule(input, payload); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Compile compiles a fuzzing rule and initializes it for operation
|
2023-05-31 16:58:10 -04:00
|
|
|
func (rule *Rule) Compile(generator *generators.PayloadGenerator, options *protocols.ExecutorOptions) error {
|
2022-11-01 20:28:50 +05:30
|
|
|
// If a payload generator is specified from base request, use it
|
|
|
|
|
// for payload values.
|
|
|
|
|
if generator != nil {
|
|
|
|
|
rule.generator = generator
|
|
|
|
|
}
|
|
|
|
|
rule.options = options
|
|
|
|
|
|
|
|
|
|
// Resolve the default enums
|
|
|
|
|
if rule.Mode != "" {
|
|
|
|
|
if valueType, ok := stringToModeType[rule.Mode]; !ok {
|
|
|
|
|
return errors.Errorf("invalid mode value specified: %s", rule.Mode)
|
|
|
|
|
} else {
|
|
|
|
|
rule.modeType = valueType
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
rule.modeType = multipleModeType
|
|
|
|
|
}
|
|
|
|
|
if rule.Part != "" {
|
|
|
|
|
if valueType, ok := stringToPartType[rule.Part]; !ok {
|
2023-03-06 16:56:38 +05:30
|
|
|
return errors.Errorf("invalid part value specified: %s", rule.Part)
|
2022-11-01 20:28:50 +05:30
|
|
|
} else {
|
|
|
|
|
rule.partType = valueType
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
rule.partType = queryPartType
|
|
|
|
|
}
|
2023-03-06 16:56:38 +05:30
|
|
|
|
2022-11-01 20:28:50 +05:30
|
|
|
if rule.Type != "" {
|
|
|
|
|
if valueType, ok := stringToRuleType[rule.Type]; !ok {
|
2023-03-06 16:56:38 +05:30
|
|
|
return errors.Errorf("invalid type value specified: %s", rule.Type)
|
2022-11-01 20:28:50 +05:30
|
|
|
} else {
|
|
|
|
|
rule.ruleType = valueType
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
rule.ruleType = replaceRuleType
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Initialize other required regexes and maps
|
|
|
|
|
if len(rule.Keys) > 0 {
|
|
|
|
|
rule.keysMap = make(map[string]struct{})
|
|
|
|
|
}
|
|
|
|
|
for _, key := range rule.Keys {
|
|
|
|
|
rule.keysMap[strings.ToLower(key)] = struct{}{}
|
|
|
|
|
}
|
|
|
|
|
for _, value := range rule.ValuesRegex {
|
|
|
|
|
compiled, err := regexp.Compile(value)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return errors.Wrap(err, "could not compile value regex")
|
|
|
|
|
}
|
|
|
|
|
rule.valuesRegex = append(rule.valuesRegex, compiled)
|
|
|
|
|
}
|
|
|
|
|
for _, value := range rule.KeysRegex {
|
|
|
|
|
compiled, err := regexp.Compile(value)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return errors.Wrap(err, "could not compile key regex")
|
|
|
|
|
}
|
|
|
|
|
rule.keysRegex = append(rule.keysRegex, compiled)
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|