document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <rewrite>
  2.     <rules>
  3.         <rule name="Append Basic Authentication" patternSyntax="Wildcard" stopProcessing="true">
  4.                     <match url="*" />
  5.                     <conditions>
  6.                         <add input="{REQUEST_METHOD}" pattern="PUT" />
  7.                     </conditions>
  8.                     <serverVariables>
  9.                         <set name="HTTP_Authorization" value="Basic Z3JlZ29yeTpncmVnb3J5" replace="false" />
  10.                     </serverVariables>
  11.                     <action type="None" />
  12.         </rule>
  13.     </rules>
  14. </rewrite>
');