How to ? :)
Hello to all !
I have 2 question's.
Do you know some method's to stop DDOS ? I mean to protect yourself in face of DDOS ?
How do you catch those user's in our network ( if you are a network admin ) , if they do Arp spoofing ?
Can anyone help me , with those ?
I have 2 question's.
Do you know some method's to stop DDOS ? I mean to protect yourself in face of DDOS ?
How do you catch those user's in our network ( if you are a network admin ) , if they do Arp spoofing ?
Can anyone help me , with those ?
Optimism is an occupational hazard of programming: feedback is the treament. (Kent Beck)
Comments
-
blackzone Member Posts: 82 ■■□□□□□□□□If you give an example of how you did a DDOS attack step by step, I'll try to see if I can find a solution.
For arp poisoning, you can probably use static arp entry.
Type "man arp" on linux, or "arp" under window for more detail
p.s. I dont' know anyway of spotting spoofing. -
sprkymrk Member Posts: 4,884 ■■■□□□□□□□!30 wrote:Do you know some method's to stop DDOS ? I mean to protect yourself in face of DDOS ?!30 wrote:How do you catch those user's in our network ( if you are a network admin ) , if they do Arp spoofing ?
There are no defences built into arp itself, though. Other defences would be to use IPSec to establish a security association between peers. Using static mac entries on switches can help too (sometimes called port security, or sticky ports). Arpwatch is another option, but you need to configure a port on the switch to use mirroring.
There are tools that let you scan your network for nics running in promiscous mode, which generally means they are running a sniffer, possibly after poisoning the arp on a switch to see more traffic.
You can also configure a network IDS to alert you to the possibility of arp poisoning, it watches for a lot of bogus "who has w.x.y.z, tell a.b.c.d" traffic.All things are possible, only believe. -
!30 Member Posts: 356Could you give me an example of tool's which catch nics running in promiscous mode ? for spoofing .. you mention about themOptimism is an occupational hazard of programming: feedback is the treament. (Kent Beck)
-
sprkymrk Member Posts: 4,884 ■■■□□□□□□□Here is one for MS networks:
http://support.microsoft.com/?kbid=892853All things are possible, only believe. -
Danman32 Member Posts: 1,243You can't really stop a generic DOS/DDOS any more than you could stop someone (or group of people) from approaching your house and blocking you from coming out or from someone legit to come in by yourself.
Specific means of DOS/DDOS can be prevented from succeeding or lessen its impact by dropping the packet as soon as you can determine it is illegitimate. Even then though, if bad packets came in fast enough, they would displace the wanted packets.