<div>Hi,</div>
<div>&nbsp;</div>
<div>I am executing following lines of code:</div>
<div>&nbsp;</div>
<div>def WEP40_KEY(n):<br>&nbsp;&nbsp;params = urllib.urlencode({})<br>&nbsp;&nbsp;headers = {&quot;Connection&quot;: &quot;Keep-Alive&quot;,&quot;Authorization&quot;: &quot;&quot;}<br>&nbsp;&nbsp;conn = httplib.HTTPConnection(HOST)<br>&nbsp;&nbsp;conn.request
(&quot;GET&quot;, &quot;/w_sec.htm HTTP/1.1&quot;, params, headers)<br>&nbsp;&nbsp;&nbsp; response = conn.getresponse()<br>&nbsp;&nbsp;&nbsp; print response.status, response.reason<br>&nbsp;params = urllib.urlencode({&#39;wsecurity&#39;:&quot;WEP&quot;,&#39;wep_auth&#39;:&quot;Shared+Key&quot;,&#39;wepenc&#39;:&quot;128+bit&quot;,&#39;wep_key_no&#39;:&quot;key1&quot;,&#39;ascii_key1&#39;:&quot;12345678901234567890123456&quot;,&#39;ascii_key2&#39;:&quot;&quot;,&#39;ascii_key3&#39;:&quot;&quot;,&#39;ascii_key4&#39;:&quot;&quot;,&#39;passphrase&#39;:&quot;&quot;,&#39;wpa_psk&#39;:&quot;12345678&quot;,&#39;key_lifetime&#39;:&quot;65535&quot;,&#39;wpa_enc&#39;:&quot;TKIP&quot;,&#39;save&#39;:&quot;Save&quot;,&#39;message&#39;: &quot;&quot;,&#39;todo&#39;:&quot;&quot;})
<br>&nbsp;&nbsp;&nbsp; headers = {&quot;Connection&quot;: &quot;Keep-Alive&quot;,&quot;Authorization&quot;: &quot;&quot;}<br>&nbsp;&nbsp;&nbsp; conn = httplib.HTTPConnection(HOST)<br>&nbsp;&nbsp;&nbsp; conn.request(&quot;POST&quot;, &quot;w_sec.htm&quot;, params, headers)
<br>&nbsp;&nbsp;&nbsp; response = conn.getresponse()<br>&nbsp;&nbsp;&nbsp; print response.status, response.reason<br>&nbsp;&nbsp;&nbsp; conn.close()<br>&nbsp;&nbsp;&nbsp; <br>WEP40_KEY(sys.argv)</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>I am getting following error:</div>
<div>&nbsp;</div>
<div>
<p>C:\Documents and Settings\Govindadya\Desktop\Marvell&gt;Marvell_WEP40.py 192.168.1.<br>16<br>&nbsp; File &quot;C:\Documents and Settings\Govindadya\Desktop\Marvell\Marvell_WEP40.py&quot;,<br>line 41<br>&nbsp;&nbsp;&nbsp;<strong> response = 
conn.getresponse()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>IndentationError: unindent does not match any outer indentation level</strong></p>
<p><strong></strong>&nbsp;</p>
<p>Can anybody help me out on this?</p>
<p>Best Regards,</p>
<p>Govind</p>
<p>&nbsp;</p></div>