Skip to content

Instantly share code, notes, and snippets.

@pbabics
Created September 9, 2015 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pbabics/83fafba0b475af1024ab to your computer and use it in GitHub Desktop.
Save pbabics/83fafba0b475af1024ab 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
@bfg-13
Copy link

bfg-13 commented May 4, 2020

Did you get permission from Bethesda to edit save files? Just curious as to their response.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment