https://github.com/sudo-self/samsung-frp
pip install -r requirements.txt
https://github.com/sudo-self/samsung-frp
Last synced: about 1 year ago
JSON representation
pip install -r requirements.txt
- Host: GitHub
- URL: https://github.com/sudo-self/samsung-frp
- Owner: sudo-self
- Created: 2023-11-26T08:26:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-31T07:22:14.000Z (almost 2 years ago)
- Last Synced: 2025-03-24T16:41:49.909Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 45.9 KB
- Stars: 17
- Watchers: 2
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Samsung FRP Bypass
- grab python from here
- Make sure you have all the dependencies listed in `requirements.txt` installed
- Install them using `pip install -r requirements.txt`
- You can simply plug the samsung over USB and run `python main.py`
## unlock.sh
```
git clone https://github.com/sudo-self/samsung-frp.git
cd samsung-frp
chmod +x unlock.sh
./unlock.sh
```

### runs ADB commands
```
execute_adb_command "settings put global setup_wizard_has_run 1"
execute_adb_command "settings put secure user_setup_complete 1"
execute_adb_command "content insert --uri content://settings/secure --bind name:s:DEVICE_PROVISIONED --bind value:i:1"
execute_adb_command "content insert --uri content://settings/secure --bind name:s:user_setup_complete --bind value:i:1"
execute_adb_command "content insert --uri content://settings/secure --bind name:s:INSTALL_NON_MARKET_APPS --bind value:i:1"
execute_adb_command "am start -c android.intent.category.HOME -a android.intent.action.MAIN"
```
### wait for 5 seconds
```
execute_adb_command "am start -n com.android.settings/com.android.settings.Settings"
```
then reboot..
### main.py
