shoufanzaid

Results 2 comments of shoufanzaid

Here's my solution. In `decrypt_backup.py`, I used ``` if backup_frame.HasField("attachment"): filename = attachments_directory / f"{backup_frame.attachment.rowId}.bin" ``` instead of ``` if backup_frame.HasField("attachment"): filename = ( attachments_directory / f"{backup_frame.attachment.attachmentId}.bin" ) ``` where...

Here's a gist to cleanly extract messages and attachments after decrypting a Signal backup using this repo: https://gist.github.com/shoufanzaid/8869fd133d2e11e3b495995a88f9f1e3.