Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/itsnickbarry/seed-phrase-brute-force

Brute-force search for missing words from a BIP-39 seed phrase
https://github.com/itsnickbarry/seed-phrase-brute-force

bip-39 brute-force eth ether ethereum key mnemonic private-key search seed seed-phrase wow

Last synced: about 2 months ago
JSON representation

Brute-force search for missing words from a BIP-39 seed phrase

Awesome Lists containing this project

README

        

# Seed Phrase Brute Force

Fill in missing seed phrase words via brute-force search.

## Usage

Store your seed phrase as an environment variable, with missing words represented as `"x"`:

```bash
export SEED_PHRASE="test test test test test test test test test test x"
```

Store the address of the first account associated with the seed phrase as an environment variable:

```bash
export TARGET="0xf39Fd6e51aad88F6F4ce6aB88272"
```

Run the script with Node:
```bash
node index.js
```