Skip to content

Commit b9bed5a

Browse files
committed
Land rapid7#9028, vprint_* fix for AuthBrute
2 parents e0fee9e + e8d0f2d commit b9bed5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/msf/core/auxiliary/auth_brute.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -547,17 +547,17 @@ def vprint_brute(opts={})
547547
end
548548

549549
def vprint_status(msg='')
550-
print_brute :level => :vstatus
550+
print_brute :level => :vstatus, :msg => msg
551551
end
552552

553553
def vprint_error(msg='')
554-
print_brute :level => :verror
554+
print_brute :level => :verror, :msg => msg
555555
end
556556

557557
alias_method :vprint_bad, :vprint_error
558558

559559
def vprint_good(msg='')
560-
print_brute :level => :vgood
560+
print_brute :level => :vgood, :msg => msg
561561
end
562562

563563
# Provides a consistant way to display messages about AuthBrute-mixed modules.

0 commit comments

Comments
 (0)