View Single Post
Old 04-08-2008, 01:36   #13230
pseudonym
Inactive
 
Join Date: Apr 2008
Posts: 76
pseudonym is on a distinguished roadpseudonym is on a distinguished road
Re: Virgin Media Phorm Webwise Adverts [Updated: See Post No. 1, 77, 102 & 797]

Quote:
Originally Posted by madslug View Post
It must be my browser spoofing that messes up something in the scripts (the actual browser is not on the accepted list)
Code:
Request #286
GET http://a.webwise.net/services/OO?op=in&success_url=http%3A%2F%2Fwww.webwise.com%2Fprivacy%2Fopt%2Fin-confirm.html&fail_url=http%3A%2F%2Fwww.webwise.com%2Findex.php&already_url=http%3A%2F%2Fwww.webwise.com%2Findex.php
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)
Accept-Charset: utf-8;q=0.9,utf-16;q=0.5,ISO-8859-1;q=0.7,*;q=0.6
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5

Response #286
Status 403; http://a.webwise.net/services/OO?op=in&success_url=http%3A%2F%2Fwww.webwise.com%2Fprivacy%2Fopt%2Fin-confirm.html&fail_url=http%3A%2F%2Fwww.webwise.com%2Findex.php&already_url=http%3A%2F%2Fwww.webwise.com%2Findex.php
Server: Apache
Connection: close
Date: Sun, 03 Aug 2008 22:28:08 GMT
Content-Length: 213
Content-Type: text/html; charset=iso-8859-1
P3p: CP="NOI DSP LAW CURa DEVa TAIa PSAa PSDa OUR STP BUS UNI COM NAV INT"
There's no "Referer:" header in your browser's request so their opt-in script is rejecting it with an error 403.

Quote:
I can visit the success_url. Browser gives me the same message I see on the home page: "line 179:Null value" which I assume is the ISP sniffing or some other testing.

I've previously noticed that error too - there's a div ID= uslocalselect on the web page, but no element called uklocalselect so the script below fails.
Code:
var res = '<a href="/privacy/policy/index.html" onClick="return setLocale(\'us\');"><img src="/images/flag-us-' + usstat + '.gif" name="Image98" width="23" height="15" border="0" id="Image98" onMouseOver="MM_swapImage(\'Image98\',\'\',\'/images/flag-us-on.gif\',1)" onMouseOut="MM_swapImgRestore()"></a>';

	document.getElementById('uslocaleselect').innerHTML = res;



	var res = '<a href="/privacy/policy/index.html" onClick="return setLocale(\'uk\');"><img src="/images/flag-uk-' + ukstat + '.gif" name="Image99" width="23" height="15" border="0" id="Image99" onMouseOver="MM_swapImage(\'Image99\',\'\',\'/images/flag-uk-on.gif\',1)" onMouseOut="MM_swapImgRestore()"></a>';

	document.getElementById('uklocaleselect').innerHTML = res;
pseudonym is offline