Documentation
¶
Index ¶
- func CreateColly(delayTime int, concurrency int, cache bool, timeout int, intensive bool, ...) *colly.Collector
- func EndpointsMatch(target string, endpointsFile *[]string) []scanner.EndpointMatched
- func ErrorsMatch(url, body string) []scanner.ErrorMatched
- func GenerateRandomUserAgent() string
- func GetRequest(target string) (string, error)
- func HeadRequest(target string) (string, error)
- func IgnoreMatch(url string, ignoreSlice *[]string) bool
- func InfoMatch(url, body string) []scanner.InfoMatched
- func PostRequest(target string, data map[string]string) (string, error)
- func RetrieveBody(target *string) string
- func SecretsMatch(url, body string, secretsFile *[]string) []scanner.SecretMatched
- type Event
- type Results
- type Scan
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateColly ¶
func CreateColly(delayTime int, concurrency int, cache bool, timeout int, intensive bool, rua bool, proxy string, userAgent string, target string) *colly.Collector
CreateColly takes as input all the settings needed to instantiate a new Colly Collector object and it returns this object.
func EndpointsMatch ¶
func EndpointsMatch(target string, endpointsFile *[]string) []scanner.EndpointMatched
EndpointsMatch check if an endpoint matches a juicy parameter.
func ErrorsMatch ¶
func ErrorsMatch(url, body string) []scanner.ErrorMatched
ErrorsMatch checks the patterns for errors.
func GenerateRandomUserAgent ¶
func GenerateRandomUserAgent() string
GenerateRandomUserAgent generates a random user agent (can be Chrome or Firefox).
func GetRequest ¶
GetRequest performs a GET request and return a string (the body of the response).
func HeadRequest ¶
HeadRequest performs a HEAD request and return a string (the headers of the response).
func IgnoreMatch ¶
IgnoreMatch checks if the URL should be ignored or not.
func InfoMatch ¶
func InfoMatch(url, body string) []scanner.InfoMatched
InfoMatch checks the patterns for infos.
func PostRequest ¶
PostRequest performs a POST request and return a string (the body of the response) the map in the input should contains the data fields and values in this way for example: { email: test@example.com, password: stupid_pwd }.
func RetrieveBody ¶
RetrieveBody retrieves the body (in the response) of a url.
func SecretsMatch ¶
func SecretsMatch(url, body string, secretsFile *[]string) []scanner.SecretMatched
SecretsMatch checks if a body matches some secrets.
Types ¶
type Results ¶ added in v1.3.0
type Results struct {
URLs []string
Secrets []scanner.SecretMatched
Endpoints []scanner.EndpointMatched
Extensions []scanner.FileTypeMatched
Errors []scanner.ErrorMatched
Infos []scanner.InfoMatched
}
type Scan ¶ added in v1.3.0
type Scan struct {
// Flags
Cache bool
Debug bool
EndpointsFlag bool
ErrorsFlag bool
InfoFlag bool
Intensive bool
Plain bool
Rua bool
SecretsFlag bool
Ignore string
IgnoreTxt string
JSON bool
HTML string
Proxy string
Target string
Txt string
UserAgent string
FileType int
Headers map[string]string
StoreResp bool
// Settings
Concurrency int
Delay int
Timeout int
// Storage
SecretsSlice []string
EndpointsSlice []string
}