Bad Robots, site rippers

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Captcha
    Confirmed User
    • Aug 2009
    • 1375

    #1

    Bad Robots, site rippers

    I am sick with bad robots, site rippers etc
    Lots and lots of "noref" hits in ATX!......... I just launch a new site and get fucked with this shit again.... has anyone a list up to date like this one to block this shit?

    http://www.javascriptkit.com/howto/htaccess13.shtml
  • JamesM
    Confirmed User
    • Nov 2012
    • 732

    #2
    bots are smart these days, they use fake user agent.
    anyways why are worried, is it because of bandwidth ? just curious.

    popular sites seems to get this.


    Ex GF Films | Grab Dollars
    Up To 80% Rev-Share | 255 Day Cookie | Legal Content | Variety of Promo Tools | CCBill Program | GF Niche
    james[at]grabdollars[dot]com | ICQ::611-99-zero-zero-20

    Comment

    • Barry-xlovecam
      It's 42
      • Jun 2010
      • 18083

      #3
      Longstanding problem
      her are a few links I found that looked interesting
      http://www.wizcrafts.net/exploited-s...blocklist.html

      http://antiscraper.com/

      From my experience it is ''wack-a-mole'' you need the time or manpower to grep the webserver logs looking for page requests ( or head request ) with no requests for images -- that is a dead give away. Then you have to be careful not to disallow legitimate search engine bots.

      you can look for unusual activity ...

      using SSH with permissions (in user or root depends on the log's location);

      tail -5000 access.log | awk '{print $1}' | sort | uniq -c | sort -n | tail >tofilename
      tail -5000 access.log | awk '{print $1}' | sort | uniq -c | sort -r | tail >tofilename
      grep 'GET' access.log | cut -d' ' -f1 | sort | uniq -c | sort -r >tofilename
      Welcome to the dark side ...

      Comment

      Working...