SMTP Commands for "AUTH NTLM"

I cannot find the commands that I need to send for authentication to the SMTP server using NTLM.

I think it looks something like this:

AUTH NTLM <bae64encode something>
334
<bae64encode something>
235
+3
source share
2 answers

You will need a Base64 encoded type 1 message. Read this .

+4
source

I think the following liknk might be useful to you

http://msdn.microsoft.com/en-us/library/cc246870%28v=prot.10%29.aspx

You need to encode everything and follow the NTLM authentication protocol.

+3
source

Source: https://habr.com/ru/post/1696973/


All Articles