NTLM authentication --- Has anyone figured out how to escape passwords with special characters?
I have a password that has a special character in it and it refuses to work, no matter what I try. Any ideas?
I can make it work via the command line / curl, so I know I'm close.
This works from the command line:
export blah="domain\blahblah
asswordwith@sign"
curl --ntlm -u "${blah}" http://servername
I have a password that has a special character in it and it refuses to work, no matter what I try. Any ideas?
I can make it work via the command line / curl, so I know I'm close.
This works from the command line:
export blah="domain\blahblah
asswordwith@sign"curl --ntlm -u "${blah}" http://servername
Comment