diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-01-16 08:45:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:53 -0500 |
commit | 2e33042aa7587cd249967cc2f721b50b7e698746 (patch) | |
tree | 69688cf5c6963525b1463b5854a2571ae29e5d84 /source4 | |
parent | 2b6aeecad79ad48ae3431fc527501e5fe9bc1be6 (diff) | |
download | samba-2e33042aa7587cd249967cc2f721b50b7e698746.tar.gz samba-2e33042aa7587cd249967cc2f721b50b7e698746.tar.bz2 samba-2e33042aa7587cd249967cc2f721b50b7e698746.zip |
r4774: It appears the SensitiveData contains the password history, as the
remaining data. Pity - I was looking for kerberos keys :-)
Andrew Bartlett
(This used to be commit 37a81aad74b9f7e982469cd36e56e6f9608b9123)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index 66c41fa8bc..dbbca48c9a 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -327,9 +327,20 @@ interface netlogon } netr_USER_KEY16; typedef struct { + uint16 nt_length; + uint16 nt_size; + uint32 nt_flags; + uint16 lm_length; + uint16 lm_size; + uint32 lm_flags; + uint8 nt_history[nt_length]; + uint8 lm_history[lm_length]; + } netr_PasswordHistory; + + typedef struct { netr_USER_KEY16 lmpassword; netr_USER_KEY16 ntpassword; - + netr_PasswordHistory lmhistory; } netr_USER_KEYS2; typedef struct { |