Anything to stop this?

Discussion in 'Site & Server Administration' started by agentvic, Oct 2, 2007.

  1. #1
    I have a bot or something that has been continuously hitting my site non-stop for the same url. (The IP is from www.file27.com) I've denied them through .htaccess, but it's not stopped trying whatsoever. Is there anything else I can do? Thanks in advance.
     
    agentvic, Oct 2, 2007 IP
  2. nwilkens

    nwilkens Member

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #2
    You could block them using iptables, if you are certain of the IP address.

    Do something like:


    iptables -I INPUT -s <ip.add.r> -j DROP


    you could re-enable it if necessary, by:

    iptables -D INPUT -s <ip.add.r> -j DROP
     
    nwilkens, Oct 2, 2007 IP