aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ntlmssp.c
AgeCommit message (Collapse)AuthorFilesLines
2005-08-13some more gmemchunk -> se_alloc() updatesRonnie Sahlberg1-26/+3
there are only 5 gmemchunks left but they have different litetime for their allocations than the 100+ ones that have been removed. The remaining 5 should be converted some other way. svn path=/trunk/; revision=15328
2005-08-10convert some tvb_fake_unicode() to tvb_get_ephemeral_faked_unicode()Ronnie Sahlberg1-4/+2
svn path=/trunk/; revision=15272
2005-07-24Constify to remove a bunch of warnings. Add some casts to squelchGuy Harris1-1/+1
(presumably-)harmless-but-otherwise-unremovable const-to-nonconst warnings. In the TACACS dissector, clean up the variables used in option parsing to avoid some const-to-nonconst warnings. Clean up some white space. svn path=/trunk/; revision=15043
2005-07-11In NTLMSP_AUTH messages, include the domain name and user name in theGuy Harris1-7/+17
Info column. svn path=/trunk/; revision=14902
2005-06-20move one function only used by SPNEGO to packet-spnego.cRonnie Sahlberg1-1/+0
remove the include of <epan/asn1.h> from kerberos, ntlmssp and gssapi since they no longer need to include that file. svn path=/trunk/; revision=14709
2005-03-10add support to decrypt and dissect sign-and-sealed traffic.Ronnie Sahlberg1-1/+1
(cifs: dc's talking to eachother and when longhorn comes out: anyone wanting to talk dce to a dc!) ((this is an incredibly advanced feature well worthy of mentioning in NEWS)) svn path=/trunk/; revision=13690
2005-03-10change the signature for the functions to decrypt data for theRonnie Sahlberg1-4/+6
dcerpc_auth_subdissector_fns structure. the SignAndSeal decryption (which works really well) needs this. svn path=/trunk/; revision=13688
2005-02-09Move the following files from /trunk to /trunk/epan:Lars Roland1-1/+1
asn1.[ch] follow.[ch] ptvcursor.[ch] reassemble.[ch] xmlstub.[ch] fix #include statements accordingly. svn path=/trunk/; revision=13366
2005-02-02From Jon Ringle:Anders Broman1-6/+6
1) Added a setup_frame parameter to conversation_t 2) Used the conversation_t next to maintain a list of conversations with the same src/dest tuple but different setup_frame number. 3) Changed the signature of find_conversation() and conversation_new() to pass in the frame number. 4) Adjusted packet-sdp to select RTP conversation if both m=audio and m=image are present, and T.38 conversation if only m=image is present. I expect that RTP/T.38 dissecting to be better, but I don't have a way to generate T.38 packets. svn path=/trunk/; revision=13243
2004-09-27Move the DES, MD4, MD5, and RC4 source files and headers into epan, andGuy Harris1-3/+3
make the source files all include the corresponding header files (so that the declarations in the headers have to match the definitions in the source files in order for compilation to succeed). svn path=/trunk/; revision=12116
2004-09-27Move prefs.c and prefs.h into the epan subdirectory.Guy Harris1-1/+1
svn path=/trunk/; revision=12115
2004-08-18Samba's smbclient doesn't put the extra stuff after the list of names inGuy Harris1-6/+11
the NTLMv2 blob, so don't bother dissecting it for now - perhaps we should see how much of the NTLMv2 response remains, and, if there is any, put it into the tree as extra data. svn path=/trunk/; revision=11765
2004-08-15Dissect the last unknown item at the end of the NTLMv2 blob.Guy Harris1-1/+7
svn path=/trunk/; revision=11740
2004-08-04Fix a URL.Guy Harris1-1/+1
svn path=/trunk/; revision=11600
2004-08-03Move a bunch of stuff that's more Windows-related than SMB-related toGuy Harris1-1/+2
"packet-windows-common.[ch]". svn path=/trunk/; revision=11592
2004-08-02Don't drag in a huge pile of headers in "packet-smb-common.h"; rely onGuy Harris1-0/+3
the files including it to include what they need. svn path=/trunk/; revision=11588
2004-08-02Move the NTLMv2 blob stuff back into packet-ntlmssp.c - it's moreGuy Harris1-6/+179
NTLMSSP-related than SMB-related, and documents about NTLMSSP talk about it, so it's a little more convenient to keep all that stuff together - and export it through a packet-ntlmssp.h header. svn path=/trunk/; revision=11585
2004-08-02Put in some comments based on information in theGuy Harris1-2/+22
http://davenport.sourceforge.net/ntlm.html document. svn path=/trunk/; revision=11583
2004-08-02http://davenport.sourceforge.net/ntlm.html says that the 0x80000000 isGuy Harris1-3/+18
"Negotiate 56", meaning that 56-bit encryption is supported - and that "Negotiate 128" means that 128-bit encryption is supported, so note that in the blurb for that flag. It also says that the values for "Request Init Response", "Request Accept Response", and 'Request Non-NT Session Key" are a factor of 16 away from what our #defines say they are, and that 0x000[124]0000 are "Target Type {Domain,Server,Share}". Note that in a comment. svn path=/trunk/; revision=11582
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+1612
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410