> ## Content Index
> Fetch the complete content index at: https://darkwebinformer.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# RouterSploit - Exploitation Framework for Embedded Devices
- URL: https://darkwebinformer.com/routersploit-exploitation-framework-for-embedded-devices/
- Published: 2024-08-13T17:40:34.000Z
- Updated: 2025-09-04T22:27:45.000Z
- Author: Dark Web Informer
- Tags: OSINT, Tools

Last Release: 2018  
Direct Link: <https://github.com/threat9/routersploit> 

The RouterSploit Framework is an open-source exploitation framework dedicated to embedded devices.

![](https://camo.githubusercontent.com/1a8495f7bc00d3ce5be43310e3b30f3e6a60bc7eba0b0e7154d88c84a1f9bf53/68747470733a2f2f61736369696e656d612e6f72672f612f3138303337302e706e67) 

It consists of various modules that aid penetration testing operations:

- exploits - modules that take advantage of identified vulnerabilities
- creds - modules designed to test credentials against network services
- scanners - modules that check if a target is vulnerable to any exploit
- payloads - modules that are responsible for generating payloads for various architectures and injection points
- generic - modules that perform generic attacks

# Installation

[](https://github.com/threat9/routersploit#installation)

## Requirements

[](https://github.com/threat9/routersploit#requirements)

Required:

- future
- requests
- paramiko
- pysnmp
- pycrypto

Optional:

- bluepy - Bluetooth low energy

## Installation on Kali Linux

[](https://github.com/threat9/routersploit#installation-on-kali-linux)

```
apt-get install python3-pip
git clone https://www.github.com/threat9/routersploit
cd routersploit
python3 -m pip install -r requirements.txt
python3 rsf.py

```

Bluetooth Low Energy support:

```
apt-get install libglib2.0-dev
python3 -m pip install bluepy
python3 rsf.py

```

## Installation on Ubuntu 20.04

[](https://github.com/threat9/routersploit#installation-on-ubuntu-2004)

```
sudo apt-get install git python3-pip
git clone https://github.com/threat9/routersploit
cd routersploit
python3 -m pip install -r requirements.txt
python3 rsf.py

```

Bluetooth Low Energy support:

```
sudo apt-get install libglib2.0-dev
python3 -m pip install bluepy
python3 rsf.py

```

## Installation on Ubuntu 18.04 & 17.10

[](https://github.com/threat9/routersploit#installation-on-ubuntu-1804--1710)

```
sudo add-apt-repository universe
sudo apt-get install git python3-pip
git clone https://www.github.com/threat9/routersploit
cd routersploit
python3 -m pip install setuptools
python3 -m pip install -r requirements.txt
python3 rsf.py

```

Bluetooth Low Energy support:

```
apt-get install libglib2.0-dev
python3 -m pip install bluepy
python3 rsf.py

```

## Installation on OSX

[](https://github.com/threat9/routersploit#installation-on-osx)

```
git clone https://www.github.com/threat9/routersploit
cd routersploit
sudo python3 -m pip install -r requirements.txt
python3 rsf.py

```

## Running on Docker

[](https://github.com/threat9/routersploit#running-on-docker)

```
git clone https://www.github.com/threat9/routersploit
cd routersploit
docker build -t routersploit .
docker run -it --rm routersploit

```

# Update

[](https://github.com/threat9/routersploit#update)

Update RouterSploit Framework often. The project is under heavy development and new modules are shipped almost every day.

```
cd routersploit
git pull

```

# Build your own

[](https://github.com/threat9/routersploit#build-your-own)

To our surprise, people started to fork [routersploit](https://github.com/threat9/routersploit) not because they were interested in the security of embedded devices but simply because they want to leverage our interactive shell logic and build their tools using similar concept. All these years they must have said: *"There must be a better way!"* and they were completely right, the better way is called [*Riposte*](https://github.com/fwkz/riposte).

[*Riposte*](https://github.com/fwkz/riposte) allows you to easily wrap your application inside a tailored interactive shell. Common chores regarding building REPLs was factored out and being taken care of so you can focus on specific domain logic of your application.

# License

[](https://github.com/threat9/routersploit#license)

The RouterSploit Framework is under a BSD license. Please see [LICENSE](https://github.com/threat9/routersploit/blob/master/LICENSE) for more details.

# Acknowledgments

[](https://github.com/threat9/routersploit#acknowledgments)

- [riposte](https://github.com/fwkz/riposte)