├── data └── .txt ├── requirement.txt ├── LICENSE └── README.md /data/.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | requests 3 | mnemonic 4 | bip32utils 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Pyxuss Crypto Wallet Finder v1 🚀 3 | 4 | Owner: Pyxuss 🇳🇵 5 | Version: 1.0 6 | Purpose: A powerful tool to find lost crypto wallets (ETH, BTC) using seed phrases or wallet addresses 🔑. This tool is designed to assist in locating cryptocurrency wallets that may have been lost or forgotten. 7 | 8 | 9 | Features ✨ 10 | 11 | 1. Brute Force (Input 1): 12 | Starts the brute force process using system APIs ⚡️. Simply input the required details, and the tool will begin working. 13 | 14 | 15 | 2. Brute Force (v2) (Input 2): 16 | Input your own API, BTC, or ETH address to avoid API blocks and continue the brute force process without interruptions 🔒. 17 | 18 | 19 | 3. Support (Input 3): 20 | For any errors or issues encountered while using the tool, users can contact the admin for troubleshooting and assistance 📩. 21 | 22 | 23 | 4. Join the Group (Input 4): 24 | Join our community for updates, help, and discussions regarding the tool 👥. 25 | 26 | 27 | 28 | 29 | --- 30 | 31 | Installation Instructions 🛠 32 | 33 | 1. Without Virtual Environment (venv): 🌐 34 | 35 | Step 1: Update and upgrade your system: 36 | 37 | pkg update -y && pkg upgrade -y 38 | 39 | Step 2: Install Python and pip: 40 | 41 | pkg install python -y 42 | pkg install python-pip -y 43 | 44 | Step 3: Install required Python modules: 45 | 46 | pip install colorama requests mnemonic bip32utils 47 | 48 | 49 | 2. With Virtual Environment (venv): 🌍 50 | 51 | Step 1: Create a virtual environment: 52 | 53 | python -m venv myenv 54 | 55 | Step 2: Activate the virtual environment: 56 | 57 | On Linux/Termux: 58 | 59 | source myenv/bin/activate 60 | 61 | 62 | Step 3: Install required Python modules: 63 | 64 | pip install colorama requests mnemonic bip32utils 65 | 66 | Step 4: Deactivate the virtual environment (optional after running the script): 67 | 68 | deactivate 69 | 70 | 71 | 72 | --- 73 | 74 | How to Use 🚀 75 | 76 | 1. Brute Force Tool (Input 1): 77 | Run the brute force process by simply inputting your details. The system will start brute-forcing the wallet addresses using the available APIs. 78 | 79 | 80 | 2. Brute Force (v2) (Input 2): 81 | If you prefer, you can input your own API, BTC, or ETH address to bypass blocked or restricted APIs. 82 | 83 | 84 | 3. Support (Input 3): 85 | If you encounter any errors or need help, simply contact the admin for assistance. 86 | 87 | 88 | 4. Join the Group (Input 4): 89 | For ongoing support and to stay updated on future improvements, join our community group. 90 | 91 | 92 | 93 | 94 | --- 95 | 96 | Important Notes 📝 97 | 98 | Pyxuss is the main developer and owner of this tool 🔐. 99 | 100 | Country: Nepal 🇳🇵 101 | 102 | The tool is currently free to use, and future updates are planned to enhance performance and add new features. 103 | 104 | Make sure to stay within legal boundaries when using this tool, as accessing wallets without permission may be illegal in some jurisdictions. 105 | 106 | 107 | 108 | --- 109 | 110 | Licensing 📜 111 | 112 | This project is licensed under the MIT License. You are free to use, modify, and distribute this project, but make sure to include the original license file with any distributed copies. 113 | 114 | 115 | --- 116 | 117 | Contact 📩 118 | 119 | For support or to report bugs, please reach out to the admin via the provided contact method. We encourage feedback and suggestions for future versions! 120 | 121 | 122 | --- 123 | 124 | Pyxuss - Main Developer 🔐 | Country: Nepal 🇳🇵 | Free tool with future updates on the way! 125 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bruteforce 2 | Pyxuss Crypto Wallet Finder v1 🚀 | Owner: Pyxuss 🇳🇵 | Purpose: Find lost ETH/BTC wallets using seed phrases or addresses 🔑. Features: Brute Force (Input 1), Brute Force (v2) with your API (Input 2), Support (Input 3), Join Group (Input 4). Install: Follow steps for venv or no venv. Free tool, updates coming soon! 3 | 4 | 5 | Pyxuss Crypto Wallet Finder v1 🚀 6 | 7 | Owner: Pyxuss 🇳🇵 8 | Version: 1.0 9 | Purpose: A powerful tool to find lost crypto wallets (ETH, BTC) using seed phrases or wallet addresses 🔑. This tool is designed to assist in locating cryptocurrency wallets that may have been lost or forgotten. 10 | 11 | 12 | Features ✨ 13 | 14 | 1. Brute Force (Input 1): 15 | Starts the brute force process using system APIs ⚡️. Simply input the required details, and the tool will begin working. 16 | 17 | 18 | 2. Brute Force (v2) (Input 2): 19 | Input your own API, BTC, or ETH address to avoid API blocks and continue the brute force process without interruptions 🔒. 20 | 21 | 22 | 3. Support (Input 3): 23 | For any errors or issues encountered while using the tool, users can contact the admin for troubleshooting and assistance 📩. 24 | 25 | 26 | 4. Join the Group (Input 4): 27 | Join our community for updates, help, and discussions regarding the tool 👥. 28 | 29 | 30 | 31 | 32 | --- 33 | 34 | Installation Instructions 🛠 35 | 36 | 1. Without Virtual Environment (venv): 🌐 37 | 38 | Step 1: Update and upgrade your system: 39 | 40 | pkg update -y && pkg upgrade -y 41 | 42 | Step 2: Install Python and pip: 43 | 44 | pkg install python -y 45 | pkg install python-pip -y 46 | 47 | Step 3: Install required Python modules: 48 | 49 | pip install colorama requests mnemonic bip32utils 50 | 51 | 52 | 2. With Virtual Environment (venv): 🌍 53 | 54 | Step 1: Create a virtual environment: 55 | 56 | python -m venv myenv 57 | 58 | Step 2: Activate the virtual environment: 59 | 60 | On Linux/Termux: 61 | 62 | source myenv/bin/activate 63 | 64 | 65 | Step 3: Install required Python modules: 66 | 67 | pip install colorama requests mnemonic bip32utils 68 | 69 | Step 4: Deactivate the virtual environment (optional after running the script): 70 | 71 | deactivate 72 | 73 | 74 | 75 | --- 76 | 77 | How to Use 🚀 78 | 79 | 1. Brute Force Tool (Input 1): 80 | Run the brute force process by simply inputting your details. The system will start brute-forcing the wallet addresses using the available APIs. 81 | 82 | 83 | 2. Brute Force (v2) (Input 2): 84 | If you prefer, you can input your own API, BTC, or ETH address to bypass blocked or restricted APIs. 85 | 86 | 87 | 3. Support (Input 3): 88 | If you encounter any errors or need help, simply contact the admin for assistance. 89 | 90 | 91 | 4. Join the Group (Input 4): 92 | For ongoing support and to stay updated on future improvements, join our community group. 93 | 94 | 95 | 96 | 97 | --- 98 | 99 | Important Notes 📝 100 | 101 | Pyxuss is the main developer and owner of this tool 🔐. 102 | 103 | Country: Nepal 🇳🇵 104 | 105 | The tool is currently free to use, and future updates are planned to enhance performance and add new features. 106 | 107 | Make sure to stay within legal boundaries when using this tool, as accessing wallets without permission may be illegal in some jurisdictions. 108 | 109 | 110 | 111 | --- 112 | 113 | Licensing 📜 114 | 115 | This project is licensed under the MIT License. You are free to use, modify, and distribute this project, but make sure to include the original license file with any distributed copies. 116 | 117 | 118 | --- 119 | 120 | Contact 📩 121 | 122 | For support or to report bugs, please reach out to the admin via the provided contact method. We encourage feedback and suggestions for future versions! 123 | 124 | 125 | --- 126 | 127 | Pyxuss - Main Developer 🔐 | Country: Nepal 🇳🇵 | Free tool with future updates on the way! 128 | 129 | --------------------------------------------------------------------------------