mirror of https://github.com/daffainfo/nuclei.git
205 lines
6.6 KiB
Go
205 lines
6.6 KiB
Go
package file
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/projectdiscovery/nuclei/v2/internal/testutils"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/operators"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/operators/extractors"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/operators/matchers"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/output"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestResponseToDSLMap(t *testing.T) {
|
|
options := testutils.DefaultOptions
|
|
|
|
testutils.Init(options)
|
|
templateID := "testing-file"
|
|
request := &Request{
|
|
ID: templateID,
|
|
MaxSize: 1024,
|
|
NoRecursive: false,
|
|
Extensions: []string{"*", ".lock"},
|
|
ExtensionDenylist: []string{".go"},
|
|
}
|
|
executerOpts := testutils.NewMockExecuterOptions(options, &testutils.TemplateInfo{
|
|
ID: templateID,
|
|
Info: map[string]interface{}{"severity": "low", "name": "test"},
|
|
})
|
|
err := request.Compile(executerOpts)
|
|
require.Nil(t, err, "could not compile file request")
|
|
|
|
resp := "test-data\r\n"
|
|
event := request.responseToDSLMap(resp, "one.one.one.one", "one.one.one.one")
|
|
require.Len(t, event, 5, "could not get correct number of items in dsl map")
|
|
require.Equal(t, resp, event["raw"], "could not get correct resp")
|
|
}
|
|
|
|
func TestFileOperatorMatch(t *testing.T) {
|
|
options := testutils.DefaultOptions
|
|
|
|
testutils.Init(options)
|
|
templateID := "testing-file"
|
|
request := &Request{
|
|
ID: templateID,
|
|
MaxSize: 1024,
|
|
NoRecursive: false,
|
|
Extensions: []string{"*", ".lock"},
|
|
ExtensionDenylist: []string{".go"},
|
|
}
|
|
executerOpts := testutils.NewMockExecuterOptions(options, &testutils.TemplateInfo{
|
|
ID: templateID,
|
|
Info: map[string]interface{}{"severity": "low", "name": "test"},
|
|
})
|
|
err := request.Compile(executerOpts)
|
|
require.Nil(t, err, "could not compile file request")
|
|
|
|
resp := "test-data\r\n1.1.1.1\r\n"
|
|
event := request.responseToDSLMap(resp, "one.one.one.one", "one.one.one.one")
|
|
require.Len(t, event, 5, "could not get correct number of items in dsl map")
|
|
require.Equal(t, resp, event["raw"], "could not get correct resp")
|
|
|
|
t.Run("valid", func(t *testing.T) {
|
|
matcher := &matchers.Matcher{
|
|
Part: "raw",
|
|
Type: "word",
|
|
Words: []string{"1.1.1.1"},
|
|
}
|
|
err = matcher.CompileMatchers()
|
|
require.Nil(t, err, "could not compile matcher")
|
|
|
|
matched := request.Match(event, matcher)
|
|
require.True(t, matched, "could not match valid response")
|
|
})
|
|
|
|
t.Run("negative", func(t *testing.T) {
|
|
matcher := &matchers.Matcher{
|
|
Part: "raw",
|
|
Type: "word",
|
|
Negative: true,
|
|
Words: []string{"random"},
|
|
}
|
|
err := matcher.CompileMatchers()
|
|
require.Nil(t, err, "could not compile negative matcher")
|
|
|
|
matched := request.Match(event, matcher)
|
|
require.True(t, matched, "could not match valid negative response matcher")
|
|
})
|
|
|
|
t.Run("invalid", func(t *testing.T) {
|
|
matcher := &matchers.Matcher{
|
|
Part: "raw",
|
|
Type: "word",
|
|
Words: []string{"random"},
|
|
}
|
|
err := matcher.CompileMatchers()
|
|
require.Nil(t, err, "could not compile matcher")
|
|
|
|
matched := request.Match(event, matcher)
|
|
require.False(t, matched, "could match invalid response matcher")
|
|
})
|
|
}
|
|
|
|
func TestFileOperatorExtract(t *testing.T) {
|
|
options := testutils.DefaultOptions
|
|
|
|
testutils.Init(options)
|
|
templateID := "testing-file"
|
|
request := &Request{
|
|
ID: templateID,
|
|
MaxSize: 1024,
|
|
NoRecursive: false,
|
|
Extensions: []string{"*", ".lock"},
|
|
ExtensionDenylist: []string{".go"},
|
|
}
|
|
executerOpts := testutils.NewMockExecuterOptions(options, &testutils.TemplateInfo{
|
|
ID: templateID,
|
|
Info: map[string]interface{}{"severity": "low", "name": "test"},
|
|
})
|
|
err := request.Compile(executerOpts)
|
|
require.Nil(t, err, "could not compile file request")
|
|
|
|
resp := "test-data\r\n1.1.1.1\r\n"
|
|
event := request.responseToDSLMap(resp, "one.one.one.one", "one.one.one.one")
|
|
require.Len(t, event, 5, "could not get correct number of items in dsl map")
|
|
require.Equal(t, resp, event["raw"], "could not get correct resp")
|
|
|
|
t.Run("extract", func(t *testing.T) {
|
|
extractor := &extractors.Extractor{
|
|
Part: "raw",
|
|
Type: "regex",
|
|
Regex: []string{"[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+"},
|
|
}
|
|
err = extractor.CompileExtractors()
|
|
require.Nil(t, err, "could not compile extractor")
|
|
|
|
data := request.Extract(event, extractor)
|
|
require.Greater(t, len(data), 0, "could not extractor valid response")
|
|
require.Equal(t, map[string]struct{}{"1.1.1.1": {}}, data, "could not extract correct data")
|
|
})
|
|
|
|
t.Run("kval", func(t *testing.T) {
|
|
extractor := &extractors.Extractor{
|
|
Type: "kval",
|
|
KVal: []string{"raw"},
|
|
}
|
|
err = extractor.CompileExtractors()
|
|
require.Nil(t, err, "could not compile kval extractor")
|
|
|
|
data := request.Extract(event, extractor)
|
|
require.Greater(t, len(data), 0, "could not extractor kval valid response")
|
|
require.Equal(t, map[string]struct{}{resp: {}}, data, "could not extract correct kval data")
|
|
})
|
|
}
|
|
|
|
func TestFileMakeResult(t *testing.T) {
|
|
options := testutils.DefaultOptions
|
|
|
|
testutils.Init(options)
|
|
templateID := "testing-file"
|
|
request := &Request{
|
|
ID: templateID,
|
|
MaxSize: 1024,
|
|
NoRecursive: false,
|
|
Extensions: []string{"*", ".lock"},
|
|
ExtensionDenylist: []string{".go"},
|
|
Operators: operators.Operators{
|
|
Matchers: []*matchers.Matcher{{
|
|
Name: "test",
|
|
Part: "raw",
|
|
Type: "word",
|
|
Words: []string{"1.1.1.1"},
|
|
}},
|
|
Extractors: []*extractors.Extractor{{
|
|
Part: "raw",
|
|
Type: "regex",
|
|
Regex: []string{"[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+"},
|
|
}},
|
|
},
|
|
}
|
|
executerOpts := testutils.NewMockExecuterOptions(options, &testutils.TemplateInfo{
|
|
ID: templateID,
|
|
Info: map[string]interface{}{"severity": "low", "name": "test"},
|
|
})
|
|
err := request.Compile(executerOpts)
|
|
require.Nil(t, err, "could not compile file request")
|
|
|
|
resp := "test-data\r\n1.1.1.1\r\n"
|
|
event := request.responseToDSLMap(resp, "one.one.one.one", "one.one.one.one")
|
|
require.Len(t, event, 5, "could not get correct number of items in dsl map")
|
|
require.Equal(t, resp, event["raw"], "could not get correct resp")
|
|
|
|
finalEvent := &output.InternalWrappedEvent{InternalEvent: event}
|
|
if request.CompiledOperators != nil {
|
|
result, ok := request.CompiledOperators.Execute(event, request.Match, request.Extract)
|
|
if ok && result != nil {
|
|
finalEvent.OperatorsResult = result
|
|
finalEvent.Results = request.MakeResultEvent(finalEvent)
|
|
}
|
|
}
|
|
require.Equal(t, 1, len(finalEvent.Results), "could not get correct number of results")
|
|
require.Equal(t, "test", finalEvent.Results[0].MatcherName, "could not get correct matcher name of results")
|
|
require.Equal(t, "1.1.1.1", finalEvent.Results[0].ExtractedResults[0], "could not get correct extracted results")
|
|
}
|