Estate Planning of Credentials - #2754
Open
carlospolop wants to merge 1 commit into
Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://pentestpartners.com/security-blog/estate-planning-of-credentials Content Categories: Based on the analysis, this content was categorized under "Generic Hacking > Brute Force - CheatSheet, with a cross-reference from Basic Forensic Methodology > Specific Software/File-Type Tricks > Office file analysis". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Recovering an encrypted Excel credential store through targeted offline password cracking
The post documents an authorized password-recovery operation against an encrypted Excel spreadsheet belonging to a deceased technology enthusiast. The spreadsheet contained unique passwords for critical accounts, smart-home systems, and other infrastructure, but the family did not know its master password. This is not a CVE or a cryptographic break in Microsoft Excel: recovery succeeded by extrac...
🔧 Technical Details
Convert encrypted documents into offline password targets: When an attacker obtains an encrypted Microsoft Office file, a parser such as
office2johncan extract the document's password-verification material for use by John the Ripper or Hashcat. The encryption itself is not bypassed; password candidates are generated, processed according to the document format, and compared with the extracted verifier. Because all work happens locally, online protections such as MFA, lockout, throttling, and authentication monitoring do not limit the attack.Model passwords as grammars rather than arbitrary strings: A password that is impractical to brute-force character by character may be easy to enumerate when its construction is known. Intelligence from recovered passwords, password hints, organizational policies, leaks, or people familiar with the user can reveal a structure such as
<word><number><optional punctuatio...🤖 Agent ActionsImplemented the HackTricks update.
Modified
src/generic-hacking/brute-force.mdoffice2john.py.src/generic-methodologies-and-resources/basic-forensic-methodology/specific-software-file-type-tricks/office-file-analysis.mdValidation
git diff --checkpassed.mdbookwas unavailable, so a full build was not run.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.