2023-04-16 17:49:35 +00:00
package main
2024-02-01 20:52:04 +00:00
import osutils "github.com/projectdiscovery/utils/os"
2023-04-16 17:49:35 +00:00
// All Interactsh related testcases
2023-07-28 15:50:57 +00:00
var interactshTestCases = [ ] TestCaseInfo {
2024-02-01 20:52:04 +00:00
{ Path : "protocols/http/interactsh.yaml" , TestCase : & httpInteractshRequest { } , DisableOn : func ( ) bool { return osutils . IsWindows ( ) || osutils . IsOSX ( ) } } ,
{ Path : "protocols/http/interactsh-stop-at-first-match.yaml" , TestCase : & httpInteractshStopAtFirstMatchRequest { } , DisableOn : func ( ) bool { return true } } , // disable this test for now
{ Path : "protocols/http/default-matcher-condition.yaml" , TestCase : & httpDefaultMatcherCondition { } , DisableOn : func ( ) bool { return true } } ,
2023-09-13 14:58:48 +00:00
{ Path : "protocols/http/interactsh-requests-mc-and.yaml" , TestCase : & httpInteractshRequestsWithMCAnd { } } ,
2023-04-16 17:49:35 +00:00
}