Find the answer to your Linux question:
Results 1 to 3 of 3
I have linux firewall configured. I want to check the stress tecting on this firewall. is there any way to launch attack of DDOS or other attack which try to ...
  1. #1
    Just Joined!
    Join Date
    Mar 2008
    Posts
    63

    Howto check ddos attack on a IPtable firwwall

    I have linux firewall configured. I want to check the stress tecting on this firewall. is there any way to launch attack of DDOS or other attack which try to make the firewall busy ?

  2. #2
    Linux Newbie JosePF's Avatar
    Join Date
    Jun 2010
    Posts
    225
    Hello,
    yes, there is a powerfull command line to create packets to test security and also for this purpose, but i think that is better that you see this if it is a apache question:
    Security Tips - Apache HTTP Server
    or secutity section of service that you want to check and/or generate a log in iptables:
    i.e:
    iptables -I INPUT -p tcp --dport 80 -i eth0 -m state --state NEW -m recent --set
    iptables -I INPUT -p tcp --dport 80 -i eth0 -m state --state NEW -m recent --update --seconds 60 --hitcount 4 -j DROP --log-prefix ‘** HACKERS **’
    Then you can see log with:
    dmesg | grep HACKERS.

    I dont gonna show a dangerous utility in a forum...

    Regards!
    Last edited by JosePF; 10-04-2010 at 07:37 AM.
    There are people trying to avoid mistakes and another that tries to target.

  3. #3
    Just Joined! vishesh's Avatar
    Join Date
    Jul 2009
    Location
    Delhi
    Posts
    33
    I think fail2ban is also a good tool to hable DDOS attack. search google

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...