mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 19:55:26 +00:00
19 lines
334 B
Go
19 lines
334 B
Go
|
|
package interactsh
|
||
|
|
|
||
|
|
import (
|
||
|
|
"regexp"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
var (
|
||
|
|
defaultInteractionDuration = 60 * time.Second
|
||
|
|
interactshURLMarkerRegex = regexp.MustCompile(`{{interactsh-url(?:_[0-9]+){0,3}}}`)
|
||
|
|
)
|
||
|
|
|
||
|
|
const (
|
||
|
|
stopAtFirstMatchAttribute = "stop-at-first-match"
|
||
|
|
templateIdAttribute = "template-id"
|
||
|
|
|
||
|
|
defaultMaxInteractionsCount = 5000
|
||
|
|
)
|