Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SMTP commands for "AUTH NTLM"

Tags:

smtp

ntlm

I'm failing at finding the commands I need to send to authenticate to a SMTP server using NTLM.

I think it goes something like:

AUTH NTLM <bae64encode something>
334
<bae64encode something>
235
like image 442
Dylan Avatar asked Dec 30 '22 11:12

Dylan


2 Answers

You need a Base64-encoded Type 1 message. Read this.

like image 114
Jim Avatar answered Jan 25 '23 13:01

Jim


i think the following liknk might be helpful for you

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

You need to encode everything and follow NTLM authentifaction protocol.

like image 39
Daniel Aguilera Avatar answered Jan 25 '23 11:01

Daniel Aguilera