Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/system/xbin/bash
- # Android Remote Unlock Script
- # By: Geofferey @ IG & XDA 2018
- # Just a simple script to input password
- # via ADB, SSH, Telnet etc on Android
- # Pace in /system/xbin/remote-unlock &
- # give execute perms (e.g. chmod 500)
- echo ""
- read -s -p "Enter password:" PASS
- input keyevent KEYCODE_POWER
- input keyevent 62
- sleep 1
- input text $PASS
- input keyevent 62
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement