mirror of https://github.com/daffainfo/nuclei.git
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/logrusorgru/aurora"
|
|
"github.com/projectdiscovery/nuclei/v2/internal/testutils"
|
|
)
|
|
|
|
var (
|
|
debug = os.Getenv("DEBUG") == "true"
|
|
customTest = os.Getenv("TEST")
|
|
protocol = os.Getenv("PROTO")
|
|
|
|
errored = false
|
|
)
|
|
|
|
func main() {
|
|
success := aurora.Green("[✓]").String()
|
|
failed := aurora.Red("[✘]").String()
|
|
|
|
protocolTests := map[string]map[string]testutils.TestCase{
|
|
"http": httpTestcases,
|
|
"network": networkTestcases,
|
|
"dns": dnsTestCases,
|
|
"workflow": workflowTestcases,
|
|
}
|
|
for proto, tests := range protocolTests {
|
|
if protocol == "" || protocol == proto {
|
|
fmt.Printf("Running test cases for \"%s\" protocol\n", aurora.Blue(proto))
|
|
|
|
for file, test := range tests {
|
|
if customTest != "" && !strings.Contains(file, customTest) {
|
|
continue // only run tests user asked
|
|
}
|
|
if err := test.Execute(file); err != nil {
|
|
fmt.Fprintf(os.Stderr, "%s Test \"%s\" failed: %s\n", failed, file, err)
|
|
errored = true
|
|
} else {
|
|
fmt.Printf("%s Test \"%s\" passed!\n", success, file)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if errored {
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func errIncorrectResultsCount(results []string) error {
|
|
return fmt.Errorf("incorrect number of results %s", strings.Join(results, "\n\t"))
|
|
}
|