Code Monkey home page Code Monkey logo

htc-messages-decrypt's Introduction

HTC Messages backup decryptor

Setup

Tested with Java 8:

javac Decrypt.java

Maybe you'll have to 'install' the Unlimited JCE Policy to get up to key length of 192 bits used by the backup.

Use

$ java Decrypt data/HTSMSGBK_2018xxx.hbk > data/plaintext
Max key len: 2147483647
Decrypting with password: htc20100416

For backups with custom password set during the backup:

$ java Decrypt data/HTSMSGBK_2018xxx.hbk my_backup_password > data/plaintext
Max key len: 2147483647
Decrypting with password: my_backup_password

Compatibility

Tested on data files from latest HTC One M7 (only!).

License

MIT, NO warranty, NO support!

Analysis notes

public static final String VALUES_KEY_PASSWORD = "password"; passwordless password is probably htc20100416 (com.htc.sense.mms.ui.wz) (updated in the com.cmcc SSO code on login and in the pass dialog on ok)

check com.htc.sense.mms.ui.BackupActivity.a(String, String) which is the encryptor this.v is true if the backup is 'passwordless' public static final String SYMMETRIC_ENCRYPTION = "AES";

Code uses the 'traditional' insecure method to create the key from password, replacement provided here: https://android-developers.googleblog.com/2016/06/security-crypto-provider-deprecated-in.html

rng = SecureRandom("SHA1PRNG", "Crypto").seed(password)
key = KeyGenerator("AES").init(192, rng).generateKey()
cipher = Cipher("AES").init(2, key, random_bytes)

htc-messages-decrypt's People

Contributors

libor-m avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.