Coder Social home page Coder Social logo

pinkdiamond1 / xbrainwallet Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pymmdrza/xbrainwallet

0.0 0.0 0.0 49.55 MB

Brain Wallet passphares and private key crack woth python hack

Home Page: https://mmdrza.com/crack-x-brain-wallet-bitcoin-with-python-2022/

Shell 0.04% Python 99.96%

xbrainwallet's Introduction

xBrain Wallet Bitcoin Crack PrivateKey

xBrainWallet

Brain Wallet Passphares and Private Key Crack

Better use vBrain.py . needed alphabet word text file on path file.

  • Generated Countor Per Scan Scan
  • Generated and Recorded Total Wallet With Transaction TX
  • Generated and Recorded Total Wallet With Balance Rich

if Needed BigData in Alphabet Words Can order Here.


Screen From Working /xBrain_V3/vBrain.py with BigData Alphabet Words:

vBrain.py Brain Wallet Bitcoin Crack PrivateKey


For Generated Address Wallet in Passphrase used This Code From vBrain.py

    def generate_address_from_passphrase(passphrase) :
        private_key = str(hashlib.sha256(
            passphrase.encode('utf-8')).hexdigest())
        address = BrainWallet.generate_address_from_private_key(private_key)
        return private_key , address

for Created Address From Private Key used This Code :

    @staticmethod
    def generate_address_from_private_key(private_key) :
        public_key = BrainWallet.__private_to_public(private_key)
        address = BrainWallet.__public_to_address(public_key)
        return address

Generated address hex on base58 with alphabet words 123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz in static method i used this code in vBrain.py

    @staticmethod
    def base58(address_hex) :
        alphabet = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
        b58_string = ''
        leading_zeros = len(address_hex)-len(address_hex.lstrip('0'))
        address_int = int(address_hex , 16)
        while address_int > 0 :
            digit = address_int%58
            digit_char = alphabet[digit]
            b58_string = digit_char+b58_string
            address_int //= 58
        ones = leading_zeros//2
        for one in range(ones) :
            b58_string = '1'+b58_string
        return b58_string

For BrainAllValue_V1.py Bitcoin Wallet Hack

first install package's:

pip install colorama ecdsa rich

for running use this common :

python BrainWallet.py

for use online generetad and crack brain wallet run code:

python xBrainOn.py


Programmer Telegram ID @MrPyMmdrza

Programmer Telegram Channel @CryptoAttacker

Warning Unfortunately, due to the ignorance of some dear users, we were not informed that some profiteers and uncultured people are selling some of my scripts at a lower price. And the user does not receive anything after payment. Some of these ignorant people give malicious and viral files to users. From here, I declare that the only official source for selling my scripts is the website and Telegram ID or Telegram Channel.

xbrainwallet's People

Contributors

pymmdrza avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.