-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathhints.go
62 lines (50 loc) · 1.53 KB
/
hints.go
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package main
import (
"github.com/glebarez/padre/pkg/color"
"github.com/glebarez/padre/pkg/output"
)
// flag wrapper
func _f(f string) string {
return `(` + color.GreenBold(`-`+f) + ` option)`
}
// hint texts
var (
omitBlockLen = `omit ` + _f(`b`) + ` for automatic detection of block length`
omitErrPattern = `omit ` + _f(`err`) + ` for automatic fingerprinting of HTTP responses`
setErrPattern = `specify error pattern manually with ` + _f(`err`)
lowerConnections = `server might be overwhelmed or rate-limiting you requests. try lowering concurrency using ` + _f(`p`)
checkEncoding = `check that encoding ` + _f(`e`) + ` and replacement rules ` + _f(`r`) + ` are set properly`
checkInput = `check that INPUT is properly formatted`
)
// make hints for obvious reasons
func makeDetectionHints(args *Args) []string {
hints := make([]string, 0)
// block length
if *args.BlockLen != 0 {
hints = append(hints, omitBlockLen)
} else {
// error pattern
if *args.PaddingErrorPattern != "" {
hints = append(hints, omitErrPattern)
} else {
hints = append(hints, setErrPattern)
}
}
// concurrency
if *args.Parallel > 10 {
hints = append(hints, lowerConnections)
}
return hints
}
func printHints(p *output.Printer, hints []string) {
// hints intro
p.AddPrefix(color.CyanBold("[hints]"), true)
defer p.RemovePrefix()
p.Println(`if you believe target is vulnerable, try following:`)
// list hints
p.AddPrefix(color.CyanBold(`> `), false)
defer p.RemovePrefix()
for _, h := range hints {
p.Println(h)
}
}