/atomic_pwn

Tools to extract and decrypt Atomic wallets

Primary LanguageGoGNU General Public License v2.0GPL-2.0

Atomic Vault Extractor & Decryptor

POC tools to extract and decrypt Atomic vault wallets

This tool is proudly the first publicly released Atomic Vault extractor / decryptor.

Usage example:

./atomic_decryptor_amd64.bin -h atomic.txt -w wordlist.txt
 ---------------------------------- 
| Cyclone's Atomic Vault Decryptor |
 ---------------------------------- 

Vault file:     atomic.txt
Valid Vaults:   1
CPU Threads:    16
Wordlist:       wordlist.txt
Working...

Decrypted: 0/1  2400342.75 h/s     00h:01m:00s

Output example:

If the tool successfully decrypts the vault, tool will print the vault password and decrypted vault.

Credits

Compile from source:

  • If you want the latest features, compiling from source is the best option since the release version may run several revisions behind the source code.
  • This assumes you have Go and Git installed
    • git clone https://github.com/cyclone-github/atomic_pwn.git
    • atomic_extractor
    • cd atomic_pwn/atomic_extractor
    • go mod init atomic_extractor
    • go mod tidy
    • go build -ldflags="-s -w" atomic_extractor.go
    • atomic_decryptor
    • cd atomic_pwn/atomic_decryptor
    • go mod init atomic_decryptor
    • go mod tidy
    • go build -ldflags="-s -w" atomic_decryptor.go
  • Compile from source code how-to: