2023-04-16 19:49:35 +02:00
|
|
|
package main
|
|
|
|
|
|
2023-07-28 18:50:57 +03:00
|
|
|
import osutils "github.com/projectdiscovery/utils/os"
|
2023-04-16 19:49:35 +02:00
|
|
|
|
|
|
|
|
// All Interactsh related testcases
|
2023-07-28 18:50:57 +03:00
|
|
|
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() }},
|
2023-08-18 02:49:05 +05:30
|
|
|
{Path: "http/interactsh-requests-mc-and.yaml", TestCase: &httpInteractshRequestsWithMCAnd{}},
|
2023-04-16 19:49:35 +02:00
|
|
|
}
|