mirror of
https://github.com/projectdiscovery/nuclei
synced 2026-06-08 16:50:47 +00:00
f893b6c0cb
Signed-off-by: Dwi Siswanto <git@dw1.io>
111 lines
3.4 KiB
Go
111 lines
3.4 KiB
Go
package javascript_test
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/catalog/config"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/catalog/disk"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/loader/workflow"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/output"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/progress"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/common/contextargs"
|
|
javascript "github.com/projectdiscovery/nuclei/v3/pkg/protocols/javascript"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/templates"
|
|
"github.com/projectdiscovery/nuclei/v3/internal/tests/testutils"
|
|
"github.com/projectdiscovery/ratelimit"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var (
|
|
testcases = []string{
|
|
"testcases/ms-sql-detect.yaml",
|
|
"testcases/redis-pass-brute.yaml",
|
|
"testcases/ssh-server-fingerprint.yaml",
|
|
}
|
|
executerOpts *protocols.ExecutorOptions
|
|
)
|
|
|
|
func setup() {
|
|
options := testutils.DefaultOptions
|
|
testutils.Init(options)
|
|
progressImpl, _ := progress.NewStatsTicker(0, false, false, false, 0)
|
|
|
|
executerOpts = &protocols.ExecutorOptions{
|
|
Output: testutils.NewMockOutputWriter(options.OmitTemplate),
|
|
Options: options,
|
|
Progress: progressImpl,
|
|
ProjectFile: nil,
|
|
IssuesClient: nil,
|
|
Browser: nil,
|
|
Catalog: disk.NewCatalog(config.DefaultConfig.TemplatesDirectory),
|
|
RateLimiter: ratelimit.New(context.Background(), uint(options.RateLimit), time.Second),
|
|
Parser: templates.NewParser(),
|
|
}
|
|
workflowLoader, err := workflow.NewLoader(executerOpts)
|
|
if err != nil {
|
|
log.Fatalf("Could not create workflow loader: %s\n", err)
|
|
}
|
|
executerOpts.WorkflowLoader = workflowLoader
|
|
}
|
|
|
|
func TestCompile(t *testing.T) {
|
|
setup()
|
|
for index, tpl := range testcases {
|
|
// parse template
|
|
template, err := templates.Parse(tpl, nil, executerOpts)
|
|
require.Nilf(t, err, "failed to parse %v", tpl)
|
|
|
|
// compile template
|
|
err = template.Executer.Compile()
|
|
require.Nilf(t, err, "failed to compile %v", tpl)
|
|
|
|
switch index {
|
|
case 0:
|
|
// requests count should be 1
|
|
require.Equal(t, 1, template.TotalRequests, "template : %v", tpl)
|
|
case 1:
|
|
// requests count should be 6 i.e 5 generator payloads + 1 precondition request
|
|
require.Equal(t, 5+1, template.TotalRequests, "template : %v", tpl)
|
|
case 2:
|
|
// requests count should be 1
|
|
require.Equal(t, 1, template.TotalRequests, "template : %v", tpl)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestExecuteWithResultsReturnsArgEvaluationErrorWithoutPanic(t *testing.T) {
|
|
options := testutils.DefaultOptions
|
|
tmplInfo := &testutils.TemplateInfo{ID: "execute-with-results-arg-evaluation-error"}
|
|
|
|
testutils.Init(options)
|
|
|
|
t.Cleanup(func() {
|
|
testutils.Cleanup(options)
|
|
})
|
|
|
|
executorOptions := testutils.NewMockExecuterOptions(options, tmplInfo)
|
|
executorOptions.JsCompiler = templates.GetJsCompiler()
|
|
|
|
request := &javascript.Request{
|
|
Args: map[string]interface{}{
|
|
"token": "{{base64()}}",
|
|
},
|
|
Code: `module.exports = { success: true, response: "ok" }`,
|
|
}
|
|
require.NoError(t, request.Compile(executorOptions))
|
|
|
|
target := contextargs.NewWithInput(context.Background(), "https://example.com:443")
|
|
|
|
var err error
|
|
require.NotPanics(t, func() {
|
|
err = request.ExecuteWithResults(target, nil, nil, func(*output.InternalWrappedEvent) {
|
|
t.Fatal("unexpected callback on argument evaluation failure")
|
|
})
|
|
})
|
|
require.ErrorContains(t, err, `failed to evaluate expression "base64()"`)
|
|
}
|