about summary refs log tree commit diff
path: root/src/structs.go
blob: 4458dc85a7db92c5f546f0d06ff5e664ad465807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package main

// Hide stores what requests to hide
type Hide struct {
	hideCode, hideLine, hideWord, hideChar string
}

// Show stores what requests to show
type Show struct {
	showCode, showLine, showWord, showChar string
}

// Config stores the overall config
type Config struct {

	// show / hide config
	Show Show
	Hide Hide

	// misc config
	color          bool
	verbose        bool
	printer        string
	dryrun         bool
	proxy          string
	concurrent     int
	delay          int
	followRedirect bool
	url            string
	payload        string
	wordlist       string
	postData       string
	headers        string
	basicauth      string
}