Advertisement
TVT618

RouterSploit - Exploitation Framework for Embedded Devices

May 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. RouterSploit - Exploitation Framework for Embedded Devices
  2.  
  3. About RouterSploit
  4. The RouterSploit Framework is an open-source exploitation framework dedicated to embedded devices.
  5.  
  6. It consists of various modules that aids penetration testing operations:
  7. * exploits - modules that take advantage of identified vulnerabilities
  8. * creds - modules designed to test credentials against network services
  9. * scanners - modules that check if a target is vulnerable to any exploit
  10. * payloads - modules that are responsible for generating payloads for various architectures and injection points
  11. * generic - modules that perform generic attacks
  12.  
  13. Installation
  14. git clone https://www.github.com/threat9/routersploit
  15. cd routersploit
  16. sudo apt-get install python3-pip
  17. sudo python3 -m pip install -r requirements.txt (Stable)
  18. or...
  19. sudo python3 -m pip install -r requirements-dev.txt (Test version)
  20. python3 rsf.py
  21.  
  22. Bluetooth Low Energy support:
  23. sudo apt-get install libglib2.0-dev
  24. sudo python3 -m pip install bluepy
  25. python3 rsf.py
  26.  
  27. Running on Docker
  28. git clone https://www.github.com/threat9/routersploit
  29. cd routersploit
  30. docker build -t routersploit .
  31. docker run -it --rm routersploit
  32.  
  33. Update
  34. Update RouterSploit Framework often. The project is under heavy development and new modules are shipped almost every day.
  35.  
  36. cd routersploit
  37. git pull
  38.  
  39. License
  40. The RouterSploit Framework is under a BSD license. Please see LICENSE for more details.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement