NoScript version?nagan wrote:Suddenly having a lot of incidences of "livejasmine" popunders despite having enabled ^http in the popunder preferences.
Some pop-under..
- Giorgio Maone
- Site Admin
- Posts: 9524
- Joined: Wed Mar 18, 2009 11:22 pm
- Location: Palermo - Italy
- Contact:
Re: Some pop-under..
Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
Re: Some pop-under..
I find that NS has auto updated to 1.9.9.81. The incidence surely was there at some dirty sites in the earlier version. Not sure of the updated version though..Will report back..Giorgio Maone wrote: NoScript version?
Dreams are REAL possibilities. Pursue them with zest and you can make them HAPPEN!
You are GOD.Realize THAT!
You are GOD.Realize THAT!
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
Re: Some pop-under..
Not so suddenly actually. Quite pervasive for some time now.Suddenly having a lot of incidences of "livejasmine" popunders despite having enabled ^http in the popunder preferences.
All noscript.surrogate.popunder.* Preferences at defaults.
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.19) Gecko/20110420 SeaMonkey/2.0.14 Pinball NoScript FlashGot AdblockPlus
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.3a5pre) Gecko/20100527 SeaMonkey/2.1a2pre
- Giorgio Maone
- Site Admin
- Posts: 9524
- Joined: Wed Mar 18, 2009 11:22 pm
- Location: Palermo - Italy
- Contact:
Re: Some pop-under..
Maybe they've changed the way they create those.
Could you provide me with reproducible test cases (in PM, if you prefer)?
Could you provide me with reproducible test cases (in PM, if you prefer)?
Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
Re: Some pop-under..
Yeah, I'll have to get some together.
Quite common (again) on porn sites.
Has never really bothered me, so I hadn't even mentioned it before.
I'll throw it in a post in Asgard - but perhaps not too soon, like next couple days?
(I've got way too many window/tabs open now & can't keep track of what I've got now. Perhaps I need tabs in a sidebar
.)
Quite common (again) on porn sites.
Has never really bothered me, so I hadn't even mentioned it before.
I'll throw it in a post in Asgard - but perhaps not too soon, like next couple days?
(I've got way too many window/tabs open now & can't keep track of what I've got now. Perhaps I need tabs in a sidebar

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.19) Gecko/20110420 SeaMonkey/2.0.14 Pinball NoScript FlashGot AdblockPlus
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.3a5pre) Gecko/20100527 SeaMonkey/2.1a2pre
Re: Some pop-under..
This pops up (under) while getting linked to pictures @ imagebam.com from very "respectable" sites.
Dreams are REAL possibilities. Pursue them with zest and you can make them HAPPEN!
You are GOD.Realize THAT!
You are GOD.Realize THAT!
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
- Giorgio Maone
- Site Admin
- Posts: 9524
- Joined: Wed Mar 18, 2009 11:22 pm
- Location: Palermo - Italy
- Contact:
Re: Some pop-under..
&Then you could give me at least one link to reproduce, couldn't you?nagan wrote:This pops up (under) while getting linked to pictures @ imagebam.com from very "respectable" sites.
Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
Re: Some pop-under..
Giorgio ,PMed you..
Dreams are REAL possibilities. Pursue them with zest and you can make them HAPPEN!
You are GOD.Realize THAT!
You are GOD.Realize THAT!
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
- Giorgio Maone
- Site Admin
- Posts: 9524
- Joined: Wed Mar 18, 2009 11:22 pm
- Location: Palermo - Italy
- Contact:
Re: Some pop-under..
@nagan:
Regarding the first issue, the window is opened ad-hoc by the handler of the "ENTER" button.
I've modified the popunder surrogate replacement to make it take care of the whole verification overlay:
noscript.surrogate.popunder.replacement=
You can change it manually now, but it will be included in next release anyway.
Regarding your second issue, that's not a popup but just a "site exit redirector" which randomly sends you to advertisers instead of the real content.
You can work around with something like https://addons.mozilla.org/en-US/firefox/addon/13246/
Regarding the first issue, the window is opened ad-hoc by the handler of the "ENTER" button.
I've modified the popunder surrogate replacement to make it take care of the whole verification overlay:
noscript.surrogate.popunder.replacement=
Code: Select all
var cookie=document.__proto__.__lookupGetter__('cookie');document.__proto__.__defineGetter__('cookie',function() { var c='; popunder=yes; popundr=yes; setover18=1';return (cookie.apply(this).replace(c,'')+c).replace(/^; /, '')});var open=window.__proto__.open;window.__proto__.open=function(url,target,features){try{if(!(/^_(?:top|parent|self)$/i.test(target)||target in frames)){var suspSrc,frame,ff=[]; for(var f,ev,aa=arguments;aa.callee && (f=aa.callee.caller) && ff.indexOf(f)<0;ff.push(f)){aa=f.arguments;if(!aa)break;ev=aa[0];if(!suspSrc) suspSrc=/(?:\bpopunde?r|\bfocus\b.*\bblur|\bblur\b.*\bfocus|[pP]uShown)\b/.test(f.toSource());if(ev instanceof MouseEvent && ev.type=='click' && ev.button===0 && (ev.currentTarget===document || ev.currentTarget instanceof HTMLBodyElement) && !(ev.target instanceof HTMLAnchorElement && ev.target.href && (ev.target.href.indexOf(url)===0 || url.indexOf(ev.target.href)===0))){if(suspSrc){frame=document.body.appendChild(document.createElement('iframe'));frame.src='data:text/html,';frame.style.display='none';window.setTimeout(function(){frame.parentNode.removeChild(frame);},1000);var w=frame.contentWindow;w.blur=function(){};return w;}}}}}catch(e){}return open.apply(this, arguments);};
Regarding your second issue, that's not a popup but just a "site exit redirector" which randomly sends you to advertisers instead of the real content.
You can work around with something like https://addons.mozilla.org/en-US/firefox/addon/13246/
Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3