ldapcoder

Results 7 comments of ldapcoder

Thanks, that was very helpful, as Wireshark is now showing good values for the responseToken. While the network trace now looks correct, the client is still getting an 82 (local...

LDAP Result code 82 is unfortunately a very generic LDAP error code with description "local error". In the past, with regards to Kerberos failures, I've seen this error code for...

The client and server are both Windows servers. Please let me know what to do to gather the necessary logs, and which server (client, server, or both) that you need...

I did as you requested on the server running the LDAP service and found many iterations of the following entry in the resulting 9mb Kerberos.etl event log file. They occurred...

Attached is the zipped kerberos.etl file from the client. Thanks again. [Kerberos.zip](https://github.com/dotnet/Kerberos.NET/files/15142572/Kerberos.zip)

Thanks very much! That worked, I now have a server response that my client acknowledges as a successful authentication, which results in an ensuing request. Now, on to figuring out...

I've run into some issues with decoding/decrypting ensuing messages. I've tried using the following code: ``` KrbApReq apReq = KrbApReq.DecodeApplication(message); DecryptedKrbApReq req = new DecryptedKrbApReq(apReq, MessageType.KRB_AP_REQ); req.Decrypt(sessionKey); ``` and am...