Skip to content

Commit b7dc89f

Browse files
author
Tod Beardsley
committed
I prefer "bruteforce" to "brute force" for search
Just makes it easier to search for, since it's an industry term of art.
1 parent 8bd4e8d commit b7dc89f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

modules/auxiliary/scanner/http/etherpad_duo_login.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ class Metasploit3 < Msf::Auxiliary
1313

1414
def initialize(info={})
1515
super(update_info(info,
16-
'Name' => 'EtherPAD Duo Login Brute Force Utility',
16+
'Name' => 'EtherPAD Duo Login Bruteforce Utility',
1717
'Description' => %{
1818
This module scans for EtherPAD Duo login portal, and
19-
performs a login brute force attack to identify valid credentials.
19+
performs a login bruteforce attack to identify valid credentials.
2020
},
2121
'Author' =>
2222
[
@@ -32,7 +32,7 @@ def run_host(ip)
3232
return
3333
end
3434

35-
print_status("#{peer} - Starting login brute force...")
35+
print_status("#{peer} - Starting login bruteforce...")
3636
each_user_pass do |user, pass|
3737
do_login(user, pass)
3838
end

modules/auxiliary/scanner/http/pocketpad_login.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ class Metasploit3 < Msf::Auxiliary
1414

1515
def initialize(info={})
1616
super(update_info(info,
17-
'Name' => 'PocketPAD Login Brute Force Utility',
17+
'Name' => 'PocketPAD Login Bruteforce Force Utility',
1818
'Description' => %{
1919
This module scans for PocketPAD login portal, and
20-
performs a login brute force attack to identify valid credentials.
20+
performs a login bruteforce attack to identify valid credentials.
2121
},
2222
'Author' =>
2323
[
@@ -32,7 +32,7 @@ def run_host(ip)
3232
return
3333
end
3434

35-
print_status("#{peer} - Starting login brute force...")
35+
print_status("#{peer} - Starting login bruteforce...")
3636
each_user_pass do |user, pass|
3737
do_login(user, pass)
3838
end

0 commit comments

Comments
 (0)