|
|
|
|
|
|
![]() |
#151 |
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
|
Just so everyone knows, Jim will be working on a better mousetrap in the coming weeks.
We're on their radar - and it sorta sucks because as soon as Jim comes up with a new idea, it's kinda hard to hide it from them while posting it here on the board so that people can know aobut it ![]() But last I heard, new measures were in the works & programmers were being contacted ![]() |
![]() |
![]() |
![]() |
#152 | |
Rock stars ... is there anything they don't know?
Join Date: Jul 2004
Posts: 11
|
Quote:
If you use the Zango trap in .htacces you will have zango pop up's all over. Remove it ASP. They won. Not a word about that here! Fighting Zango is dangerous. They have support everywhere. I got banned at GFY for fighting AFF-Zango. At our forum at sexyads, ( webmasters only with login ) Aff-Zango is popping up after we started a thread fighting Zango. |
|
![]() |
![]() |
![]() |
#153 |
If something goes wrong at the plant, blame the guy who can't speak English
|
Very nice info..thanks
|
![]() |
![]() |
![]() |
#154 |
I'm normally not a praying man, but if you're up there, please save me Superman!
|
A PHP/htaccess Zango solution
I added this to my pages today:
zango_detect.php - PHP file Code:
<?php if ( stristr ( $_SERVER['HTTP_USER_AGENT'], "zango" ) ): ?> <div id="zango_warning" style="font-family:Arial, Helvetica, sans-serif; font-size: 23px; color: #FFFFFF; background: #f0310b; padding: 10px; width: 600px; position: absolute; left: 50%; top: 50%; margin-top: -38px; margin-left: -300px; z-index:9999; text-align: left;"> <a href="javascript:;" onClick="javascript:document.getElementById('zango_warning').style.display='none';" style="font-size: 11px; color: #fff; float: right; text-decoration: underline;"><strong>close</strong></a> <strong>WARNING: </strong>Your computer is affected with Zango<br /> Learn how to <a href="http://www.adwaresucks.com/zango/" style="color: #fff; font-weight: bold; text-decoration: underline;" target="_blank">completely remove it from your PC</a> </div> <?php endif; ?> Code:
php_value auto_append_file "/path/to/zango_detect.php" This won't work if a the loaded PHP script (http://site.com/page.php) has executed one of those: Code:
exit; exit(); die(); You could auto_prepend_file the script, but it will crash if you have a header("anything") or setcookie() - i.e. if you modify the HTTP headers. It's a lame ass solution, but it has a close button on it, it works on almost every page without modification, it's save script/HTML wise and it still allows your surfers to see your content. That way poor surfers who have no idea wtf is going on won't be redirected, even tho nobody's using Zango to advertise on your pages.
__________________
The tendency is to push it as far as you can -- Fear and Loathing In Las Vegas |
![]() |
![]() |
![]() |
#155 |
I'm normally not a praying man, but if you're up there, please save me Superman!
|
A quick demo
If you have Zango installed or if you can modify your browser to send a user agent name that has the word "zango" in it (case insensitive), you should see a red warning here:
http://www.nudemenblog.com/blog/
__________________
The tendency is to push it as far as you can -- Fear and Loathing In Las Vegas |
![]() |
![]() |
![]() |
|
|