the following bot has been attacking my application and I'm wondering how I go about blocking it at the firewall with AWS. It looks as if your able to include access but not block access. Does anybody know how to do this?
w00tw00t.at.blackhats.romanian.anti-sec:
What kind of attack is it exactly ? HTTP? Are you using a load balancer?
Here are some options:
You an ssh to the machine that Elastic Beanstalk machine is using and pick up the IP address where that request is coming from. Look under
/var/app/current/log
. Then just block that IP address on the AWS security group.If it's a crawler you can look at creating a robots.txt file for your application. More information here: http://en.wikipedia.org/wiki/Robots.txt or something like this:
User-agent: * # match all bots
Disallow: / # keep them out
the following bot has been attacking my application and I'm wondering how I go about blocking it at the firewall with AWS. It looks as if your able to include access but not block access. Does anybody know how to do this?
w00tw00t.at.blackhats.romanian.anti-sec:
What kind of attack is it exactly ? HTTP? Are you using a load balancer?
Here are some options:
You an ssh to the machine that Elastic Beanstalk machine is using and pick up the IP address where that request is coming from. Look under
/var/app/current/log
. Then just block that IP address on the AWS security group.If it's a crawler you can look at creating a robots.txt file for your application. More information here: http://en.wikipedia.org/wiki/Robots.txt or something like this:
User-agent: * # match all bots
Disallow: / # keep them out
0 commentaires:
Enregistrer un commentaire