Skip to content
/ EIGRPWN Public

Tools for performing attacks on EIGRP domains

Notifications You must be signed in to change notification settings

nanaao/EIGRPWN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EIGRPWN

The author has nothing to do with those who will use this tool for personal purposes to destroy other people's computer networks. The tools are presented for training purposes to help engineers improve the security of their network.

externalinject.py - tool for route injection in the EIGRP domain. Pay attention, if you are going to carry out injections for the further purpose of intercepting traffic, use this script, because it works more stable than internalinject.py. This script performs an injection of external EIGRP routes.

helloflooding.py - tool for exploitation a DoS attack, flooding with EIGRP "Hello" messages. When flooding "Hello" messages, fake EIGRP neighbors are generate

internalinject.py - this script performs an injection of external EIGRP routes.

routingtableoverflow.py - this script causes an overflow of the routing table of the EIGRP router by generating fake routes at high speed.

python3 externalinject.py --help

███████╗██╗░██████╗░██████╗░██████╗░░██╗░░░░░░░██╗███╗░░██╗
██╔════╝██║██╔════╝░██╔══██╗██╔══██╗░██║░░██╗░░██║████╗░██║
█████╗░░██║██║░░██╗░██████╔╝██████╔╝░╚██╗████╗██╔╝██╔██╗██║
██╔══╝░░██║██║░░╚██╗██╔══██╗██╔═══╝░░░████╔═████║░██║╚████║
███████╗██║╚██████╔╝██║░░██║██║░░░░░░░╚██╔╝░╚██╔╝░██║░╚███║
╚══════╝╚═╝░╚═════╝░╚═╝░░╚═╝╚═╝░░░░░░░░╚═╝░░░╚═╝░░╚═╝░░╚══╝
    
EIGRP External routes injection tool

Author: @necreas1ng, <[email protected]>

usage: externalinject.py [-h] --interface INTERFACE --asn ASN --src SOURCE_IP --dst DESTINATION_IP --prefix PREFIX

options:
  -h, --help            show this help message and exit
  --interface INTERFACE
                        Choose the interface to attack
  --asn ASN             Specify the EIGRP AS Number
  --src SOURCE_IP       Specify your IP Address
  --dst DESTINATION_IP  Target IP address for injection
  --prefix PREFIX       Specifying the subnet mask
  
python3 helloflooding.py --help

███████╗██╗░██████╗░██████╗░██████╗░░██╗░░░░░░░██╗███╗░░██╗
██╔════╝██║██╔════╝░██╔══██╗██╔══██╗░██║░░██╗░░██║████╗░██║
█████╗░░██║██║░░██╗░██████╔╝██████╔╝░╚██╗████╗██╔╝██╔██╗██║
██╔══╝░░██║██║░░╚██╗██╔══██╗██╔═══╝░░░████╔═████║░██║╚████║
███████╗██║╚██████╔╝██║░░██║██║░░░░░░░╚██╔╝░╚██╔╝░██║░╚███║
╚══════╝╚═╝░╚═════╝░╚═╝░░╚═╝╚═╝░░░░░░░░╚═╝░░░╚═╝░░╚═╝░░╚══╝
  
EIGRP Hello flooding tool (Denial of Service)

Author: @necreas1ng, <[email protected]>

usage: helloflooding.py [-h] --interface INTERFACE --asn ASN --subnet SUBNET

options:
-h, --help            show this help message and exit
--interface INTERFACE
                      Choose the interface to attack
--asn ASN             Specify the EIGRP AS Number
--subnet SUBNET       Specify the subnet. Example: 10.10.10.0/24

███████╗██╗░██████╗░██████╗░██████╗░░██╗░░░░░░░██╗███╗░░██╗
██╔════╝██║██╔════╝░██╔══██╗██╔══██╗░██║░░██╗░░██║████╗░██║
█████╗░░██║██║░░██╗░██████╔╝██████╔╝░╚██╗████╗██╔╝██╔██╗██║
██╔══╝░░██║██║░░╚██╗██╔══██╗██╔═══╝░░░████╔═████║░██║╚████║
███████╗██║╚██████╔╝██║░░██║██║░░░░░░░╚██╔╝░╚██╔╝░██║░╚███║
╚══════╝╚═╝░╚═════╝░╚═╝░░╚═╝╚═╝░░░░░░░░╚═╝░░░╚═╝░░╚═╝░░╚══╝
  
EIGRP Internal routes injection tool

Author: @necreas1ng, <[email protected]>

usage: internalinject.py [-h] --interface INTERFACE --asn ASN --src SOURCE_IP --dst DESTINATION_IP --prefix PREFIX

options:
-h, --help            show this help message and exit
--interface INTERFACE
                      Choose the interface to attack
--asn ASN             Specify the EIGRP AS Number
--src SOURCE_IP       Specify your IP Address
--dst DESTINATION_IP  Target IP address for injection
--prefix PREFIX       Specifying the subnet mask

python3 routingtableoverflow.py --help

███████╗██╗░██████╗░██████╗░██████╗░░██╗░░░░░░░██╗███╗░░██╗
██╔════╝██║██╔════╝░██╔══██╗██╔══██╗░██║░░██╗░░██║████╗░██║
█████╗░░██║██║░░██╗░██████╔╝██████╔╝░╚██╗████╗██╔╝██╔██╗██║
██╔══╝░░██║██║░░╚██╗██╔══██╗██╔═══╝░░░████╔═████║░██║╚████║
███████╗██║╚██████╔╝██║░░██║██║░░░░░░░╚██╔╝░╚██╔╝░██║░╚███║
╚══════╝╚═╝░╚═════╝░╚═╝░░╚═╝╚═╝░░░░░░░░╚═╝░░░╚═╝░░╚═╝░░╚══╝
  
Tool for overflow of routing tables in EIGRP routers

Author: @necreas1ng, <[email protected]>

usage: routingtableoverflow.py [-h] --interface INTERFACE --asn ASN --src SOURCE_IP

options:
-h, --help            show this help message and exit
--interface INTERFACE
                      Choose the interface to attack
--asn ASN             Specify the EIGRP AS Number
--src SOURCE_IP       Specify your IP Address

About

Tools for performing attacks on EIGRP domains

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages