CLI app like burpsuite's intruder attack.
Gorude is not a plugin for burpsuite.
- Supports only sniper attack for now
- Works standalone. It doesn't need burpsuite
How to create an intercept file:
Also you can add multiple payload positions everywhere you want
package main
import (
gorude "github.com/canack/gorude/pkg"
)
func main() {
newTarget := gorude.New()
newTarget.Config.Threads = 10
newTarget.Config.SleepInterval = 0.1
payloads, _ := gorude.LoadList("payloads.txt")
newTarget.ParseFile("intercept.txt").Sniper(payloads)
}
- Burpsuite's all intruder functions will be add