Skip to content

Instantly share code, notes, and snippets.

@Grayda
Last active June 11, 2019 13:23
Show Gist options
  • Save Grayda/eb48093bcfb96bfeec9c58ea301f2668 to your computer and use it in GitHub Desktop.
Save Grayda/eb48093bcfb96bfeec9c58ea301f2668 to your computer and use it in GitHub Desktop.
Extract the Kepler key
# 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