Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 12-27-2003, 01:09 PM   #1
xato
Confirmed User
 
Join Date: Mar 2003
Posts: 1,205
who knows how to block download mangers...

like
Download Ninja 7.0
Internet Ninja 6.0

??

thanks
xato is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-27-2003, 01:14 PM   #2
Babaganoosh
♥♥♥ Likes Hugs ♥♥♥
 
Babaganoosh's Avatar
 
Industry Role:
Join Date: Nov 2001
Location: /home
Posts: 15,841
Use mod_rewrite and redirect them based on HTTP_USER_AGENT.
__________________
I like pie.
Babaganoosh is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-27-2003, 01:19 PM   #3
xato
Confirmed User
 
Join Date: Mar 2003
Posts: 1,205
Quote:
Originally posted by Armed & Hammered
Use mod_rewrite and redirect them based on HTTP_USER_AGENT.
how is that done exactly?

thanks in advance
xato is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-27-2003, 01:35 PM   #4
jact
Confirmed User
 
Join Date: Sep 2002
Location: Oakville, Canada
Posts: 9,134
For some reason I've never had luck blocking Internet Ninja, I probably have the wrong syntax for my mod_rewrite rules, but still I have a lot of trouble with them.

mod_rewrite is usually the easiest and fastest way to take care of them, just redirect based on user agent.
__________________
Free agent
jact is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-27-2003, 02:00 PM   #5
Project-Shadow
Confirmed User
 
Industry Role:
Join Date: Feb 2003
Posts: 7,340
RewriteEngine on

RewriteCond %{HTTP_USER_AGENT} ^.*\[Ww\]eb\[Bb\]andit.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Ants.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*attach.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Backweb.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Bandit.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*BlackWidow.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Bot\ mailto:[email protected].* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Buddy.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*CherryPicker.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*ChinaClaw.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Collector.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Copier.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Crawler.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Crescent.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*DA\ 4.0.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*DA\ 5.0.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*DA\ 5.3.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*DIIbot.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*DISCo.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Download\ Demon.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Download\ Ninja.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Downloader.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Drip.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*eCatch.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*EirGrabber.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*EmailCollector.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*EmailSiphon.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*EmailWolf.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Express\ WebPictures.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*ExtractorPro.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*EyeNetIE.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*FileHound.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*FlashGet.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*GetLeft\ 1.0.5.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*GetLeft\ 1.3.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*GetRight.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Gets.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Go!Zilla.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Go-Ahead-Got-It.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*gotit.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Grabber.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*GrabNet.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Grafula.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*HMView.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*HTTrack.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*ia_archiver.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*IBrowse.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Image\ Stripper.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Image\ Sucker.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*InterGET.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Internet\ Ninja.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Internet\ Ninja.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Internet\ Ninja\ 4.0* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Internet\ Ninja\ 5.0* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Internet\ Ninja\ 6.0* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*JetCar.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*JOC.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*JOC\ Web\ Spider.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*JustView.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*larbin.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*leech.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*LeechFTP.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*lftp.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*likse.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Lickity.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*LinkWalker.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Link\ Sleuth.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Magnet.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Mag-Net.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Mass\ Downloader.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Memo.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Microsoft.URL.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*MIDown\ tool.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Mirror.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Mister\ PiX.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Mozilla.*NEWT.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Navroad.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*NearSite.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Net\ Vampire.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*NetAnts.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*NetCaptor\ 6.0P* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*NetNinja.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*NetSpider.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*NetZIP.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*NICErsPRO.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Ninja.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Octopus.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Offline.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*PageGrabber.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Papa\ Foto.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*pcBrowser.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*PicaLoader* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Pockey.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*psbot.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Pump.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*RealDownload.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Reaper.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Recorder.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*ReGet.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Siphon.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*sitecheck.internetseer.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*SiteSnagger.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Slurp.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*SmartDownload.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Snagger.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Snake.*$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*SpaceBison.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Stripper.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Sucker.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*SuperBot.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*SuperHTTP.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Surfbot.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*tAkeOut.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Teleport.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Teleport\ Pro.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*IUPUI.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Vacuum.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*VoidEYE.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Web\ Image\ Collector.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Web\ Sucker.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*WebAuto.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*WebEMailExtrac.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*WebFetch.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*WebReaper.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*WebSauger.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Website\ eXtractor.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Webster.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*WebStripper.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*WebWhacker.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*WebZIP.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Whacker.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Widow.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Xaldon\ WebSpider.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Zeus.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Zeus.*Webster.*
RewriteRule ^.*$ http://www.google.com [L,R]

-------

Have fun
Project-Shadow is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.