Skip to content

Commit 79d05e6

Browse files
committed
Update default mode option, module name, and description
1 parent d117b98 commit 79d05e6

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

modules/auxiliary/admin/http/web_enrollment_cert.rb

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ class MetasploitModule < Msf::Auxiliary
1010

1111
def initialize(_info = {})
1212
super({
13-
'Name' => 'ESC8 Relay: SMB to HTTP(S)',
13+
'Name' => 'AD/CS Authenticated Web Enrollment Services Module',
1414
'Description' => %q{
15-
This module creates an SMB server and then relays the credentials passed to it
16-
to an HTTP server to gain an authenticated connection. Once that connection is
17-
established, the module makes an authenticated request for a certificate based
18-
on a given template.
15+
Authenticates to the AD/CS Web enrollment service and allows the user to query templates and create
16+
certificates based on available templates.
1917
},
2018
'Author' => [
2119
'bwatters-r7',
@@ -27,7 +25,7 @@ def initialize(_info = {})
2725

2826
register_options(
2927
[
30-
OptEnum.new('MODE', [ true, 'The issue mode.', 'ALL', %w[ALL QUERY_ONLY SPECIFIC_TEMPLATE]]),
28+
OptEnum.new('MODE', [ true, 'The issue mode.', 'SPECIFIC_TEMPLATE', %w[ALL QUERY_ONLY SPECIFIC_TEMPLATE]]),
3129
OptString.new('CERT_TEMPLATE', [ false, 'The template to issue if MODE is SPECIFIC_TEMPLATE.' ], conditions: %w[MODE == SPECIFIC_TEMPLATE]),
3230
OptString.new('TARGETURI', [ true, 'The URI for the cert server.', '/certsrv/' ])
3331
]

0 commit comments

Comments
 (0)