Documentation
¶
Index ¶
- Constants
- type GobusterFuzz
- func (d *GobusterFuzz) AdditionalSuccessWords(_ string) []string
- func (d *GobusterFuzz) AdditionalWords(_ string) []string
- func (d *GobusterFuzz) AdditionalWordsLen() int
- func (d *GobusterFuzz) GetConfigString() (string, error)
- func (d *GobusterFuzz) Name() string
- func (d *GobusterFuzz) PreRun(_ context.Context, _ *libgobuster.Progress) error
- func (d *GobusterFuzz) ProcessWord(ctx context.Context, word string, progress *libgobuster.Progress) (libgobuster.Result, error)
- type OptionsFuzz
- type Result
- type WildcardError
Constants ¶
View Source
const FuzzKeyword = "FUZZ"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GobusterFuzz ¶
type GobusterFuzz struct {
// contains filtered or unexported fields
}
GobusterFuzz is the main type to implement the interface
func New ¶ added in v3.7.0
func New(globalopts *libgobuster.Options, opts *OptionsFuzz, logger *libgobuster.Logger) (*GobusterFuzz, error)
New creates a new initialized GobusterFuzz
func (*GobusterFuzz) AdditionalSuccessWords ¶ added in v3.7.0
func (d *GobusterFuzz) AdditionalSuccessWords(_ string) []string
func (*GobusterFuzz) AdditionalWords ¶ added in v3.2.0
func (d *GobusterFuzz) AdditionalWords(_ string) []string
func (*GobusterFuzz) AdditionalWordsLen ¶ added in v3.7.0
func (d *GobusterFuzz) AdditionalWordsLen() int
func (*GobusterFuzz) GetConfigString ¶
func (d *GobusterFuzz) GetConfigString() (string, error)
GetConfigString returns the string representation of the current config
func (*GobusterFuzz) Name ¶
func (d *GobusterFuzz) Name() string
Name should return the name of the plugin
func (*GobusterFuzz) PreRun ¶
func (d *GobusterFuzz) PreRun(_ context.Context, _ *libgobuster.Progress) error
PreRun is the pre run implementation of gobusterfuzz
func (*GobusterFuzz) ProcessWord ¶ added in v3.2.0
func (d *GobusterFuzz) ProcessWord(ctx context.Context, word string, progress *libgobuster.Progress) (libgobuster.Result, error)
ProcessWord is the process implementation of gobusterfuzz
type OptionsFuzz ¶
type OptionsFuzz struct {
libgobuster.HTTPOptions
ExcludedStatusCodes string
ExcludedStatusCodesParsed libgobuster.Set[int]
ExcludeLength string
ExcludeLengthParsed libgobuster.Set[int]
RequestBody string
}
OptionsFuzz is the struct to hold all options for this plugin
func NewOptions ¶ added in v3.7.0
func NewOptions() *OptionsFuzz
NewOptions returns a new initialized OptionsFuzz
type Result ¶
Result represents a single result
func (Result) ResultToString ¶
ResultToString converts the Result to its textual representation
type WildcardError ¶ added in v3.7.0
type WildcardError struct {
// contains filtered or unexported fields
}
WildcardError is returned if a wildcard response is found
func (*WildcardError) Error ¶ added in v3.7.0
func (e *WildcardError) Error() string
Error is the implementation of the error interface
Click to show internal directories.
Click to hide internal directories.