Skip to content

Commit c31d398

Browse files
committed
more description
1 parent b86c1f0 commit c31d398

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

modules/auxiliary/admin/http/tomcat_administration.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ class MetasploitModule < Msf::Auxiliary
1414
def initialize
1515
super(
1616
'Name' => 'Tomcat Administration Tool Default Access',
17-
'Description' => 'Detect the Tomcat administration interface.',
17+
'Description' => 'Detect the Tomcat administration interface. The administration interface is included in versions 5.5 and lower.
18+
Port 8180 is the default for FreeBSD, 8080 for all others.',
19+
# version of admin interface source: O'Reilly Tomcat The Definitive Guide, page 82
1820
'References' =>
1921
[
2022
['URL', 'http://tomcat.apache.org/'],
@@ -25,7 +27,7 @@ def initialize
2527

2628
register_options(
2729
[
28-
Opt::RPORT(8180),
30+
Opt::RPORT(8180), # 8180 is default for FreeBSD. All other OSes it's 8080
2931
OptString.new('TOMCAT_USER', [ false, 'The username to authenticate as', '']),
3032
OptString.new('TOMCAT_PASS', [ false, 'The password for the specified username', '']),
3133
], self.class)

0 commit comments

Comments
 (0)