mirror of
https://codeberg.org/smukx/Rust-for-Malware-Development
synced 2026-06-06 20:22:59 +00:00
28e7fac1d3
Rust-for-Malware-Development is an collection of proof of concepts with techniques and advanced evasion methods
Browser Credentials Dumper
Welcome to the Browser Creds Dumper directory of Rust-for-Malware-Development.
PoCs that pull saved logins straight out of browser process memory. When credentials are already sitting there in plain text, there is nothing to decrypt and no master-key dance to perform.
Sections & Links
- EdgeSavedPasswordsDumper:
Reads saved usernames, passwords, and origin URLs from the parent
msedge.exeprocess heap. On a shared host an administrator can recover credentials for every signed-in or disconnected Edge user. Microsoft has marked the behaviour as by design.
How to Use
Clone the repository and step into the folder:
git clone https://github.com/Whitecat18/Rust-for-Malware-Development.git
cd Rust-for-Malware-Development/Browser\ Creds\ Dumper
Each sub-folder is its own Cargo project. Build with cargo build --release.