mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-27 17:45:26 +00:00
* add headless options flag * disable some tests for windows * disable interactsh tests on darwin * disable network/hex.yaml on windows * make DisableOn func
11 lines
635 B
Go
11 lines
635 B
Go
package main
|
|
|
|
import osutils "github.com/projectdiscovery/utils/os"
|
|
|
|
// All Interactsh related testcases
|
|
var interactshTestCases = []TestCaseInfo{
|
|
{Path: "http/interactsh.yaml", TestCase: &httpInteractshRequest{}, DisableOn: func() bool { return osutils.IsWindows() || osutils.IsOSX() }},
|
|
{Path: "http/interactsh-stop-at-first-match.yaml", TestCase: &httpInteractshStopAtFirstMatchRequest{}, DisableOn: func() bool { return osutils.IsWindows() || osutils.IsOSX() }},
|
|
{Path: "http/default-matcher-condition.yaml", TestCase: &httpDefaultMatcherCondition{}, DisableOn: func() bool { return osutils.IsWindows() || osutils.IsOSX() }},
|
|
}
|