vankk / Attack

Some easy network attack examples.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Attack games

These are some easy network attack examples implemented by scapy. Just play for fun.

arp_attack

Attack a specific target by sending ARP packet with fake gateway information.

Parameter: target IP

Usage:

sudo python arp_attack.py 192.168.0.3

arp_attack_all_hosts

Attack all targets in local network by sending ARP packet with fake gateway information.

Parameter: ipprefix, mask length

Usage:

sudo python arp_attack_all_hosts.py 192.168.3.0, 24

dnsAttack

Fake DNS attacking.

Parameter: None

Usage:

sudo python dnsAttack.py

crawer_thread_pool

DoS Attack: Start multiple threads to get resources from target website to raise the delay of answering requests.

Parameter: number of thread, target url

Usage:

sudo python crawer_thread_pool.py 10 http://www.baidu.com

ping_of_death

Send a overlength ICMP packet to target host to crash down the target system. Actually, most system can defend this attack.

Parameter: target IP

Usage:

sudo python ping_of_death 192.168.0.3

Enjoy it.

About

Some easy network attack examples.


Languages

Language:Python 100.0%