Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mauricelambert/ospf_bruteforce
This repository performs a dictionnary attack against OSPF MD5 authentication using scapy.
https://github.com/mauricelambert/ospf_bruteforce
authentication bruteforce dictionary-attack md5 net-md5 ospf python3 scapy
Last synced: about 7 hours ago
JSON representation
This repository performs a dictionnary attack against OSPF MD5 authentication using scapy.
- Host: GitHub
- URL: https://github.com/mauricelambert/ospf_bruteforce
- Owner: mauricelambert
- License: gpl-3.0
- Created: 2023-06-06T20:05:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-19T11:43:09.000Z (10 months ago)
- Last Synced: 2024-01-19T12:53:03.268Z (10 months ago)
- Topics: authentication, bruteforce, dictionary-attack, md5, net-md5, ospf, python3, scapy
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# OSPF Bruteforce MD5 Authentication
## Description
This repository performs a dictionnary attack against OSPF MD5 authentication using scapy.
## Requirements
- python3
- python3 Standard Library
- scapy
- scapy_ospf-v0.91.py## Installation
```bash
git clone https://github.com/mauricelambert/OSPF_bruteforce.git
cd OSPF_bruteforce
python3 -m pip install scapy
wget https://raw.githubusercontent.com/wiki/secdev/scapy/attachments/Code/OSPF/scapy_ospf-v0.91.py -o scapy_ospf.py
```## Usages
```bash
python3 ospf_bruteforce.py [pcap/pcapng file path] [wordlist file path]python3 ospf_bruteforce.py ospf_authentication_hash.pcapng /usr/share/wordlists/rockyou.txt
# OR
chmod u+x ospf_bruteforce.py
./ospf_bruteforce.py ospf_authentication_hash.pcapng /usr/share/wordlists/rockyou.txt
```## Licence
Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).