fix brute mod not work

This commit is contained in:
M09Ic 2024-08-20 16:42:32 +08:00
parent 32f558f9c5
commit 937855c075
2 changed files with 10 additions and 6 deletions

View File

@ -326,30 +326,30 @@ func (opt *Option) NewRunner() (*Runner, error) {
r.Active = true
pkg.EnableAllFingerEngine = true
pkg.Extractors["recon"] = pkg.ExtractRegexps["pentest"]
r.IsCheck = false
r.bruteMod = true
opt.AppendRule = append(opt.AppendRule, "filebak")
}
if opt.FileBak {
r.IsCheck = false
r.bruteMod = true
opt.AppendRule = append(opt.AppendRule, "filebak")
}
if opt.Common {
r.IsCheck = false
r.bruteMod = true
r.AppendWords = append(r.AppendWords, mask.SpecialWords["common_file"]...)
}
if opt.Active {
r.IsCheck = false
r.bruteMod = true
r.AppendWords = append(r.AppendWords, pkg.ActivePath...)
}
if opt.Crawl {
r.IsCheck = false
r.bruteMod = true
}
opt.PrintPlugin()
if r.IsCheck == true {
if r.bruteMod {
logs.Log.Important("enabling brute mod, because of enabled brute plugin")
}

View File

@ -35,6 +35,7 @@ type Runner struct {
outputCh chan *pkg.Baseline
fuzzyCh chan *pkg.Baseline
bar *mpb.Bar
bruteMod bool
IsCheck bool
Pools *ants.PoolWithFunc
PoolName map[string]bool
@ -111,6 +112,9 @@ func (r *Runner) AppendFunction(fn func(string) []string) {
}
func (r *Runner) Prepare(ctx context.Context) error {
if r.bruteMod {
r.IsCheck = false
}
r.OutputHandler()
var err error
if r.IsCheck {