[PR #62] [CLOSED] C users niels one drive documenten GitHub whats app crypt14 crypt15 decrypter decrypt14 15.py #111

Closed
opened 2026-03-02 04:00:05 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ElDavoo/wa-crypt-tools/pull/62
Author: @NelisMk7
Created: 5/1/2023
Status: Closed

Base: mainHead: C-Users-niels-OneDrive-Documenten-GitHub-WhatsApp-Crypt14-Crypt15-Decrypter-decrypt14_15.py


📝 Commits (10+)

  • 9874d4d Reorganize project structure
  • 7ee7184 Move AES import to common_utils.py
  • 688a515 Update version_features proto
  • 391648e WIP experimental crypt15 encrypter
  • 17e27bf WIP reference mode
  • 8a9aa7e (sigh) fix import again
  • d355f3c get iv from crypt14 files too
  • 32f07c5 parse and decrypt crypt12 files
  • 8a10425 check crypt12 footer in buffered mode
  • da3bca7 encryption for crypt12 files

📊 Changes

23 files changed (+1206 additions, -57 deletions)

View changed files

📝 .ipynb_checkpoints/utils/WA_HMACSHA256_Loop.java (+0 -0)
📝 .ipynb_checkpoints/utils/hex_string_to_encrypted_backup_key.py (+0 -0)
📝 .ipynb_checkpoints/utils/password_data_key_to_hashcat.py (+0 -0)
📝 .ipynb_checkpoints/utils/protobuf_bruteforce.py (+0 -0)
📝 README.md (+9 -25)
proto/version_features_pb2.py (+0 -25)
src/decrypt14_15.py (+589 -0)
src/encrypt.py (+228 -0)
src/lib/common_utils.py (+169 -0)
src/lib/constants.py (+15 -0)
src/lib/key.py (+163 -0)
📝 src/proto/C14_cipher.proto (+0 -0)
📝 src/proto/C14_cipher_pb2.py (+1 -1)
📝 src/proto/C14_cipher_version.proto (+0 -0)
📝 src/proto/C14_cipher_version_pb2.py (+0 -0)
📝 src/proto/C15_IV.proto (+0 -0)
📝 src/proto/C15_IV_pb2.py (+0 -0)
📝 src/proto/key_type.proto (+0 -0)
📝 src/proto/key_type_pb2.py (+0 -0)
📝 src/proto/prefix.proto (+0 -0)

...and 3 more files

📄 Description

This pull requests fixes the issue # (issue number)


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ElDavoo/wa-crypt-tools/pull/62 **Author:** [@NelisMk7](https://github.com/NelisMk7) **Created:** 5/1/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `C-Users-niels-OneDrive-Documenten-GitHub-WhatsApp-Crypt14-Crypt15-Decrypter-decrypt14_15.py` --- ### 📝 Commits (10+) - [`9874d4d`](https://github.com/ElDavoo/wa-crypt-tools/commit/9874d4d0e51ffe461fc3a65d6c370475d466c4e1) Reorganize project structure - [`7ee7184`](https://github.com/ElDavoo/wa-crypt-tools/commit/7ee718426cded4a65de52666bf0de6be065077d4) Move AES import to common_utils.py - [`688a515`](https://github.com/ElDavoo/wa-crypt-tools/commit/688a5157fe211fad25af76119beb471ac7eb00a9) Update version_features proto - [`391648e`](https://github.com/ElDavoo/wa-crypt-tools/commit/391648ee8dc8c45fdea3bbbf0bdca63c556c435b) WIP experimental crypt15 encrypter - [`17e27bf`](https://github.com/ElDavoo/wa-crypt-tools/commit/17e27bf668da64d70830e26e8b30d95ce7d40566) WIP reference mode - [`8a9aa7e`](https://github.com/ElDavoo/wa-crypt-tools/commit/8a9aa7e8899d368004ad44c7885a3409348fcc19) (sigh) fix import again - [`d355f3c`](https://github.com/ElDavoo/wa-crypt-tools/commit/d355f3c45d57630cdaed838783e14ab57a0d97f8) get iv from crypt14 files too - [`32f07c5`](https://github.com/ElDavoo/wa-crypt-tools/commit/32f07c579946119b5fc7acdd64d03c1d3a81c754) parse and decrypt crypt12 files - [`8a10425`](https://github.com/ElDavoo/wa-crypt-tools/commit/8a10425d79398007f57445759c2dd1d414a2897d) check crypt12 footer in buffered mode - [`da3bca7`](https://github.com/ElDavoo/wa-crypt-tools/commit/da3bca7ab32eadeb7bf1ddc60de5ec935669346a) encryption for crypt12 files ### 📊 Changes **23 files changed** (+1206 additions, -57 deletions) <details> <summary>View changed files</summary> 📝 `.ipynb_checkpoints/utils/WA_HMACSHA256_Loop.java` (+0 -0) 📝 `.ipynb_checkpoints/utils/hex_string_to_encrypted_backup_key.py` (+0 -0) 📝 `.ipynb_checkpoints/utils/password_data_key_to_hashcat.py` (+0 -0) 📝 `.ipynb_checkpoints/utils/protobuf_bruteforce.py` (+0 -0) 📝 `README.md` (+9 -25) ➖ `proto/version_features_pb2.py` (+0 -25) ➕ `src/decrypt14_15.py` (+589 -0) ➕ `src/encrypt.py` (+228 -0) ➕ `src/lib/common_utils.py` (+169 -0) ➕ `src/lib/constants.py` (+15 -0) ➕ `src/lib/key.py` (+163 -0) 📝 `src/proto/C14_cipher.proto` (+0 -0) 📝 `src/proto/C14_cipher_pb2.py` (+1 -1) 📝 `src/proto/C14_cipher_version.proto` (+0 -0) 📝 `src/proto/C14_cipher_version_pb2.py` (+0 -0) 📝 `src/proto/C15_IV.proto` (+0 -0) 📝 `src/proto/C15_IV_pb2.py` (+0 -0) 📝 `src/proto/key_type.proto` (+0 -0) 📝 `src/proto/key_type_pb2.py` (+0 -0) 📝 `src/proto/prefix.proto` (+0 -0) _...and 3 more files_ </details> ### 📄 Description This pull requests fixes the issue # (issue number) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 04:00:05 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/wa-crypt-tools#111
No description provided.