Displaying 4 results from an estimated 4 matches for "nt_hash".
Did you mean:
dt_hash
2018 Dec 27
1
FreeBSD, Libmd5, samba 4.9.4 & "smbclient -L" (using password) -> core dump
...gt;, kr_buf=kr_buf at entry=0x7fffffffd320 "\a\203f\243y6f\331\063$\027\004 at CD\252\005\226\263\003\b") at ../libcli/auth/smbencrypt.c:241
#5 0x00000008092a0807 in SMBNTLMv2encrypt_hash (mem_ctx=mem_ctx at entry=0x811a1d780, user=<optimized out>, domain=<optimized out>,
nt_hash=nt_hash at entry=0x811a49430 "\347\305\335 ", <incomplete sequence \350\356>, server_chal=server_chal at entry=0x7fffffffd3f0,
server_timestamp=server_timestamp at entry=0x811a85a08, names_blob=0x7fffffffd530, lm_response=0x7fffffffd410, nt_response=0x7fffffffd420, lm_session_ke...
2020 Oct 13
2
[Fwd: Joining AD - wrong DNS name, wrong keytab]
...password: struct secrets_domain_info1_password
change_time : Fri Oct 2 04:38:44 PM 2020 CEST
change_server : 'it-czbrn-pdc102.domain.org'
cleartext_blob : DATA_BLOB length=448
nt_hash: struct samr_Password
hash: ARRAY(16): <REDACTED SECRET VALUES>
salt_data : *
salt_data :
'DOMAIN.ORGhostclient.domain.org'
default_iteration_count : 0x00001000 (4096)...
1997 Dec 16
0
Samba18alpha12 not working as Login for NT-4 workstation
...tations
there are bugs in it. you'd be better off using the BRANCH_NTDOM version.
see the public cvs instructions in http://samba.anu.edu.au/cvs.html and
use a tag of BRANCH_NTDOM.
if you do this, the workstation trust account smbpasswd entries must be of
the format:
saturn1$:65534:lm_hash:nt_hash:0080:
the 0080 is important: see ntdomain.h ACB_xxxx #defines for the reason.
> First here ist what I did:
>
> 1) Compiled Samba with -DNTDOMAIN
ok.
> (Win 95 clients can login)
(-DNTDOMAIN doesn't have anything to do with Win95)
>
> 2) Here is my smb conf file
&g...
2004 Mar 15
0
join domain without root
...amp;&
+ strncmp(hostname,username,len) == 0
+ ) ) {
+ DEBUG(0, ("set_user_info_pw: Wrong account %s for host %s\n", username, hostname));
+ pdb_free_sam(pwd);
+ return False;
+ }
+ }
+
memset(buf, 0, sizeof(buf));
if (!decode_pw_buffer(pass, buf, 256, &len, nt_hash, lm_hash)) {
@@ -2414,7 +2465,10 @@
DEBUG(5,("set_user_info_pw: pdb_update_sam_account()\n"));
/* update the SAMBA password */
- if(!pdb_update_sam_account(pwd, True)) {
+ if (do_become_root) become_root();
+ ret = pdb_update_sam_account(pwd, True);
+ if (do_become_root) unbecome_r...