An open API service indexing awesome lists of open source software.

https://github.com/sdushantha/meobrute

Automate the process of brute forcing the My Eyes Only pin code on Snapchat
https://github.com/sdushantha/meobrute

adb android bruteforce hashcat root snapchat

Last synced: 5 days ago
JSON representation

Automate the process of brute forcing the My Eyes Only pin code on Snapchat

Awesome Lists containing this project

README

          

meobrute



Automate the proccess of brute forcing the My Eyes Only pin code on Snapchat







This script only works for rooted Android devices!

## Dependencies
- [`adb`](https://developer.android.com/studio/command-line/adb)
- [`hashcat`](https://hashcat.net/hashcat/)

This script was tested on an Android device running Android 10 with LinageOS with Snapchat
v11.71.1.39

## How it works (_[Demo on YouTube](https://www.youtube.com/watch?v=uokcG95hqj0)_)
Snapchat saves the 4 digit My Eyes Only (MEO) pincode encrypted using [bcrypt](https://en.wikipedia.org/wiki/Bcrypt) in `/data/data/com.snapchat.android/databases/memories.db`.

![image](images/database.png)

Once you've gotten the hash and saved it into a file (eg.`meohash.txt`), you can use `hashcat` to brute force it using the following command:
```
hashcat --attack-method 3200 --attack-mode 3 meohash.txt "?d?d?d?d"
```