Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/itsnickbarry/seed-phrase-brute-force
- Owner: ItsNickBarry
- License: mit
- Created: 2024-08-02T23:13:59.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-08-05T13:07:22.000Z (5 months ago)
- Last Synced: 2024-08-05T15:02:45.319Z (5 months ago)
- Topics: bip-39, brute-force, eth, ether, ethereum, key, mnemonic, private-key, search, seed, seed-phrase, wow
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```