Skip to content

Commit 7c46d4d

Browse files
committed
Updated text to be clearer about the AES kerberos behaviour
1 parent 88bd8f6 commit 7c46d4d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

documentation/modules/auxiliary/admin/smb/change_password.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ This module works with existing sessions (or relaying), especially for Reset use
1111

1212
## Actions
1313

14-
- `RESET` - Reset the target's password without knowing the existing one (requires appropriate permissions)
15-
- `RESET_NTLM` - Reset the target's NTLM hash, without knowing the existing password. This will not update kerberos keys.
16-
- `CHANGE` - Change the password, knowing the existing one.
17-
- `CHANGE_NTLM` - Change the password to a NTLM hash value, knowing the existing password. This will not update kerberos keys.
14+
- `RESET` - Reset the target's password without knowing the existing one (requires appropriate permissions). New AES kerberos keys will be generated.
15+
- `RESET_NTLM` - Reset the target's NTLM hash, without knowing the existing password. AES kerberos authentication will not work until a standard password change occurs.
16+
- `CHANGE` - Change the password, knowing the existing one. New AES kerberos keys will be generated.
17+
- `CHANGE_NTLM` - Change the password to a NTLM hash value, knowing the existing password. AES kerberos authentication will not work until a standard password change occurs.
1818

1919
## Options
2020

modules/auxiliary/admin/smb/change_password.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ def initialize(info = {})
3131
'SideEffects' => [ IOC_IN_LOGS ]
3232
},
3333
'Actions' => [
34-
[ 'RESET', { 'Description' => "Reset the target's password without knowing the existing one (requires appropriate permissions)" } ],
35-
[ 'RESET_NTLM', { 'Description' => "Reset the target's NTLM hash, without knowing the existing password. This will not update kerberos keys." } ],
36-
[ 'CHANGE', { 'Description' => 'Change the password, knowing the existing one.' } ],
37-
[ 'CHANGE_NTLM', { 'Description' => 'Change the password to a NTLM hash value, knowing the existing password. This will not update kerberos keys.' } ]
34+
[ 'RESET', { 'Description' => "Reset the target's password without knowing the existing one (requires appropriate permissions). New AES kerberos keys will be generated." } ],
35+
[ 'RESET_NTLM', { 'Description' => "Reset the target's NTLM hash, without knowing the existing password. AES kerberos authentication will not work until a standard password change occurs." } ],
36+
[ 'CHANGE', { 'Description' => 'Change the password, knowing the existing one. New AES kerberos keys will be generated.' } ],
37+
[ 'CHANGE_NTLM', { 'Description' => 'Change the password to a NTLM hash value, knowing the existing password. AES kerberos authentication will not work until a standard password change occurs.' } ]
3838
],
3939
'DefaultAction' => 'RESET'
4040
)

0 commit comments

Comments
 (0)