Last active
June 11, 2019 13:23
-
-
Save Grayda/eb48093bcfb96bfeec9c58ea301f2668 to your computer and use it in GitHub Desktop.
Extract the Kepler key
This file contains 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
# This downloads kepler.apk from orvibo.com and uses strings and grep with regex to find the line that contains the key. | |
echo Downloading the Kepler APK from www.orvibo.com.. | |
wget http://www.orvibo.com/software/android/kepler.apk -qO /tmp/kepler.apk | |
echo Download complete. Extracting and searching for the key. The key should be displayed below. | |
echo | |
unzip -p /tmp/kepler.apk classes.dex | strings | grep -e '^[A-Za-n1-9]\{16\}$' | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment