Quote:
Originally Posted by CaptJamieHunter
|
I see... Buts that's simply a warning that the page viewed had a URL that contained oix.net, oix.com, phorm.com, webwise.net or webwise.com within the page - it does not mean that you have received a cookie...
Including, for example, this link
http://oix.com/ in this post will cause Dephormation to give it's advisory warning.
edit:
This is how the author of Dephormation is searching at the moment:
Code:
// SEARCH PAGE URL AND PAGE TEXT FOR REFERENCES TO PHORM
if (preferences.getBoolPref("showOIXAdvertAlert"))
{
// v1.2 introduced better regexps, and case insens searches
// v1.3 enhanced search to include full page innerhtml and href
var stringOIXSearchTarget = doc.location.href + " " + doc.body.innerHTML;
dump(stringOIXSearchTarget);
if(
(stringOIXSearchTarget.search(/oix[.]net[/]/i) > -1)
|| (stringOIXSearchTarget.search(/oix[.]com[/]/i) > -1)
|| (stringOIXSearchTarget.search(/phorm[.]com[/]/i) > -1)
|| (stringOIXSearchTarget.search(/webwise[.]net[/]/i) > -1)
|| (stringOIXSearchTarget.search(/webwise[.]com[/]/i) > -1)
)
{
alert(this.strings.getString("PhormSiteWarning"));
}
}
I expect as more information becomes available the search will be refined.