mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 20:55:28 +00:00
* introducing execution id * wip * . * adding separate execution context id * lint * vet * fixing pg dialers * test ignore * fixing loader FD limit * test * fd fix * wip: remove CloseProcesses() from dev merge * wip: fix merge issue * protocolstate: stop memguarding on last dialer delete * avoid data race in dialers.RawHTTPClient * use shared logger and avoid race conditions * use shared logger and avoid race conditions * go mod * patch executionId into compiled template cache * clean up comment in Parse * go mod update * bump echarts * address merge issues * fix use of gologger * switch cmd/nuclei to options.Logger * address merge issues with go.mod * go vet: address copy of lock with new Copy function * fixing tests * disable speed control * fix nil ExecuterOptions * removing deprecated code * fixing result print * default logger * cli default logger * filter warning from results * fix performance test * hardcoding path * disable upload * refactor(runner): uses `Warning` instead of `Print` for `pdcpUploadErrMsg` Signed-off-by: Dwi Siswanto <git@dw1.io> * Revert "disable upload" This reverts commit 114fbe6663361bf41cf8b2645fd2d57083d53682. * Revert "hardcoding path" This reverts commit cf12ca800e0a0e974bd9fd4826a24e51547f7c00. --------- Signed-off-by: Dwi Siswanto <git@dw1.io> Co-authored-by: Mzack9999 <mzack9999@protonmail.com> Co-authored-by: Dwi Siswanto <git@dw1.io> Co-authored-by: Dwi Siswanto <25837540+dwisiswant0@users.noreply.github.com>
121 lines
3.6 KiB
Go
121 lines
3.6 KiB
Go
package flow
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
"sync"
|
|
|
|
"github.com/Mzack9999/goja"
|
|
"github.com/logrusorgru/aurora"
|
|
"github.com/projectdiscovery/gologger"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/js/gojs"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/common/protocolstate"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/common/utils/vardump"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/tmplexec/flow/builtin"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/types"
|
|
"github.com/projectdiscovery/utils/sync/sizedpool"
|
|
)
|
|
|
|
var jsOnce sync.Once
|
|
|
|
// js runtime pool using sync.Pool
|
|
var gojapool = &sync.Pool{
|
|
New: func() interface{} {
|
|
runtime := protocolstate.NewJSRuntime()
|
|
registerBuiltins(runtime)
|
|
return runtime
|
|
},
|
|
}
|
|
|
|
var sizedgojapool *sizedpool.SizedPool[*goja.Runtime]
|
|
|
|
// GetJSRuntime returns a new JS runtime from pool
|
|
func GetJSRuntime(opts *types.Options) *goja.Runtime {
|
|
jsOnce.Do(func() {
|
|
if opts.JsConcurrency < 100 {
|
|
opts.JsConcurrency = 100
|
|
}
|
|
sizedgojapool, _ = sizedpool.New(
|
|
sizedpool.WithPool[*goja.Runtime](gojapool),
|
|
sizedpool.WithSize[*goja.Runtime](int64(opts.JsConcurrency)),
|
|
)
|
|
})
|
|
runtime, _ := sizedgojapool.Get(context.TODO())
|
|
return runtime
|
|
}
|
|
|
|
// PutJSRuntime returns a JS runtime to pool
|
|
func PutJSRuntime(runtime *goja.Runtime, reuse bool) {
|
|
if reuse {
|
|
sizedgojapool.Put(runtime)
|
|
} else {
|
|
sizedgojapool.Put(gojapool.Get().(*goja.Runtime))
|
|
}
|
|
}
|
|
|
|
func registerBuiltins(runtime *goja.Runtime) {
|
|
_ = gojs.RegisterFuncWithSignature(runtime, gojs.FuncOpts{
|
|
Name: "log",
|
|
Description: "Logs a given object/message to stdout (only for debugging purposes)",
|
|
Signatures: []string{
|
|
"log(obj any) any",
|
|
},
|
|
FuncDecl: func(call goja.FunctionCall) goja.Value {
|
|
arg := call.Argument(0).Export()
|
|
switch value := arg.(type) {
|
|
case string:
|
|
gologger.DefaultLogger.Print().Msgf("[%v] %v", aurora.BrightCyan("JS"), value)
|
|
case map[string]interface{}:
|
|
gologger.DefaultLogger.Print().Msgf("[%v] %v", aurora.BrightCyan("JS"), vardump.DumpVariables(value))
|
|
default:
|
|
gologger.DefaultLogger.Print().Msgf("[%v] %v", aurora.BrightCyan("JS"), value)
|
|
}
|
|
return call.Argument(0) // return the same value
|
|
},
|
|
})
|
|
|
|
_ = gojs.RegisterFuncWithSignature(runtime, gojs.FuncOpts{
|
|
Name: "iterate",
|
|
Description: "Normalizes and Iterates over all arguments (can be a string,array,null etc) and returns an array of objects\nNote: If the object type is unknown(i.e could be a string or array) iterate should be used and it will always return an array of strings",
|
|
Signatures: []string{
|
|
"iterate(...any) []any",
|
|
},
|
|
FuncDecl: func(call goja.FunctionCall) goja.Value {
|
|
allVars := []any{}
|
|
for _, v := range call.Arguments {
|
|
if v.Export() == nil {
|
|
continue
|
|
}
|
|
if v.ExportType().Kind() == reflect.Slice {
|
|
// convert []datatype to []interface{}
|
|
// since it cannot be type asserted to []interface{} directly
|
|
rfValue := reflect.ValueOf(v.Export())
|
|
for i := 0; i < rfValue.Len(); i++ {
|
|
allVars = append(allVars, rfValue.Index(i).Interface())
|
|
}
|
|
} else {
|
|
allVars = append(allVars, v.Export())
|
|
}
|
|
}
|
|
return runtime.ToValue(allVars)
|
|
},
|
|
})
|
|
|
|
_ = gojs.RegisterFuncWithSignature(runtime, gojs.FuncOpts{
|
|
Name: "Dedupe",
|
|
Description: "De-duplicates given values and returns a new array of unique values",
|
|
Signatures: []string{
|
|
"new Dedupe()",
|
|
},
|
|
FuncDecl: func(call goja.ConstructorCall) *goja.Object {
|
|
d := builtin.NewDedupe(runtime)
|
|
obj := call.This
|
|
// register these methods
|
|
_ = obj.Set("Add", d.Add)
|
|
_ = obj.Set("Values", d.Values)
|
|
return nil
|
|
},
|
|
})
|
|
|
|
}
|