Dogan Can Bakir 7c2db9c394
introduce template-encoded field (#4315)
* introduce `template-encoded` field

* remove IsCustomTemplate func

* refactor and move encoding to `MakeResultEventItem` func

* encode template in case of no results were found

* commit to last commit

* don't encode templates when`-ms` is used
2023-11-11 04:42:27 +05:30

75 lines
2.1 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/parsers"
"github.com/projectdiscovery/nuclei/v3/pkg/progress"
"github.com/projectdiscovery/nuclei/v3/pkg/protocols"
"github.com/projectdiscovery/nuclei/v3/pkg/templates"
"github.com/projectdiscovery/nuclei/v3/pkg/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),
}
workflowLoader, err := parsers.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)
}
}
}