File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,14 @@ class Metasploit3 < Msf::Auxiliary
17
17
18
18
def initialize
19
19
super (
20
- 'Name' => 'External IP' ,
21
- 'Description' => 'This module checks for the public source IP address of the current route to the RHOST' ,
20
+ 'Name' => 'Discover External IP via Ifconfig.me' ,
21
+ 'Description' => %q{
22
+ This module checks for the public source IP address of the current
23
+ route to the RHOST by querying the public web application at ifconfig.me.
24
+ It should be noted this module will register activity on ifconfig.me,
25
+ which is not affiliated with Metasploit.
26
+ }
27
+ ,
22
28
'Author' => [ 'RageLtMan' ] ,
23
29
'License' => MSF_LICENSE ,
24
30
'References' =>
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ def check_title_casing
277
277
if @source =~ /'Name'[[:space:]]*=>[[:space:]]*['"](.+)['"],*$/
278
278
words = $1. split
279
279
words . each do |word |
280
- if %w{ and or the for to in of as with a an on at } . include? ( word )
280
+ if %w{ and or the for to in of as with a an on at via } . include? ( word )
281
281
next
282
282
elsif %w{ pbot } . include? ( word )
283
283
elsif word =~ /^[a-z]+$/
You can’t perform that action at this time.
0 commit comments