1<testcase> 2<info> 3<keywords> 4HTTP 5HTTP POST 6HTTP proxy 7HTTP proxy NTLM auth 8</keywords> 9</info> 10 11# Server-side 12<reply> 13 14<data> 15HTTP/1.1 407 Authorization Required swsclose 16Server: Apache/1.3.27 (Darwin) PHP/4.1.2 17Proxy-Authenticate: Blackmagic realm="gimme all yer s3cr3ts" 18Proxy-Authenticate: Basic realm="gimme all yer s3cr3ts" 19Proxy-Authenticate: NTLM 20Content-Type: text/html; charset=iso-8859-1 21Connection: close 22 23This is not the real page 24</data> 25 26# this is returned first since we get no proxy-auth 27<data1001> 28HTTP/1.1 407 Authorization Required to proxy me my dear 29Proxy-Authenticate: NTLM TlRMTVNTUAACAAAAAgACADAAAACGggEAc51AYVDgyNcAAAAAAAAAAG4AbgAyAAAAQ0MCAAQAQwBDAAEAEgBFAEwASQBTAEEAQgBFAFQASAAEABgAYwBjAC4AaQBjAGUAZABlAHYALgBuAHUAAwAsAGUAbABpAHMAYQBiAGUAdABoAC4AYwBjAC4AaQBjAGUAZABlAHYALgBuAHUAAAAAAA== 30Content-Length: 34 31 32Hey you, authenticate or go away! 33</data1001> 34 35# This is supposed to be returned when the server gets the second 36# Authorization: NTLM line passed-in from the client 37<data1002> 38HTTP/1.1 200 Things are fine in proxy land swsclose 39Server: Microsoft-IIS/5.0 40Content-Type: text/html; charset=iso-8859-1 41Content-Length: 42 42 43Contents of that page you requested, sir. 44</data1002> 45 46<datacheck> 47HTTP/1.1 407 Authorization Required swsclose 48Server: Apache/1.3.27 (Darwin) PHP/4.1.2 49Proxy-Authenticate: Blackmagic realm="gimme all yer s3cr3ts" 50Proxy-Authenticate: Basic realm="gimme all yer s3cr3ts" 51Proxy-Authenticate: NTLM 52Content-Type: text/html; charset=iso-8859-1 53Connection: close 54 55HTTP/1.1 407 Authorization Required to proxy me my dear 56Proxy-Authenticate: NTLM TlRMTVNTUAACAAAAAgACADAAAACGggEAc51AYVDgyNcAAAAAAAAAAG4AbgAyAAAAQ0MCAAQAQwBDAAEAEgBFAEwASQBTAEEAQgBFAFQASAAEABgAYwBjAC4AaQBjAGUAZABlAHYALgBuAHUAAwAsAGUAbABpAHMAYQBiAGUAdABoAC4AYwBjAC4AaQBjAGUAZABlAHYALgBuAHUAAAAAAA== 57Content-Length: 34 58 59HTTP/1.1 200 Things are fine in proxy land swsclose 60Server: Microsoft-IIS/5.0 61Content-Type: text/html; charset=iso-8859-1 62Content-Length: 42 63 64Contents of that page you requested, sir. 65</datacheck> 66</reply> 67 68# Client-side 69<client> 70<server> 71http 72</server> 73# tool to use 74<tool> 75lib548 76</tool> 77<features> 78NTLM 79!SSPI 80debug 81proxy 82</features> 83 <name> 84HTTP proxy auth NTLM with POST data from CURLOPT_POSTFIELDS 85 </name> 86 <setenv> 87# we force our own host name, in order to make the test machine independent 88CURL_GETHOSTNAME=curlhost 89# we try to use the LD_PRELOAD hack, if not a debug build 90LD_PRELOAD=%PWD/libtest/.libs/libhostname.so 91 </setenv> 92 <command> 93http://test.remote.example.com/path/548 http://%HOSTIP:%HTTPPORT testuser:testpass 94</command> 95<precheck> 96chkhostname curlhost 97</precheck> 98</client> 99 100# Verify data after the test has been "shot" 101<verify> 102<strip> 103^User-Agent: curl/.* 104</strip> 105<protocol> 106POST http://test.remote.example.com/path/548 HTTP/1.1 107Host: test.remote.example.com 108User-Agent: curl/7.13.2-CVS (i686-pc-linux-gnu) libcurl/7.13.2-CVS OpenSSL/0.9.7e zlib/1.2.2 libidn/0.5.13 109Accept: */* 110Proxy-Connection: Keep-Alive 111Content-Length: 36 112Content-Type: application/x-www-form-urlencoded 113 114this is the blurb we want to upload 115POST http://test.remote.example.com/path/548 HTTP/1.1 116Host: test.remote.example.com 117Proxy-Authorization: NTLM TlRMTVNTUAABAAAABoIIAAAAAAAAAAAAAAAAAAAAAAA= 118User-Agent: curl/7.13.2-CVS (i686-pc-linux-gnu) libcurl/7.13.2-CVS OpenSSL/0.9.7e zlib/1.2.2 libidn/0.5.13 119Accept: */* 120Proxy-Connection: Keep-Alive 121Content-Length: 0 122Content-Type: application/x-www-form-urlencoded 123 124POST http://test.remote.example.com/path/548 HTTP/1.1 125Host: test.remote.example.com 126Proxy-Authorization: NTLM TlRMTVNTUAADAAAAGAAYAEAAAAAYABgAWAAAAAAAAABwAAAACAAIAHAAAAAIAAgAeAAAAAAAAAAAAAAAhoIBADQzMjE1MzIxAAAAAAAAAAAAAAAAAAAAADj3hs3u3j0kgJqCrLM+74BmaoNHDfIJjHRlc3R1c2VyY3VybGhvc3Q= 127User-Agent: curl/7.13.2-CVS (i686-pc-linux-gnu) libcurl/7.13.2-CVS OpenSSL/0.9.7e zlib/1.2.2 libidn/0.5.13 128Accept: */* 129Proxy-Connection: Keep-Alive 130Content-Length: 36 131Content-Type: application/x-www-form-urlencoded 132 133this is the blurb we want to upload 134</protocol> 135</verify> 136</testcase> 137