Skip to content

Commit fd20eba

Browse files
committed
Expanding the title and desc for external_ip
Also allowing the capitalization on "via" to be small.
1 parent 52df05c commit fd20eba

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

modules/auxiliary/gather/external_ip.rb

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,14 @@ class Metasploit3 < Msf::Auxiliary
1717

1818
def initialize
1919
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+
,
2228
'Author' => ['RageLtMan'],
2329
'License' => MSF_LICENSE,
2430
'References' =>

tools/msftidy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def check_title_casing
277277
if @source =~ /'Name'[[:space:]]*=>[[:space:]]*['"](.+)['"],*$/
278278
words = $1.split
279279
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)
281281
next
282282
elsif %w{pbot}.include?(word)
283283
elsif word =~ /^[a-z]+$/

0 commit comments

Comments
 (0)