summaryrefslogtreecommitdiff
path: root/source3/pipenetlog.c
AgeCommit message (Collapse)AuthorFilesLines
1997-10-17pipenetlog.c lsaparse.c smb.h :Luke Leighton1-10/+20
SAM logon sorting. too many buffer pointers. added in the missing switch value (value of 3). dealing with the buffer pointers to the user info structure in a slightly different way. (This used to be commit 7993e17c9a1edddae6407d3f12790c461def705a)
1997-10-17smbparse.c smb.h :Luke Leighton1-0/+1
uni_max_len and uni_str_len are the other way round, in UNIHDR. util.c : increased the show_msg() data size from 256 bytes to 512 bytes: the LSA SAM Logon response can be about 500 bytes long. pipenetlog.c : forgot to set the authoritative field to 1. (This used to be commit 71c6678cd7ffe30a5da27766cf99147e1921feae)
1997-10-17set the wrong info level (0x0C00 0000 instead of 0xC000 0000) so thatLuke Leighton1-1/+1
nt got confused and thought that the server password had been set instead of refused. this is for the SRV_PWSET response. (This used to be commit f9fbcad42ec20da56466054e1984e391d03b3204)
1997-10-16dealing with some stack overflow bug somewhere around the use ofLuke Leighton1-10/+12
deal_with_credentials() by moving important code to the beginning of the function :-) :-) :-). the new seed (old_cred + time + 1) was getting corrupted. (This used to be commit dab35ce5d61d53bce6ede44e56d9393645c0d67e)
1997-10-16inside the auth 2 response bits, i wasn't storing the received clientLuke Leighton1-3/+3
credentials for the calculation of the next credentials: i was storing the auth 2 calculated credentials. oops. (This used to be commit eb81fae874383f77ad72c0f7686b8c49e645b0b8)
1997-10-15smb.h smbparse.c pipenetlog.c :Luke Leighton1-8/+28
whoops, the SAM Logon structure was wrong. updated this, and cifsntdomain.txt. more debug info in pipenetlog.c. the crash is somewhere around deal_with_credentials(). byteorder.h : put in uint8, uint16 and uint32 typecasts around debug info, because sign extending was resulting in ffffffe8 being displayed instead of e8. credentials.c : some debugging info, because i'm tracking a coredump. without gdb. nothing like making things difficult. reply.c : whoops, missed this (important) bit from paul's code, which tells the NT workstation that the MACHINE$ entry doesn't already exist, and we're going to create a default entry with a password "machine" right now. proto.h: the usual. (This used to be commit ed606bc7d4e6fb1091e527ea70a3e950d50a1db4)
1997-10-15fixed a stack overflow bug in api_lsa_req_chal()Andrew Tridgell1-1/+1
changed the order of arguments to smbhash() in credentials.c. Luke, when you changed from E1() to smbhash() you didn't notice that the arguments are in a different order. This is why your new code was failing. NT logon still fails, but now gets to SAMLOGON. It shouldn't take much to get it working now. (This used to be commit 708edc348f0fb81d9c918e4bf857f339a13a3781)
1997-10-14credentials, query info reply.Luke Leighton1-19/+20
(This used to be commit 9b095887df204393090d7da9a47508685ddd5163)
1997-10-14changed *(uint32*)(clnt_cred) to SIVAL(clnt_cred, ....)Luke Leighton1-1/+4
(This used to be commit 0056b154435e9d2a3fd2be37f7c3afd9e3fbfd87)
1997-10-13put a check around become_user(). doesn't authenticate the user, but doesn'tLuke Leighton1-1/+5
quit the whole pipe, either... (This used to be commit 14f0c2ddb05a690e671efad8c47da9ff1e39c8ce)
1997-10-13resolving some of the confusion over credentials.Luke Leighton1-7/+10
(This used to be commit 9d1f45ca6bbdeeef448ccb55e1275c6f9ec59820)
1997-10-13split pipes.c down into util, netlog and ntlsa.Luke Leighton1-0/+610
(This used to be commit 8fe02c239d70497af449ed0cdf1a32de10021ba1)