mirror of https://github.com/daffainfo/nuclei.git
106 lines
2.9 KiB
Go
106 lines
2.9 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
|
|
"github.com/julienschmidt/httprouter"
|
|
"github.com/projectdiscovery/nuclei/v2/internal/testutils"
|
|
)
|
|
|
|
var workflowTestcases = map[string]testutils.TestCase{
|
|
"workflow/basic.yaml": &workflowBasic{},
|
|
"workflow/condition-matched.yaml": &workflowConditionMatched{},
|
|
"workflow/condition-unmatched.yaml": &workflowConditionUnmatch{},
|
|
"workflow/matcher-name.yaml": &workflowMatcherName{},
|
|
}
|
|
|
|
type workflowBasic struct{}
|
|
|
|
// Executes executes a test case and returns an error if occurred
|
|
func (h *workflowBasic) Execute(filePath string) error {
|
|
router := httprouter.New()
|
|
router.GET("/", httprouter.Handle(func(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
|
|
httpDebugRequestDump(r)
|
|
fmt.Fprintf(w, "This is test matcher text")
|
|
}))
|
|
ts := httptest.NewServer(router)
|
|
defer ts.Close()
|
|
|
|
results, err := testutils.RunNucleiWorkflowAndGetResults(filePath, ts.URL, debug)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(results) != 2 {
|
|
return errIncorrectResultsCount(results)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type workflowConditionMatched struct{}
|
|
|
|
// Executes executes a test case and returns an error if occurred
|
|
func (h *workflowConditionMatched) Execute(filePath string) error {
|
|
router := httprouter.New()
|
|
router.GET("/", httprouter.Handle(func(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
|
|
httpDebugRequestDump(r)
|
|
fmt.Fprintf(w, "This is test matcher text")
|
|
}))
|
|
ts := httptest.NewServer(router)
|
|
defer ts.Close()
|
|
|
|
results, err := testutils.RunNucleiWorkflowAndGetResults(filePath, ts.URL, debug)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(results) != 1 {
|
|
return errIncorrectResultsCount(results)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type workflowConditionUnmatch struct{}
|
|
|
|
// Executes executes a test case and returns an error if occurred
|
|
func (h *workflowConditionUnmatch) Execute(filePath string) error {
|
|
router := httprouter.New()
|
|
router.GET("/", httprouter.Handle(func(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
|
|
httpDebugRequestDump(r)
|
|
fmt.Fprintf(w, "This is test matcher text")
|
|
}))
|
|
ts := httptest.NewServer(router)
|
|
defer ts.Close()
|
|
|
|
results, err := testutils.RunNucleiWorkflowAndGetResults(filePath, ts.URL, debug)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(results) != 0 {
|
|
return errIncorrectResultsCount(results)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type workflowMatcherName struct{}
|
|
|
|
// Executes executes a test case and returns an error if occurred
|
|
func (h *workflowMatcherName) Execute(filePath string) error {
|
|
router := httprouter.New()
|
|
router.GET("/", httprouter.Handle(func(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
|
|
httpDebugRequestDump(r)
|
|
fmt.Fprintf(w, "This is test matcher text")
|
|
}))
|
|
ts := httptest.NewServer(router)
|
|
defer ts.Close()
|
|
|
|
results, err := testutils.RunNucleiWorkflowAndGetResults(filePath, ts.URL, debug)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(results) != 1 {
|
|
return errIncorrectResultsCount(results)
|
|
}
|
|
return nil
|
|
}
|