2023-04-16 19:49:35 +02:00
package main
2024-02-02 02:22:04 +05:30
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 {
2024-02-02 02:22:04 +05:30
{ 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 20:28:48 +05:30
{ Path : "protocols/http/interactsh-requests-mc-and.yaml" , TestCase : & httpInteractshRequestsWithMCAnd { } } ,
2023-04-16 19:49:35 +02:00
}