Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martinvigo/ransombile
Ransombile is a tool that can be used in different scenarios to compromise someone’s digital life when having physical access to a locked mobile device
https://github.com/martinvigo/ransombile
2fa hacking password-reset sms
Last synced: 3 months ago
JSON representation
Ransombile is a tool that can be used in different scenarios to compromise someone’s digital life when having physical access to a locked mobile device
- Host: GitHub
- URL: https://github.com/martinvigo/ransombile
- Owner: martinvigo
- Created: 2018-08-02T20:29:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-16T22:21:53.000Z (over 2 years ago)
- Last Synced: 2024-07-09T00:06:43.607Z (4 months ago)
- Topics: 2fa, hacking, password-reset, sms
- Language: Ruby
- Homepage: https://www.martinvigo.com/ransombile
- Size: 32.2 KB
- Stars: 74
- Watchers: 10
- Forks: 23
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ransombile
Ransombile is a tool that automates the password reset process and allows you to perform the entire flow automatically for multiple sites at the same time. The aim is to automate the three steps that take the longest in our proposed attack vector.
This tool only serves as a PoC to show that password reset can be automated effectively. Consider it an Alpha version. Things will fail and some sites I added don't work for various reasons (UI in a language different than English, A/B testing, timing issues, etc.).
For details and demos please check: [https://www.martinvigo.com/ransombile](https://www.martinvigo.com/ransombile)
## Installation
Ransombile is a rails app. It should work on any version but I wrote and tested it on Ruby 2.4 and Rails 5.0
## Setup
You need an email inbox to which you will be sending emails from the Victim's device to retrieve the victim;s email address. Add the credentials information to the *ransombile_controller* file.
You can change the selenium plugin to use any browser but it comes configured to use Firefox by default to make development and testing easier. In fact, if you would "deploy" Ransombile, you probably want to use a headless browsers like PhantomJS.
## Usage
Launch the server and run the webapp on any browser. It is optimized for mobile device screen sizes.
```rails server```
## Adding websites
I left a template under */controllers/website_templates_controller*. It gives you a skeleton with the basic functions and implementation. Just add the missing code where indicated.
You can create a new controller using the new website name
```rails generate controller Websitename```
Next, you need to update the UI, file *index.html.erb*. Just copy paste what's already there for any other site. Don't forget to update the function *initiatePasswordReset()*!
Last, update the *routes* file
## Demo video
[![Ransombile demo video](https://img.youtube.com/vi/-d152pJ_Ua0/0.jpg)](https://www.youtube.com/watch?v=-d152pJ_Ua0)## Tool presentation at BSides Las Vegas 2018
[![Ransombile presentation at Bsides Las Vegas 2018](https://img.youtube.com/vi/7MbgFTJrhss/0.jpg)](https://www.youtube.com/watch?v=7MbgFTJrhss)## Authors
Martin Vigo - @martin_vigo - [martinvigo.com](https://www.martinvigo.com)