cr4zyd3v
Newbie
Offline
Activity: 19
Merit: 13
|
|
July 21, 2020, 09:57:32 PM |
|
This video https://www.youtube.com/watch?v=Xml4Gx3huag has a very cool approach about how to find private keys in the open source repos from github.. I wonder if a smart enough sql query could be able to find brain wallets..
|
|
|
|
PlutonowyPokrzycz
Newbie
Offline
Activity: 16
Merit: 8
|
|
January 12, 2021, 03:19:29 PM |
|
Hi, How do you manage to hash 300k passphrases per second? What do you use for that? My Pythons script with 'bictoin' library on 8 cores is doing only 800/s
|
|
|
|
NotATether
Legendary
Offline
Activity: 1778
Merit: 7359
Top Crypto Casino
|
|
January 12, 2021, 05:00:48 PM Merited by malevolent (1) |
|
Hi, How do you manage to hash 300k passphrases per second? What do you use for that? My Pythons script with 'bictoin' library on 8 cores is doing only 800/s He definitely did not use Python because that's the reason your script is so slow! Python executes all statements through an interpreter, it does not compile it down into assembly code so the extra overhead that the Python runtime is adding is killing the speed of your script. You should look into using brainflayer which is written in C, and is optimized with its own hashing functions instead of relying on a third-party library.
|
|
|
|
szosti94
Newbie
Offline
Activity: 5
Merit: 0
|
|
January 23, 2021, 01:21:44 PM |
|
Hi, I have a question about braiflayer, I launched it, found a hash and password, the problem is that I don't know how to get information about the wallet and key, how to get the address and private key with the hash sha265 and password?
|
|
|
|
LoyceV
Legendary
Offline
Activity: 3486
Merit: 17618
Thick-Skinned Gang Leader and Golden Feather 2021
|
|
April 09, 2021, 03:38:30 PM |
|
2. One of those files contained the value of Pi to a billion decimal places. I thought about this post when I found the private key to 111exFkjLXP5mXmEfVqGd2r7bXQhVhux3: it's the second set of pi's 64 hex characters: 9216D5D98979FB1BD1310BA698DFB5AC2FFD72DBD01ADFB7B8E1AFED6A267E96 Back then, it took half a day to be sweep 0.37149557 BTC (41.29 USD).
|
| | Peach BTC bitcoin | │ | Buy and Sell Bitcoin P2P | │ | . .
▄▄███████▄▄ ▄██████████████▄ ▄███████████████████▄ ▄█████████████████████▄ ▄███████████████████████▄ █████████████████████████ █████████████████████████ █████████████████████████ ▀███████████████████████▀ ▀█████████████████████▀ ▀███████████████████▀ ▀███████████████▀ ▀▀███████▀▀
▀▀▀▀███████▀▀▀▀ | | EUROPE | AFRICA LATIN AMERICA | | | ▄▀▀▀ █ █ █ █ █ █ █ █ █ █ █ ▀▄▄▄ |
███████▄█ ███████▀ ██▄▄▄▄▄░▄▄▄▄▄ █████████████▀ ▐███████████▌ ▐███████████▌ █████████████▄ ██████████████ ███▀███▀▀███▀ | . Download on the App Store | ▀▀▀▄ █ █ █ █ █ █ █ █ █ █ █ ▄▄▄▀ | ▄▀▀▀ █ █ █ █ █ █ █ █ █ █ █ ▀▄▄▄ |
▄██▄ ██████▄ █████████▄ ████████████▄ ███████████████ ████████████▀ █████████▀ ██████▀ ▀██▀ | . GET IT ON Google Play | ▀▀▀▄ █ █ █ █ █ █ █ █ █ █ █ ▄▄▄▀ |
|
|
|
NotATether
Legendary
Offline
Activity: 1778
Merit: 7359
Top Crypto Casino
|
|
April 10, 2021, 06:52:56 AM |
|
Just for future reference: Hi, I have a question about braiflayer, I launched it, found a hash and password, the problem is that I don't know how to get information about the wallet and key, how to get the address and private key with the hash sha265 and password?
You start with getting the private key. The double SHA256 hash of the password will give you that, and you can derive the public key from it as normal - Elliptic curve multiply, and then RIPEMD160 the public key, hash that through double SHA256 again and take the first four bytes of that and stick it at the end. Then stick a 0x00 byte at the beginning and encode the combined byte array through BASE58Check to get the address. 2. One of those files contained the value of Pi to a billion decimal places. I thought about this post when I found the private key to 111exFkjLXP5mXmEfVqGd2r7bXQhVhux3: it's the second set of pi's 64 hex characters: 9216D5D98979FB1BD1310BA698DFB5AC2FFD72DBD01ADFB7B8E1AFED6A267E96 Back then, it took half a day to be sweep 0.37149557 BTC (41.29 USD). I think it's just a coincidence that some brainwallets hash to Pi digits since Pi doesn't really have anything to do with number theory.
|
|
|
|
fxsniper
Member
Offline
Activity: 406
Merit: 47
|
|
April 10, 2021, 11:18:36 AM |
|
Brainwallets is keyword or message + sha256 = private key , right?
What if using random 256 number (character) and + sha256 = private key it still safety? or random text 256 character and + sha256 = private key still safety?
Brainwallets count only word and language human read only right?
|
|
|
|
NotATether
Legendary
Offline
Activity: 1778
Merit: 7359
Top Crypto Casino
|
|
April 10, 2021, 11:24:00 AM |
|
Brainwallets is keyword or message + sha256 = private key , right?
Yes. What if using random 256 number (character) and + sha256 = private key it still safety? or random text 256 character and + sha256 = private key still safety?
Think of it this way - your brainwallet is just as secure as a password, so if you hash a 256-character text then the security will be equal to using a 256-character password (that is hashed with double SHA256 into a database by some server somewhere). I would not view any kind of brainwallet safe. Even if you're using extremely long lengths, there is no probably secure brainwallet generator that doesn't leak the password in memory. Brainwallets count only word and language human read only right?
Not quite. Anything that you'd use as a password can be considered a brainwallet, it's not limited to English words, or any language's words in particular.
|
|
|
|
NotATether
Legendary
Offline
Activity: 1778
Merit: 7359
Top Crypto Casino
|
|
April 11, 2021, 09:11:17 AM |
|
Think of it this way - your brainwallet is just as secure as a password, so if you hash a 256-character text then the security will be equal to using a 256-character password (that is hashed with double SHA256 into a database by some server somewhere).
Except the attacker can brute-force unlimited times, while on website/server you have very limited try. Additionally, single SHA-256 uses very few resource and good GPU can make few hundred MH/s. I was actually referring to the case where a site's database with the password hashes is stolen. Then you'd be able to run as many tries as you want.
|
|
|
|
ABCbits
Legendary
Offline
Activity: 3052
Merit: 8055
Crypto Swap Exchange
|
|
April 11, 2021, 09:15:43 AM |
|
I was actually referring to the case where a site's database with the password hashes is stolen. Then you'd be able to run as many tries as you want.
I see, but AFAIK most website isn't that stupid. They usually would use salting, hash the password many times or just use algorithm focused on security (such as PBKDF2). Meanwhile, most brainwallet only use single SHA-256 hash.
|
|
|
|
LoyceV
Legendary
Offline
Activity: 3486
Merit: 17618
Thick-Skinned Gang Leader and Golden Feather 2021
|
|
April 11, 2021, 09:25:20 AM |
|
I was actually referring to the case where a site's database with the password hashes is stolen. Then you'd be able to run as many tries as you want. Brainwallets are much worse: an attacker can try to brute-force all of them at the same time, while with a hacked password database you have to try them one by one (assuming the password hash uses something like hash("secretKey777" + username + password);). So, if 100,000 brainwallets are in use, it's 100,000 times more likely to find one of them than cracking a password. You can improve this by adding for instance your real name or email address as a salt to your brainwallet (but it's still not recommended to do).
|
| | Peach BTC bitcoin | │ | Buy and Sell Bitcoin P2P | │ | . .
▄▄███████▄▄ ▄██████████████▄ ▄███████████████████▄ ▄█████████████████████▄ ▄███████████████████████▄ █████████████████████████ █████████████████████████ █████████████████████████ ▀███████████████████████▀ ▀█████████████████████▀ ▀███████████████████▀ ▀███████████████▀ ▀▀███████▀▀
▀▀▀▀███████▀▀▀▀ | | EUROPE | AFRICA LATIN AMERICA | | | ▄▀▀▀ █ █ █ █ █ █ █ █ █ █ █ ▀▄▄▄ |
███████▄█ ███████▀ ██▄▄▄▄▄░▄▄▄▄▄ █████████████▀ ▐███████████▌ ▐███████████▌ █████████████▄ ██████████████ ███▀███▀▀███▀ | . Download on the App Store | ▀▀▀▄ █ █ █ █ █ █ █ █ █ █ █ ▄▄▄▀ | ▄▀▀▀ █ █ █ █ █ █ █ █ █ █ █ ▀▄▄▄ |
▄██▄ ██████▄ █████████▄ ████████████▄ ███████████████ ████████████▀ █████████▀ ██████▀ ▀██▀ | . GET IT ON Google Play | ▀▀▀▄ █ █ █ █ █ █ █ █ █ █ █ ▄▄▄▀ |
|
|
|
fxsniper
Member
Offline
Activity: 406
Merit: 47
|
|
April 11, 2021, 09:44:39 AM |
|
I agree Brainwallets are much worse
Brainwallets use keywords + sha256
I see mini private key is using by 30 character and hash with sha256 still safety but mini privatekey have format
However random text and number or text only or number only 256 character (or 512 character ) hash with sha256 (64 character), I think it is safety not easy to butte force with random 256 key easy (just 64 bit key but some duplicate some private key will duplicate with number 265 bit (77 character) convert to HEX (64 character)
private key require HEX in 64 character right so, What method to can generate it to safety?
|
|
|
|
NotATether
Legendary
Offline
Activity: 1778
Merit: 7359
Top Crypto Casino
|
|
April 11, 2021, 04:46:16 PM |
|
Just to point out, if you reverse the order in which you hash this stuff and make it hash(password + salt), and you leave the value of hash(password) somewhere, somebody can do a length extension attack, especially on SHA256, by using that value to compute the hash of the password plus anything appended to it without knowing the password itself. And in a way, if your salt is constant and an attacker managers to find it elsewhere, the length extension attack negates the security of the salt.
|
|
|
|
PlutonowyPokrzycz
Newbie
Offline
Activity: 16
Merit: 8
|
|
May 18, 2021, 10:13:42 AM Last edit: May 19, 2021, 09:19:03 PM by PlutonowyPokrzycz |
|
I wonder what was the oldest brainwallet ever found. Vasek reported this one in her paper: "This string contains 0.25 BTC hiding in plain sight." -> 1AJ3vE2NNYW2Jzv3fLwyjKF1LYbZ65Ez64 It has been used for the first time on 2011-07-14. The story behind it here: https://bitcointalk.org/index.php?topic=28877.01. Was there anything older found by anyone? 2. What has been used before? Purely random generated numbers?
|
|
|
|
PlutonowyPokrzycz
Newbie
Offline
Activity: 16
Merit: 8
|
|
May 18, 2021, 10:33:00 AM Last edit: May 19, 2021, 09:18:28 PM by PlutonowyPokrzycz |
|
And look how wrong your first impression can be... I was good until Step 4.
Agreed. We urgently need a user-friendly import/export function in the client! This is the most secure "wallet" there could possibly be. No no copies of wallet.dat, no encryption, no USB stick/paper/printing which can be lost, no malware which secretly steals my coins, no storage or bank vault, no life CD, no nothing! Just a simple passphrase I can remember. Since nothing is stored or written down anywhere this wallet concept is basically impossible to compromise. The only flaw is that I might forget my passphrase, but I can still write hints/clues which can make my help remember while still being 100% secure. We need this. .
|
|
|
|
MrFreeDragon
|
Brain wallets are used for fun purposes I believe: ~$ echo -n "odolvlobo ozono" | sha256sum f98ae1f0a6e25e76429800c26efec5c9938e267867e5b97ed7705b039829dad4 - So, brain wallet for odolvlobo ozono leads to the address 13u28uKzciwUpqCtVrCzk5d8KSbypjokck with the transactions dated 2 years ago
|
|
|
|
PrimeNumber7
Copper Member
Legendary
Offline
Activity: 1652
Merit: 1901
Amazon Prime Member #7
|
|
November 08, 2021, 02:11:46 AM |
|
Let's say (conservatively) that a more modern quad core CPU can do 500,000 and use that as the reference. That means it can check 43.2 billion keys per day.
Brute forcing the "correct horse battery staple" space
Most "brain wallets" are not brute-forced. Hackers will use various literature as a starting point for passphraises, and will use permutations of said phrases to check for a brain wallet with coin unspent. The reason for the above is that, although the English language is vast, and it would be difficult to brute force a random 4-word brain wallet, most people are not going to select words for a brain wallet at random. Most people will select words that are easy to remember because they coincide with a meaningful event, or are otherwise meaningful to the person. This is not random, and as such can be easily be "guessed" by hackers. If you were to create a brain wallet of 4 words randomly selected from 171k English words, it would be one possibility out of ~855 million trillion possible combinations. However, if the brain wallet is created from some set of words in a book or bible verse, the possible combinations is reduced by multiple magnitudes.
|
|
|
|
LoyceV
Legendary
Offline
Activity: 3486
Merit: 17618
Thick-Skinned Gang Leader and Golden Feather 2021
|
|
November 08, 2021, 08:37:25 AM Last edit: November 08, 2021, 09:29:46 AM by LoyceV |
|
Brain wallets are used for fun purposes I believe: ~$ echo -n "odolvlobo ozono" | sha256sum f98ae1f0a6e25e76429800c26efec5c9938e267867e5b97ed7705b039829dad4 - The associated uncompressed Bitcoin address is 1GRUEoTSW9MRcNooxFRt8h8eL9gsPgGxzu, which looks like a vanity address for grue, but it's unused so I guess that is a coincidence. So, brain wallet for odolvlobo ozono leads to the address 13u28uKzciwUpqCtVrCzk5d8KSbypjokck with the transactions dated 2 years ago User odolvlobo Someone just got 555 sats burned donated to miners (it wasn't me).
|
| | Peach BTC bitcoin | │ | Buy and Sell Bitcoin P2P | │ | . .
▄▄███████▄▄ ▄██████████████▄ ▄███████████████████▄ ▄█████████████████████▄ ▄███████████████████████▄ █████████████████████████ █████████████████████████ █████████████████████████ ▀███████████████████████▀ ▀█████████████████████▀ ▀███████████████████▀ ▀███████████████▀ ▀▀███████▀▀
▀▀▀▀███████▀▀▀▀ | | EUROPE | AFRICA LATIN AMERICA | | | ▄▀▀▀ █ █ █ █ █ █ █ █ █ █ █ ▀▄▄▄ |
███████▄█ ███████▀ ██▄▄▄▄▄░▄▄▄▄▄ █████████████▀ ▐███████████▌ ▐███████████▌ █████████████▄ ██████████████ ███▀███▀▀███▀ | . Download on the App Store | ▀▀▀▄ █ █ █ █ █ █ █ █ █ █ █ ▄▄▄▀ | ▄▀▀▀ █ █ █ █ █ █ █ █ █ █ █ ▀▄▄▄ |
▄██▄ ██████▄ █████████▄ ████████████▄ ███████████████ ████████████▀ █████████▀ ██████▀ ▀██▀ | . GET IT ON Google Play | ▀▀▀▄ █ █ █ █ █ █ █ █ █ █ █ ▄▄▄▀ |
|
|
|
odolvlobo
Legendary
Offline
Activity: 4494
Merit: 3401
|
|
November 08, 2021, 08:50:57 AM Last edit: November 08, 2021, 11:56:01 PM by odolvlobo Merited by LoyceV (4), ABCbits (1) |
|
FYI, I don't think that is my address (I don't remember creating it). I don't know why someone would use "odolvlobo ozono" for a brain wallet, except that they noticed the words in a post and thought they were obscure enough to use. Apparently not.
|
Join an anti-signature campaign: Click ignore on the members of signature campaigns. PGP Fingerprint: 6B6BC26599EC24EF7E29A405EAF050539D0B2925 Signing address: 13GAVJo8YaAuenj6keiEykwxWUZ7jMoSLt
|
|
|
MrFreeDragon
|
|
November 08, 2021, 09:59:54 PM |
|
Brain wallets are used for fun purposes I believe: ~$ echo -n "odolvlobo ozono" | sha256sum f98ae1f0a6e25e76429800c26efec5c9938e267867e5b97ed7705b039829dad4 - The associated uncompressed Bitcoin address is 1GRUEoTSW9MRcNooxFRt8h8eL9gsPgGxzu, which looks like a vanity address for grue, but it's unused so I guess that is a coincidence. -snip- Wow, what is the connection between odolvlobo and grue except for the fact they are both Legendary members? Interesting thing that the brainwallet from one's name signature leads to the the vanity address of another one.
|
|
|
|
|