mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-29 22:23:02 +00:00
* feat: move fuzz package to root directory * feat: added support for input providers like openapi,postman,etc * feat: integration of new fuzzing logic in engine * bugfix: use and instead of or * fixed lint errors * go mod tidy * add new reqresp type + bump utils * custom http request parser * use new struct type RequestResponse * introduce unified input/target provider * abstract input formats via new inputprovider * completed input provider refactor * remove duplicated code * add sdk method to load targets * rename component url->path * add new yaml format + remove duplicated code * use gopkg.in/yaml.v3 for parsing * update .gitignore * refactor/move + docs fuzzing in http protocol * fuzz: header + query integration test using fuzzplayground * fix integration test runner in windows * feat add support for filter in http fuzz * rewrite header/query integration test with filter * add replace regex rule * support kv fuzzing + misc updates * add path fuzzing example + misc improvements * fix matchedURL + skip httpx on multi formats * cookie fuzz integration test * add json body + params body tests * feat add multipart/form-data fuzzing support * add all fuzz body integration test * misc bug fixes + minor refactor * add multipart form + body form unit tests * only run fuzzing templates if -fuzz flag is given * refactor/move fuzz playground server to pkg * fix integration test + refactor * add auth types and strategies * add file auth provider * start implementing auth logic in http * add logic in http protocol * static auth implemented for http * default :80,:443 normalization * feat: dynamic auth init * feat: dynamic auth using templates * validate targets count in openapi+swagger * inputformats: add support to accept variables * fix workflow integration test * update lazy cred fetch logic * fix unit test * drop postman support * domain related normalization * update secrets.yaml file format + misc updates * add auth prefetch option * remove old secret files * add fuzzing+auth related sdk options * fix/support multiple mode in kv header fuzzing * rename 'headers' -> 'header' in fuzzing rules * fix deadlock due to merge conflict resolution * misc update * add bool type in parsed value * add openapi validation+override+ new flags * misc updates * remove optional path parameters when unavailable * fix swagger.yaml file * misc updates * update print msg * multiple openapi validation enchancements + appMode * add optional params in required_openapi_vars.yaml file * improve warning/verbose msgs in format * fix skip-format-validation not working * use 'params/parameter' instead of 'variable' in openapi * add retry support for falky tests * fix nuclei loading ignored templates (#4849) * fix tag include logic * fix unit test * remove quoting in extractor output * remove quote in debug code command * feat: issue tracker URLs in JSON + misc fixes (#4855) * feat: issue tracker URLs in JSON + misc fixes * misc changes * feat: status update support for issues * feat: report metadata generation hook support * feat: added CLI summary of tickets created * misc changes * introduce `disable-unsigned-templates` flag (#4820) * introduce `disable-unsigned-templates` flag * minor * skip instead of exit * remove duplicate imports * use stats package + misc enhancements * force display warning + adjust skipped stats in unsigned count * include unsigned skipped templates without -dut flag --------- Co-authored-by: Tarun Koyalwar <tarun@projectdiscovery.io> * Purge cache on global callback set (#4840) * purge cache on global callback set * lint * purging cache * purge cache in runner after loading templates * include internal cache from parsers + add global cache register/purge via config * remove disable cache purge option --------- Co-authored-by: Tarun Koyalwar <tarun@projectdiscovery.io> * misc update * add application/octet-stream support * openapi: support path specific params * misc option + readme update --------- Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.io> Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com> Co-authored-by: Tarun Koyalwar <tarun@projectdiscovery.io> Co-authored-by: Tarun Koyalwar <45962551+tarunKoyalwar@users.noreply.github.com> Co-authored-by: Dogan Can Bakir <65292895+dogancanbakir@users.noreply.github.com> Co-authored-by: Mzack9999 <mzack9999@protonmail.com>
211 lines
7.0 KiB
Go
211 lines
7.0 KiB
Go
package fuzz
|
|
|
|
import (
|
|
"io"
|
|
"strings"
|
|
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/fuzz/component"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/common/expressions"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/common/generators"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/types"
|
|
"github.com/projectdiscovery/retryablehttp-go"
|
|
)
|
|
|
|
// executePartRule executes part rules based on type
|
|
func (rule *Rule) executePartRule(input *ExecuteRuleInput, payload ValueOrKeyValue, component component.Component) error {
|
|
return rule.executePartComponent(input, payload, component)
|
|
}
|
|
|
|
// checkRuleApplicableOnComponent checks if a rule is applicable on given component
|
|
func (rule *Rule) checkRuleApplicableOnComponent(component component.Component) bool {
|
|
if rule.Part != component.Name() {
|
|
return false
|
|
}
|
|
foundAny := false
|
|
_ = component.Iterate(func(key string, value interface{}) error {
|
|
if rule.matchKeyOrValue(key, types.ToString(value)) {
|
|
foundAny = true
|
|
return io.EOF
|
|
}
|
|
return nil
|
|
})
|
|
return foundAny
|
|
}
|
|
|
|
// executePartComponent executes this rule on a given component and payload
|
|
func (rule *Rule) executePartComponent(input *ExecuteRuleInput, payload ValueOrKeyValue, ruleComponent component.Component) error {
|
|
if payload.IsKV() {
|
|
// for kv fuzzing
|
|
return rule.executePartComponentOnKV(input, payload, ruleComponent)
|
|
} else {
|
|
// for value only fuzzing
|
|
return rule.executePartComponentOnValues(input, payload.Value, ruleComponent)
|
|
}
|
|
}
|
|
|
|
// executePartComponentOnValues executes this rule on a given component and payload
|
|
// this supports both single and multiple [ruleType] modes
|
|
// i.e if component has multiple values, they can be replaced once or all depending on mode
|
|
func (rule *Rule) executePartComponentOnValues(input *ExecuteRuleInput, payloadStr string, ruleComponent component.Component) error {
|
|
finalErr := ruleComponent.Iterate(func(key string, value interface{}) error {
|
|
valueStr := types.ToString(value)
|
|
if !rule.matchKeyOrValue(key, valueStr) {
|
|
// ignore non-matching keys
|
|
return nil
|
|
}
|
|
|
|
var evaluated string
|
|
evaluated, input.InteractURLs = rule.executeEvaluate(input, key, valueStr, payloadStr, input.InteractURLs)
|
|
if err := ruleComponent.SetValue(key, evaluated); err != nil {
|
|
// gologger.Warning().Msgf("could not set value due to format restriction original(%s, %s[%T]) , new(%s,%s[%T])", key, valueStr, value, key, evaluated, evaluated)
|
|
return nil
|
|
}
|
|
|
|
if rule.modeType == singleModeType {
|
|
req, err := ruleComponent.Rebuild()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if qerr := rule.execWithInput(input, req, input.InteractURLs, ruleComponent); qerr != nil {
|
|
return qerr
|
|
}
|
|
// fmt.Printf("executed with value: %s\n", evaluated)
|
|
err = ruleComponent.SetValue(key, valueStr) // change back to previous value for temp
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
if finalErr != nil {
|
|
return finalErr
|
|
}
|
|
|
|
// We do not support analyzers with
|
|
// multiple payload mode.
|
|
if rule.modeType == multipleModeType {
|
|
req, err := ruleComponent.Rebuild()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if qerr := rule.execWithInput(input, req, input.InteractURLs, ruleComponent); qerr != nil {
|
|
err = qerr
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// executePartComponentOnKV executes this rule on a given component and payload
|
|
// currently only supports single mode
|
|
func (rule *Rule) executePartComponentOnKV(input *ExecuteRuleInput, payload ValueOrKeyValue, ruleComponent component.Component) error {
|
|
var origKey string
|
|
var origValue interface{}
|
|
// when we have a key-value pair, iterate over only 1 value of the component
|
|
// multiple values (aka multiple mode) not supported for this yet
|
|
_ = ruleComponent.Iterate(func(key string, value interface{}) error {
|
|
if key == payload.Key {
|
|
origKey = key
|
|
origValue = value
|
|
}
|
|
return nil
|
|
})
|
|
// iterate over given kv instead of component ones
|
|
return func(key, value string) error {
|
|
var evaluated string
|
|
evaluated, input.InteractURLs = rule.executeEvaluate(input, key, "", value, input.InteractURLs)
|
|
if err := ruleComponent.SetValue(key, evaluated); err != nil {
|
|
return err
|
|
}
|
|
if rule.modeType == singleModeType {
|
|
req, err := ruleComponent.Rebuild()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if qerr := rule.execWithInput(input, req, input.InteractURLs, ruleComponent); qerr != nil {
|
|
return err
|
|
}
|
|
|
|
// after building change back to original value to avoid repeating it in furthur requests
|
|
if origKey != "" {
|
|
err = ruleComponent.SetValue(origKey, types.ToString(origValue)) // change back to previous value for temp
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
_ = ruleComponent.Delete(key) // change back to previous value for temp
|
|
}
|
|
}
|
|
return nil
|
|
}(payload.Key, payload.Value)
|
|
}
|
|
|
|
// execWithInput executes a rule with input via callback
|
|
func (rule *Rule) execWithInput(input *ExecuteRuleInput, httpReq *retryablehttp.Request, interactURLs []string, component component.Component) error {
|
|
request := GeneratedRequest{
|
|
Request: httpReq,
|
|
InteractURLs: interactURLs,
|
|
DynamicValues: input.Values,
|
|
Component: component,
|
|
}
|
|
if !input.Callback(request) {
|
|
return types.ErrNoMoreRequests
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// executeEvaluate executes evaluation of payload on a key and value and
|
|
// returns completed values to be replaced and processed
|
|
// for fuzzing.
|
|
func (rule *Rule) executeEvaluate(input *ExecuteRuleInput, _, value, payload string, interactshURLs []string) (string, []string) {
|
|
// TODO: Handle errors
|
|
values := generators.MergeMaps(input.Values, map[string]interface{}{
|
|
"value": value,
|
|
}, rule.options.Options.Vars.AsMap(), rule.options.Variables.GetAll())
|
|
firstpass, _ := expressions.Evaluate(payload, values)
|
|
interactData, interactshURLs := rule.options.Interactsh.Replace(firstpass, interactshURLs)
|
|
evaluated, _ := expressions.Evaluate(interactData, values)
|
|
replaced := rule.executeRuleTypes(input, value, evaluated)
|
|
return replaced, interactshURLs
|
|
}
|
|
|
|
// executeRuleTypes executes replacement for a key and value
|
|
// ex: prefix, postfix, infix, replace , replace-regex
|
|
func (rule *Rule) executeRuleTypes(_ *ExecuteRuleInput, value, replacement string) string {
|
|
var builder strings.Builder
|
|
if rule.ruleType == prefixRuleType || rule.ruleType == postfixRuleType {
|
|
builder.Grow(len(value) + len(replacement))
|
|
}
|
|
var returnValue string
|
|
|
|
switch rule.ruleType {
|
|
case prefixRuleType:
|
|
builder.WriteString(replacement)
|
|
builder.WriteString(value)
|
|
returnValue = builder.String()
|
|
case postfixRuleType:
|
|
builder.WriteString(value)
|
|
builder.WriteString(replacement)
|
|
returnValue = builder.String()
|
|
case infixRuleType:
|
|
if len(value) <= 1 {
|
|
builder.WriteString(value)
|
|
builder.WriteString(replacement)
|
|
returnValue = builder.String()
|
|
} else {
|
|
middleIndex := len(value) / 2
|
|
builder.WriteString(value[:middleIndex])
|
|
builder.WriteString(replacement)
|
|
builder.WriteString(value[middleIndex:])
|
|
returnValue = builder.String()
|
|
}
|
|
case replaceRuleType:
|
|
returnValue = replacement
|
|
case replaceRegexRuleType:
|
|
returnValue = rule.replaceRegex.ReplaceAllString(value, replacement)
|
|
}
|
|
return returnValue
|
|
}
|