Skip to content

Instantly share code, notes, and snippets.

@ilya-bystrov
Forked from pbabics/fs_encrypt_decrypt.sh
Created June 2, 2021 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilya-bystrov/abe5a8f8d44825e9f0502fc8282b0bcd to your computer and use it in GitHub Desktop.
Save ilya-bystrov/abe5a8f8d44825e9f0502fc8282b0bcd to your computer and use it in GitHub Desktop.
Fallout Shelter save file Decrypt/Encrypt
# Encrypt:
cat Vault.json | openssl aes-256-cbc -iv '7475383967656a693334307438397532' -K 'A7CA9F3366D892C2F0BEF417341CA971B69AE9F7BACCCFFCF43C62D1D7D021F9' | base64
# Decrypt:
cat Vault1.sav | base64 -d | openssl aes-256-cbc -d -iv '7475383967656a693334307438397532' -K 'A7CA9F3366D892C2F0BEF417341CA971B69AE9F7BACCCFFCF43C62D1D7D021F9' | python -m json.tool
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment