mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 22:45:28 +00:00
* setup claude * migrate to using errkit * fix unused imports + lint errors * update settings.json * fix url encoding issue * fix lint error * fix the path fuzzing component * fix lint error
319 lines
11 KiB
Go
319 lines
11 KiB
Go
package flow
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"strconv"
|
|
"strings"
|
|
"sync/atomic"
|
|
|
|
"github.com/Mzack9999/goja"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/js/compiler"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/common/generators"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/scan"
|
|
templateTypes "github.com/projectdiscovery/nuclei/v3/pkg/templates/types"
|
|
|
|
"github.com/kitabisa/go-ci"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/types"
|
|
"github.com/projectdiscovery/utils/errkit"
|
|
fileutil "github.com/projectdiscovery/utils/file"
|
|
mapsutil "github.com/projectdiscovery/utils/maps"
|
|
"go.uber.org/multierr"
|
|
)
|
|
|
|
var (
|
|
// ErrInvalidRequestID is a request id error
|
|
ErrInvalidRequestID = errkit.New("invalid request id provided")
|
|
)
|
|
|
|
// ProtoOptions are options that can be passed to flow protocol callback
|
|
// ex: dns(protoOptions) <- protoOptions are optional and can be anything
|
|
type ProtoOptions struct {
|
|
protoName string
|
|
reqIDS []string
|
|
}
|
|
|
|
// FlowExecutor is a flow executor for executing a flow
|
|
type FlowExecutor struct {
|
|
ctx *scan.ScanContext // scan context (includes target etc)
|
|
options *protocols.ExecutorOptions
|
|
|
|
// javascript runtime reference and compiled program
|
|
program *goja.Program // compiled js program
|
|
|
|
// protocol requests and their callback functions
|
|
allProtocols map[string][]protocols.Request
|
|
protoFunctions map[string]func(call goja.FunctionCall, runtime *goja.Runtime) goja.Value // reqFunctions contains functions that allow executing requests/protocols from js
|
|
|
|
// logic related variables
|
|
results *atomic.Bool
|
|
allErrs mapsutil.SyncLockMap[string, error]
|
|
// these are keys whose values are meant to be flatten before executing
|
|
// a request ex: if dynamic extractor returns ["value"] it will be converted to "value"
|
|
flattenKeys []string
|
|
|
|
executed *mapsutil.SyncLockMap[string, struct{}]
|
|
}
|
|
|
|
// NewFlowExecutor creates a new flow executor from a list of requests
|
|
// Note: Unlike other engine for every target x template flow needs to be compiled and executed everytime
|
|
// unlike other engines where we compile once and execute multiple times
|
|
func NewFlowExecutor(requests []protocols.Request, ctx *scan.ScanContext, options *protocols.ExecutorOptions, results *atomic.Bool, program *goja.Program) (*FlowExecutor, error) {
|
|
allprotos := make(map[string][]protocols.Request)
|
|
for _, req := range requests {
|
|
switch req.Type() {
|
|
case templateTypes.DNSProtocol:
|
|
allprotos[templateTypes.DNSProtocol.String()] = append(allprotos[templateTypes.DNSProtocol.String()], req)
|
|
case templateTypes.HTTPProtocol:
|
|
allprotos[templateTypes.HTTPProtocol.String()] = append(allprotos[templateTypes.HTTPProtocol.String()], req)
|
|
case templateTypes.NetworkProtocol:
|
|
allprotos[templateTypes.NetworkProtocol.String()] = append(allprotos[templateTypes.NetworkProtocol.String()], req)
|
|
case templateTypes.FileProtocol:
|
|
allprotos[templateTypes.FileProtocol.String()] = append(allprotos[templateTypes.FileProtocol.String()], req)
|
|
case templateTypes.HeadlessProtocol:
|
|
allprotos[templateTypes.HeadlessProtocol.String()] = append(allprotos[templateTypes.HeadlessProtocol.String()], req)
|
|
case templateTypes.SSLProtocol:
|
|
allprotos[templateTypes.SSLProtocol.String()] = append(allprotos[templateTypes.SSLProtocol.String()], req)
|
|
case templateTypes.WebsocketProtocol:
|
|
allprotos[templateTypes.WebsocketProtocol.String()] = append(allprotos[templateTypes.WebsocketProtocol.String()], req)
|
|
case templateTypes.WHOISProtocol:
|
|
allprotos[templateTypes.WHOISProtocol.String()] = append(allprotos[templateTypes.WHOISProtocol.String()], req)
|
|
case templateTypes.CodeProtocol:
|
|
allprotos[templateTypes.CodeProtocol.String()] = append(allprotos[templateTypes.CodeProtocol.String()], req)
|
|
case templateTypes.JavascriptProtocol:
|
|
allprotos[templateTypes.JavascriptProtocol.String()] = append(allprotos[templateTypes.JavascriptProtocol.String()], req)
|
|
case templateTypes.OfflineHTTPProtocol:
|
|
// offlinehttp is run in passive mode but templates are same so instead of using offlinehttp() we use http() in flow
|
|
allprotos[templateTypes.HTTPProtocol.String()] = append(allprotos[templateTypes.OfflineHTTPProtocol.String()], req)
|
|
default:
|
|
return nil, fmt.Errorf("invalid request type %s", req.Type().String())
|
|
}
|
|
}
|
|
f := &FlowExecutor{
|
|
allProtocols: allprotos,
|
|
options: options,
|
|
allErrs: mapsutil.SyncLockMap[string, error]{
|
|
ReadOnly: atomic.Bool{},
|
|
Map: make(map[string]error),
|
|
},
|
|
protoFunctions: map[string]func(call goja.FunctionCall, runtime *goja.Runtime) goja.Value{},
|
|
results: results,
|
|
ctx: ctx,
|
|
program: program,
|
|
executed: mapsutil.NewSyncLockMap[string, struct{}](),
|
|
}
|
|
return f, nil
|
|
}
|
|
|
|
// Compile compiles js program and registers all functions
|
|
func (f *FlowExecutor) Compile() error {
|
|
if f.results == nil {
|
|
f.results = new(atomic.Bool)
|
|
}
|
|
// load all variables and evaluate with existing data
|
|
variableMap := f.options.Variables.Evaluate(f.options.GetTemplateCtx(f.ctx.Input.MetaInput).GetAll())
|
|
// cli options
|
|
optionVars := generators.BuildPayloadFromOptions(f.options.Options)
|
|
// constants
|
|
constants := f.options.Constants
|
|
allVars := generators.MergeMaps(variableMap, constants, optionVars)
|
|
// we support loading variables from files in variables , cli options and constants
|
|
// try to load if files exist
|
|
for k, v := range allVars {
|
|
if str, ok := v.(string); ok && len(str) < 150 && fileutil.FileExists(str) {
|
|
if value, err := f.ReadDataFromFile(str); err == nil {
|
|
allVars[k] = value
|
|
} else {
|
|
f.ctx.LogWarning("could not load file '%s' for variable '%s': %s", str, k, err)
|
|
}
|
|
}
|
|
}
|
|
f.options.GetTemplateCtx(f.ctx.Input.MetaInput).Merge(allVars) // merge all variables into template context
|
|
|
|
// ---- define callback functions/objects----
|
|
f.protoFunctions = map[string]func(call goja.FunctionCall, runtime *goja.Runtime) goja.Value{}
|
|
// iterate over all protocols and generate callback functions for each protocol
|
|
for p, requests := range f.allProtocols {
|
|
// for each protocol build a requestMap with reqID and protocol request
|
|
reqMap := mapsutil.Map[string, protocols.Request]{}
|
|
counter := 0
|
|
proto := strings.ToLower(p) // donot use loop variables in callback functions directly
|
|
for index := range requests {
|
|
counter++ // start index from 1
|
|
request := f.allProtocols[proto][index]
|
|
if request.GetID() != "" {
|
|
// if id is present use it
|
|
reqMap[request.GetID()] = request
|
|
}
|
|
// fallback to using index as id
|
|
// always allow index as id as a fallback
|
|
reqMap[strconv.Itoa(counter)] = request
|
|
}
|
|
// ---define hook that allows protocol/request execution from js-----
|
|
// --- this is the actual callback that is executed when function is invoked in js----
|
|
f.protoFunctions[proto] = func(call goja.FunctionCall, runtime *goja.Runtime) goja.Value {
|
|
opts := &ProtoOptions{
|
|
protoName: proto,
|
|
}
|
|
for _, v := range call.Arguments {
|
|
switch value := v.Export().(type) {
|
|
default:
|
|
opts.reqIDS = append(opts.reqIDS, types.ToString(value))
|
|
}
|
|
}
|
|
// before executing any protocol function flatten tracked values
|
|
if len(f.flattenKeys) > 0 {
|
|
ctx := f.options.GetTemplateCtx(f.ctx.Input.MetaInput)
|
|
for _, key := range f.flattenKeys {
|
|
if value, ok := ctx.Get(key); ok {
|
|
ctx.Set(key, flatten(value))
|
|
}
|
|
}
|
|
}
|
|
return runtime.ToValue(f.requestExecutor(runtime, reqMap, opts))
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ExecuteWithResults executes the flow and returns results
|
|
func (f *FlowExecutor) ExecuteWithResults(ctx *scan.ScanContext) error {
|
|
select {
|
|
case <-ctx.Context().Done():
|
|
return ctx.Context().Err()
|
|
default:
|
|
}
|
|
|
|
f.ctx.Input = ctx.Input
|
|
// -----Load all types of variables-----
|
|
// add all input args to template context
|
|
if f.ctx.Input != nil && f.ctx.Input.HasArgs() {
|
|
f.ctx.Input.ForEach(func(key string, value interface{}) {
|
|
f.options.GetTemplateCtx(f.ctx.Input.MetaInput).Set(key, value)
|
|
})
|
|
}
|
|
|
|
// get a new runtime from pool
|
|
runtime := GetJSRuntime(f.options.Options)
|
|
defer func() {
|
|
// whether to reuse or not depends on the whether script modifies
|
|
// global scope or not,
|
|
PutJSRuntime(runtime, compiler.CanRunAsIIFE(f.options.Flow))
|
|
}()
|
|
defer func() {
|
|
// remove set builtin
|
|
_ = runtime.GlobalObject().Delete("set")
|
|
_ = runtime.GlobalObject().Delete("template")
|
|
for proto := range f.protoFunctions {
|
|
_ = runtime.GlobalObject().Delete(proto)
|
|
}
|
|
runtime.RemoveContextValue("executionId")
|
|
}()
|
|
|
|
// TODO(dwisiswant0): remove this once we get the RCA.
|
|
defer func() {
|
|
if ci.IsCI() {
|
|
return
|
|
}
|
|
|
|
if r := recover(); r != nil {
|
|
f.ctx.LogError(fmt.Errorf("panic occurred while executing flow: %v", r))
|
|
}
|
|
}()
|
|
|
|
if ctx.OnResult == nil {
|
|
return fmt.Errorf("output callback cannot be nil")
|
|
}
|
|
// before running register set of builtins
|
|
if err := runtime.Set("set", func(call goja.FunctionCall) goja.Value {
|
|
varName := call.Argument(0).Export()
|
|
varValue := call.Argument(1).Export()
|
|
f.options.GetTemplateCtx(f.ctx.Input.MetaInput).Set(types.ToString(varName), varValue)
|
|
return goja.Null()
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
// also register functions that allow executing protocols from js
|
|
for proto, fn := range f.protoFunctions {
|
|
if err := runtime.Set(proto, fn); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
// register template object
|
|
tmplObj := f.options.GetTemplateCtx(f.ctx.Input.MetaInput).GetAll()
|
|
if tmplObj == nil {
|
|
tmplObj = map[string]interface{}{}
|
|
}
|
|
if err := runtime.Set("template", tmplObj); err != nil {
|
|
return err
|
|
}
|
|
|
|
runtime.SetContextValue("executionId", f.options.Options.ExecutionId)
|
|
|
|
// pass flow and execute the js vm and handle errors
|
|
_, err := runtime.RunProgram(f.program)
|
|
f.reconcileProgress()
|
|
if err != nil {
|
|
ctx.LogError(err)
|
|
return errkit.Wrapf(err, "failed to execute flow\n%v\n", f.options.Flow)
|
|
}
|
|
runtimeErr := f.GetRuntimeErrors()
|
|
if runtimeErr != nil {
|
|
ctx.LogError(runtimeErr)
|
|
return errkit.Wrap(runtimeErr, "got following errors while executing flow")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (f *FlowExecutor) reconcileProgress() {
|
|
for proto, list := range f.allProtocols {
|
|
for idx, req := range list {
|
|
key := requestKey(proto, req, strconv.Itoa(idx+1))
|
|
if _, seen := f.executed.Get(key); !seen {
|
|
// never executed → pretend it finished so that stats match
|
|
f.options.Progress.SetRequests(uint64(req.Requests()))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// GetRuntimeErrors returns all runtime errors (i.e errors from all protocol combined)
|
|
func (f *FlowExecutor) GetRuntimeErrors() error {
|
|
errs := []error{}
|
|
for proto, err := range f.allErrs.GetAll() {
|
|
errs = append(errs, errkit.Wrapf(err, "failed to execute %v protocol", proto))
|
|
}
|
|
return multierr.Combine(errs...)
|
|
}
|
|
|
|
// ReadDataFromFile reads data from file respecting sandbox options
|
|
func (f *FlowExecutor) ReadDataFromFile(payload string) ([]string, error) {
|
|
values := []string{}
|
|
// load file respecting sandbox
|
|
reader, err := f.options.Options.LoadHelperFile(payload, f.options.TemplatePath, f.options.Catalog)
|
|
if err != nil {
|
|
return values, err
|
|
}
|
|
defer func() {
|
|
_ = reader.Close()
|
|
}()
|
|
bin, err := io.ReadAll(reader)
|
|
if err != nil {
|
|
return values, err
|
|
}
|
|
for _, line := range strings.Split(string(bin), "\n") {
|
|
line = strings.TrimSpace(line)
|
|
if line != "" {
|
|
values = append(values, line)
|
|
}
|
|
}
|
|
return values, nil
|
|
}
|
|
|
|
// Name returns the type of engine
|
|
func (f *FlowExecutor) Name() string {
|
|
return "flow"
|
|
}
|