Documentation
¶
Overview ¶
TODO: This package should be abstracted out to projectdiscovery/utils so it can be shared between httpx, nuclei, and other tools.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SupportedFormats ¶
func SupportedFormats() string
SupportedFormats returns a comma-separated list of supported format names
Types ¶
type BurpFormat ¶
type BurpFormat struct{}
BurpFormat is a Burp Suite XML file parser
func NewBurpFormat ¶
func NewBurpFormat() *BurpFormat
NewBurpFormat creates a new Burp XML file parser
type Format ¶
type Format interface {
// Name returns the name of the format
Name() string
// Parse parses the input and calls the provided callback
// function for each URL it discovers.
Parse(input io.Reader, callback func(url string) bool) error
}
Format is an interface implemented by all input formats
Click to show internal directories.
Click to hide internal directories.