Bitcoin Forum
April 24, 2024, 12:00:45 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 6 »  All
  Print  
Author Topic: Crack my bitcoin wallet address and get 0.155 btc + 0.5BTC  (Read 15628 times)
GoldTiger69
Hero Member
*****
Offline Offline

Activity: 582
Merit: 502


View Profile WWW
November 15, 2017, 06:57:29 AM
 #61

To geraldfrank:

Now that you have the password, you can run

Code:
$ pywallet.py --wallet=<your_wallet_file> --passphrase=<your_password> --dumpwallet

Hope that helps.

I can help you to restore/recover your wallet or password.
https://bitcointalk.org/index.php?topic=1234619.0
1713960045
Hero Member
*
Offline Offline

Posts: 1713960045

View Profile Personal Message (Offline)

Ignore
1713960045
Reply with quote  #2

1713960045
Report to moderator
1713960045
Hero Member
*
Offline Offline

Posts: 1713960045

View Profile Personal Message (Offline)

Ignore
1713960045
Reply with quote  #2

1713960045
Report to moderator
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713960045
Hero Member
*
Offline Offline

Posts: 1713960045

View Profile Personal Message (Offline)

Ignore
1713960045
Reply with quote  #2

1713960045
Report to moderator
porto-pok
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
November 15, 2017, 09:08:13 AM
 #62

Its impossible to do that
9kek
Member
**
Offline Offline

Activity: 109
Merit: 21


View Profile
November 27, 2017, 06:06:01 PM
 #63

did someone found it?
pecker8000
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
December 06, 2017, 04:21:36 AM
 #64

Here is the information for the address

   {
            "addr": "12KGAcU47BhCSQJCN9r2dHAvhDALMVsJkk",
            "balance": "15508294",
            "compressed": true,
            "encrypted_privkey": "f912462631805fb602ad6ce5763d6394f25d6374e71a55be1dfe3948bc1f483a256685238ce6459 7ff0afe69b03a8183",
            "label": "Slush",
            "pubkey": "037023ec20116784122552ca485e7459a63228cb067e96c556e30a3b1f8c316a45",
            "reserve": 0
        },

EDIT: Was told that this information is necessary, so here you go

    "mkey": {
        "encrypted_key": "3ce2900d6c2df58a1cfa9ea1755a1599e0b60001fcd29d730c298de7538e3a0709e4fdb738d8ac6 1b5b03c582d724214",
        "nDerivationIterations": 80062,
        "nDerivationMethod": 0,
        "nID": 1,
        "otherParams": "",
        "salt": "d07e66c2606ae4fc"
    },


There is also another address within the wallet that has 3 btc that i am hoping to recover.  I will give the person who produces the successful password 0.5 in addition to the address above, but I guess youll have to trust me on following through.  

Crack this wallet and feel free to take the money, but please message me the password! Or post it here

I forgot the password i used back in 2013 and im dying to figure it out so i can take funds from the other addresses in the wallet.  I really don't remember anything about the password but it wasnt very long

Also, does anyone have any time approximations for bruteforcing according to password length? Such as

5 char = xx min
6 char = xx min
7 char = xx min
and so on.  doesnt have to be exact in any sense im just trying to wrap my mind around how long it would take (assuming gpu acceleration)


Mods, if this is in the wrong subforum feel free to move it!


Could u RUN on btcrecover and share "Bitcoin Core encrypted master key, salt, iter_count, and crc in base64: generated from wallet.dat"
ncsupanda
Legendary
*
Offline Offline

Activity: 1628
Merit: 1012



View Profile
December 07, 2017, 12:35:28 PM
 #65

Reposting here for anyone trying this with more hardware than I have.

I'm sure there are a lot of people here trying to use btcrecover to attempt this on their own - and surely there are more people stuck on extracting some information from what you've provided.
If using btcrecover the following information is needed for --data-extract.


Partial Bitcoin Core encrypted master key, salt, iter_count, and crc in base64:
Code:
YmM64LYAAfzSnXMMKY3nU446Bwnk/bc42KxhtbA8WC1yQhTQfmbCYGrk/L44AQAA5o2b

You can generate this by editing the extract scripts included in that tool. Excerpt from extract-bitcoincore-mkey-from-pywallet.py.

encrypted_master_keytest = "3ce2900d6c2df58a1cfa9ea1755a1599e0b60001fcd29d730c298de7538e3a0709e4fdb738d8ac61b5b03c582d724214" #Hardcode from OP
saltnumber = "d07e66c2606ae4fc" #Hardcode from OP

encrypted_master_key = base64.b16decode(encrypted_master_keytest, True)  # True means allow lowercase
salt                 = base64.b16decode(saltnumber, True)
iter_count           = int(80062)

print("Partial Bitcoin Core encrypted master key, salt, iter_count, and crc in base64:", file=sys.stderr)

# Only include the last two AES blocks (last 32 bytes) of the 48-byte encrypted master key
bytes = b"bc:" + encrypted_master_key[-32:] + salt + struct.pack("<I", iter_count)
crc_bytes = struct.pack("<I", zlib.crc32(bytes) & 0xffffffff)

print(base64.b64encode(bytes + crc_bytes))

If you've made it this far, then the issue is likely your amount of computing power; without either having a large amount of GPUs or a more defined tokens list / logic, then you cannot move forward.

You can try a command such as the following:
Code:
C:\python27\python btcrecover.py --data-extract --enable-gpu  --tokenlist tokens.txt --typos 3 --typos-capslock --typos-swap --typos-repeat --pause

Hopefully we can help recover this for the OP. If I've made any mistakes above please let me know. Thanks.

EDIT:

Adding link to the btcrecover github as credit is due to them.
https://github.com/gurnec/btcrecover
Mikanoshi
Sr. Member
****
Offline Offline

Activity: 798
Merit: 252


Insane In The Blockchain ⚠


View Profile WWW
December 09, 2017, 12:43:01 PM
 #66

Just wait for quantum computers to recover lost wallets Smiley 1 BTC will cost fortune then, look at it as a forced hodl.

bite
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
December 09, 2017, 09:51:13 PM
 #67


 Email  http://www.walletrecoveryservices.com/ will only cost you 20%  Smiley
faithupgrade
Sr. Member
****
Offline Offline

Activity: 475
Merit: 253


ARCS - A New World Token


View Profile
December 09, 2017, 11:58:05 PM
 #68

I wish people who can crack that would be honest to return the money to you.  Never heard a successful btc address hacking.


Here is the information for the address

   {
            "addr": "12KGAcU47BhCSQJCN9r2dHAvhDALMVsJkk",
            "balance": "15508294",
            "compressed": true,
            "encrypted_privkey": "f912462631805fb602ad6ce5763d6394f25d6374e71a55be1dfe3948bc1f483a256685238ce6459 7ff0afe69b03a8183",
            "label": "Slush",
            "pubkey": "037023ec20116784122552ca485e7459a63228cb067e96c556e30a3b1f8c316a45",
            "reserve": 0
        },

EDIT: Was told that this information is necessary, so here you go

    "mkey": {
        "encrypted_key": "3ce2900d6c2df58a1cfa9ea1755a1599e0b60001fcd29d730c298de7538e3a0709e4fdb738d8ac6 1b5b03c582d724214",
        "nDerivationIterations": 80062,
        "nDerivationMethod": 0,
        "nID": 1,
        "otherParams": "",
        "salt": "d07e66c2606ae4fc"
    },


There is also another address within the wallet that has 3 btc that i am hoping to recover.  I will give the person who produces the successful password 0.5 in addition to the address above, but I guess youll have to trust me on following through.  

Crack this wallet and feel free to take the money, but please message me the password! Or post it here

I forgot the password i used back in 2013 and im dying to figure it out so i can take funds from the other addresses in the wallet.  I really don't remember anything about the password but it wasnt very long

Also, does anyone have any time approximations for bruteforcing according to password length? Such as

5 char = xx min
6 char = xx min
7 char = xx min
and so on.  doesnt have to be exact in any sense im just trying to wrap my mind around how long it would take (assuming gpu acceleration)


Mods, if this is in the wrong subforum feel free to move it!

       ▄▄██████▄
    ▄███████████
  ▄███████▀▀▀▀▀       ▄▄▄
 ▄████
█▀             ████▄
█████               █████▄
█████                 █████
█████                 █████
█████                 █████
█████               █████
 ▀████
█▄           ▄█████▀
  ▀███████▄▄▄▄▄▄▄███████▀
    ▀█████████████████▀
       ▀▀█████████▀▀
ARCS
███████████████████████████████████████████████████████████████████     ██████████████████████████     ██████████████████████████     ██████████████████████████     ███████████████████████████████████████████████████████████████████
A   N E W   W O R L D   T O K E N
|     WEBSITE     |     TWITTER     |   TELEGRAM   |     MEDIUM     |  WHITEPAPER  |
.
███████████████████████████████████████████████████████████████████     ██████████████████████████     ██████████████████████████     ██████████████████████████     ███████████████████████████████████████████████████████████████████
►►  Powered by
BOUNTY
DETECTIVE
ncsupanda
Legendary
*
Offline Offline

Activity: 1628
Merit: 1012



View Profile
December 10, 2017, 05:23:03 AM
 #69

I wish people who can crack that would be honest to return the money to you.  Never heard a successful btc address hacking.


-snipped by ncsupanda-

How can they get the funds? You still require access to the actual wallet.dat file after you figure out the password.
Mikanoshi
Sr. Member
****
Offline Offline

Activity: 798
Merit: 252


Insane In The Blockchain ⚠


View Profile WWW
December 14, 2017, 12:11:41 AM
 #70

How can they get the funds? You still require access to the actual wallet.dat file after you figure out the password.
You decrypt the private key, it's all you need.

someoldcoins
Full Member
***
Offline Offline

Activity: 252
Merit: 105


View Profile
December 16, 2017, 12:52:56 PM
 #71


can we use bitcoin wallet hash "$bitcoin$96" in --wallet=<your_wallet_file> option   ?
Cobalt9317
Copper Member
Sr. Member
****
Offline Offline

Activity: 434
Merit: 278

Offering Escrow 0.5 % fee


View Profile WWW
December 16, 2017, 11:14:58 PM
 #72

Password found: 'xxxxxxxxxxxxxxxxxxxxxx'

This is the closest way to gain access to this bitcoin, that never been circulated since 2013.

The password will become more difficult if you add symbols to your password instead of just numbers, letters or combination of two.

P.S I will save all the information here for the future, who knows I might be able to crack this when the time is right.  Smiley
pecker8000
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
December 19, 2017, 01:32:06 PM
 #73

Hello Butense,
Please run
C:\btcrecover-master\extract-scripts>extract-bitcoincore-mkey.py c:\btcrecover-m
aster\wallet.dat
Partial Bitcoin Core encrypted master key, salt, iter_count, and crc in base64:
YmxxxxxxqaVIxxxxxxxx6PjjUxxxxxxh/Jaxxxxxx8x/GCitxxxxxxxxDxxxxxxx21

and share the data

At least let me too try decrypting the password.

Even you know as it still require access to the actual wallet.dat file after you figure out the password as told by @ncsupanda
baradfo
Full Member
***
Offline Offline

Activity: 232
Merit: 105


View Profile
December 19, 2017, 04:44:02 PM
 #74

I'm surprised this hasn't been resolved yet.
crypto_bee
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
January 11, 2018, 07:01:02 PM
Last edit: January 11, 2018, 10:48:15 PM by crypto_bee
 #75

It is impossible, it would take 85 days with a proper mining rig (6 x rx580) to brute force 8 characters long password consisting of only lower case letters.
theRealQtip
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
January 16, 2018, 11:10:11 PM
 #76

I'm getting about 109.1 kH/s at the moment.. I'm going to spend some cycles on this..
Cereberus
Legendary
*
Offline Offline

Activity: 910
Merit: 1000



View Profile
January 17, 2018, 09:19:14 PM
 #77

No one will be successful brute forcing it, even quantum computers, that is a legend to keep us afraid of the government agencies. During February of last year I have post a .RAR file with a 65 character password and many people here claimed to decrypting it in no time, yet it is almost one year and no one haven't.





    ██    ██    ██    ██
  ██    ██    ██    ██
██    ██    ██    ██
              ██    ██
            ██    ██
          ██    ██
        ██    ██
      ██    ██       
    ██    ██    ██    ██
  ██    ██    ██    ██
██    ██    ██    ██
TRADEPLAYZ
█ 
█ 
█     
█  █
█  █ 
█  █ 
█  █
    █  █
  █  █
  █  █
        █
    █
      █   
TOURNAMENT PVP SYSTEM
  FACEBOOK |  TWITTER  |  LINKEDIN  |  TELEGRAM  |  GITHUB  |  ANN  | INSTAGRAM 

█ 
█ 
█     
█  █
█  █ 
█  █ 
█  █
    █  █
  █  █
  █  █
        █
    █
      █   

                     █▄
                     ████▄
                     ██████▄
                     ████████▄
                     ██████████▄
                     ████████████▄
                     ██████████████▄
                     ███████████████
                     ██████████████▀
                     ████████████▀
                     ██████████▀
                     ████████▀
                     ██████▀
                     ████▀
                     █
█▀
GOOGLE PLAY

                            ▄█████████████▄
                            ███████████████
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            ██████▀▀▀██████
                             ▀████▄▄▄▄████▀
  APPSTORE
bigvito19
Full Member
***
Offline Offline

Activity: 706
Merit: 111


View Profile
January 17, 2018, 09:29:09 PM
 #78

65 characters?Huh
Cereberus
Legendary
*
Offline Offline

Activity: 910
Merit: 1000



View Profile
January 17, 2018, 09:33:26 PM
 #79

65 characters?Huh

Yes and the password make sense only to me. No dictionary brute force program can decrypt it and honestly since I am years ahead compared to even quantum computers in my brain(password only exist in my brain), chances are no one will ever do, at least not in this lifetime.





    ██    ██    ██    ██
  ██    ██    ██    ██
██    ██    ██    ██
              ██    ██
            ██    ██
          ██    ██
        ██    ██
      ██    ██       
    ██    ██    ██    ██
  ██    ██    ██    ██
██    ██    ██    ██
TRADEPLAYZ
█ 
█ 
█     
█  █
█  █ 
█  █ 
█  █
    █  █
  █  █
  █  █
        █
    █
      █   
TOURNAMENT PVP SYSTEM
  FACEBOOK |  TWITTER  |  LINKEDIN  |  TELEGRAM  |  GITHUB  |  ANN  | INSTAGRAM 

█ 
█ 
█     
█  █
█  █ 
█  █ 
█  █
    █  █
  █  █
  █  █
        █
    █
      █   

                     █▄
                     ████▄
                     ██████▄
                     ████████▄
                     ██████████▄
                     ████████████▄
                     ██████████████▄
                     ███████████████
                     ██████████████▀
                     ████████████▀
                     ██████████▀
                     ████████▀
                     ██████▀
                     ████▀
                     █
█▀
GOOGLE PLAY

                            ▄█████████████▄
                            ███████████████
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            █░░░░░░░░░░░░░█
                            ██████▀▀▀██████
                             ▀████▄▄▄▄████▀
  APPSTORE
JamesR1
Full Member
***
Offline Offline

Activity: 294
Merit: 100


View Profile
January 17, 2018, 09:36:37 PM
 #80

Here is the information for the address

   {
            "addr": "12KGAcU47BhCSQJCN9r2dHAvhDALMVsJkk",
            "balance": "15508294",
            "compressed": true,
            "encrypted_privkey": "f912462631805fb602ad6ce5763d6394f25d6374e71a55be1dfe3948bc1f483a256685238ce6459 7ff0afe69b03a8183",
            "label": "Slush",
            "pubkey": "037023ec20116784122552ca485e7459a63228cb067e96c556e30a3b1f8c316a45",
            "reserve": 0
        },

EDIT: Was told that this information is necessary, so here you go

    "mkey": {
        "encrypted_key": "3ce2900d6c2df58a1cfa9ea1755a1599e0b60001fcd29d730c298de7538e3a0709e4fdb738d8ac6 1b5b03c582d724214",
        "nDerivationIterations": 80062,
        "nDerivationMethod": 0,
        "nID": 1,
        "otherParams": "",
        "salt": "d07e66c2606ae4fc"
    },


There is also another address within the wallet that has 3 btc that i am hoping to recover.  I will give the person who produces the successful password 0.5 in addition to the address above, but I guess youll have to trust me on following through.  

Crack this wallet and feel free to take the money, but please message me the password! Or post it here

I forgot the password i used back in 2013 and im dying to figure it out so i can take funds from the other addresses in the wallet.  I really don't remember anything about the password but it wasnt very long

Also, does anyone have any time approximations for bruteforcing according to password length? Such as

5 char = xx min
6 char = xx min
7 char = xx min
and so on.  doesnt have to be exact in any sense im just trying to wrap my mind around how long it would take (assuming gpu acceleration)


Mods, if this is in the wrong subforum feel free to move it!
I will try to do my best but honesty it is difficult as always nothing impossible under the sun . feedback later

   ⚡⚡ PRiVCY ⚡⚡   ▂▃▅▆█ PRiVCY (PRIV) is a new PoW/PoS revolutionary privacy project  ☞ Best privacy crypto-market! █▆▅▃▂
    Own Your Privacy! ───────────────── WebsiteGithub  |  Bitcointalk  |  Twitter  |  Discord  |  Explorer ─────────────────
   ✯✯✯✯✯                 ✈✈✈[Free Airdrop - Starts 9th June][Tor]✈✈✈ ║───────────║ Wallet ➢ Windows  |  macOS  |  Linux
Pages: « 1 2 3 [4] 5 6 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!