
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
crypto-wallet-finder
Advanced tools
A tool for finding cryptocurrency wallet seeds using parallel processing
A Python package for finding cryptocurrency wallet seeds by generating and testing permutations of seed phrases. This tool uses parallel processing to efficiently search through possible combinations while providing a user-friendly GUI interface for monitoring progress.
You can install the package directly from PyPI:
pip install crypto-wallet-finder
Or install from source:
git clone https://github.com/RKInnovate/waller-finder-pkg.git
cd waller-finder-pkg
pip install -e .
Run the GUI application:
wallet-finder
Or use it in your Python code:
from wallet_finder import WalletFinderGUI
import tkinter as tk
def main():
root = tk.Tk()
app = WalletFinderGUI(root)
root.mainloop()
if __name__ == "__main__":
main()
Use the core functionality in your own code:
from wallet_finder import WalletFinder
# Initialize with your wordlist and target addresses
wordlist = ["word1", "word2", ...]
target_addresses = {"address1", "address2"}
# Define callback functions
def status_callback(message):
print(f"Status: {message}")
def result_callback(seed, address):
print(f"Found: {address} with seed: {seed}")
# Start the search
WalletFinder.start(
wordlist=wordlist,
target_address=target_addresses,
update_status_func=status_callback,
update_list_func=result_callback
)
The package creates a configuration directory at ~/.wallet_finder
with:
config.json
: Stores progress and settingsfound_wallets.csv
: Stores found wallet addresseswallet_finder.log
: Application logsContributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
This tool is for educational purposes only. Always ensure you have the right to search for specific wallet addresses before using this tool.
FAQs
A tool for finding cryptocurrency wallet seeds using parallel processing
We found that crypto-wallet-finder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.