Documentation ¶
Index ¶
Constants ¶
View Source
const DefaultMaxHostsCount = 10000
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cache ¶
type Cache struct { MaxHostError int TrackError []string // contains filtered or unexported fields }
Cache is a cache for host based errors. It allows skipping certain hosts based on an error threshold.
It uses an LRU cache internally for skipping unresponsive hosts that remain so for a duration.
func (*Cache) Check ¶
func (c *Cache) Check(ctx *contextargs.Context) bool
Check returns true if a host should be skipped as it has been unresponsive for a certain number of times.
The value can be many formats -
- URL: https?:// type
- Host:port type
- host type
func (*Cache) GetKeyFromContext ¶
func (c *Cache) GetKeyFromContext(ctx *contextargs.Context, err error) string
GetKeyFromContext returns the key for the cache from the context
func (*Cache) MarkFailed ¶
func (c *Cache) MarkFailed(ctx *contextargs.Context, err error)
MarkFailed marks a host as failed previously
func (*Cache) SetVerbose ¶
SetVerbose sets the cache to log at verbose level
type CacheInterface ¶
type CacheInterface interface { SetVerbose(verbose bool) // log verbosely Close() // close the cache Check(ctx *contextargs.Context) bool // return true if the host should be skipped MarkFailed(ctx *contextargs.Context, err error) // record a failure (and cause) for the host }
CacheInterface defines the signature of the hosterrorscache so that users of Nuclei as embedded lib may implement their own cache
Click to show internal directories.
Click to hide internal directories.