mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 21:05:26 +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
33 lines
812 B
Go
33 lines
812 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/testutils"
|
|
"github.com/projectdiscovery/utils/errkit"
|
|
)
|
|
|
|
var templatesDirTestCases = []TestCaseInfo{
|
|
{Path: "protocols/dns/cname-fingerprint.yaml", TestCase: &templateDirWithTargetTest{}},
|
|
}
|
|
|
|
type templateDirWithTargetTest struct{}
|
|
|
|
// Execute executes a test case and returns an error if occurred
|
|
func (h *templateDirWithTargetTest) Execute(filePath string) error {
|
|
tempdir, err := os.MkdirTemp("", "nuclei-update-dir-*")
|
|
if err != nil {
|
|
return errkit.Wrap(err, "failed to create temp dir")
|
|
}
|
|
defer func() {
|
|
_ = os.RemoveAll(tempdir)
|
|
}()
|
|
|
|
results, err := testutils.RunNucleiTemplateAndGetResults(filePath, "8x8exch02.8x8.com", debug, "-ud", tempdir)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return expectResultsCount(results, 1)
|
|
}
|