Title: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: f3tus on August 01, 2021, 01:01:11 PM I saw this (https://www.reddit.com/r/CryptoCurrency/comments/ouuzrs/a_thread_of_just_fucking_dont/) thread of "don't do's" on Reddit and decided to do the opposite; I will write down and post my mnemonic seed words for everyone to see:
Code: bacon bitter goddess sheriff differ kit sock stomach rhythm skill trade drastic There is an x amount of crypto I put there as an award for whomever manages to get ahold of it. It is encrypted with a date shift cipher using this script I wrote: Seedshift (https://github.com/mifunetoshiro/Seedshift). I basically used 1-4 dates in YYYY-MM-DD format to shift the mnemonic words (modulo 2048 to wrap around the wordlist, you can do it manually without the script). Basically you can brute-force my encrypted seed words by trying date combinations until you find the correct x ones I used and get the crypto prize. This in itself could also be considered a real-time simulation of how long it would take for a potential thief (with programming background and who also magically knows it is encrypted with a date shift cipher) to steal my crypto before I manage to transfer it somewhere safe (and also to validate how safe and secure my method of storing my mnemonic seed words is). So anyway, good luck to everyone and get crackin'! Edit: The puzzle got solved. See the write-up here: https://www.reddit.com/r/CryptoCurrency/comments/p2jkh3/how_i_solved_utoshiromiballzas_puzzle_in_just/ Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: BrewMaster on August 01, 2021, 01:44:12 PM Quote x amount of crypto you should also include the address containing the funds and the amount of it. this puzzle may not even be worth the time for example if it contains some small amount of a shitcoin. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: COBRAS on August 01, 2021, 02:00:42 PM Put 0,5 btc to adders, send from this adress 0.0000000001 btc to any address, wait and you see result.
Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 01, 2021, 02:09:01 PM you should also include the address containing the funds and the amount of it. this puzzle may not even be worth the time for example if it contains some small amount of a shitcoin. It's not a shitcoin wallet, and you wouldn't know how much (and of what) an encrypted wallet you found/stole contained either until you cracked it.I'll just say it has more than $10. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: PawGo on August 01, 2021, 02:28:32 PM Doable...
Could you at least say which address we should check (first?) and if it is BIP32 or BIP84 or... ? Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 01, 2021, 03:23:48 PM BIP44, and some more clues from Reddit: I used 2 dates from 1900-2021.
Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: NotATether on August 01, 2021, 03:54:36 PM Doable... Could you at least say which address we should check (first?) and if it is BIP32 or BIP84 or... ? 748016^3 combinations of dates if we use years from 0-2048 and all months/days and ignore 1900-2021 range. OP, which timezone/country are you in? Did you move the coins in the address before or after you posted this challenge? UPDATE: using python datetime() + timedelta of 693595 gives 1900-01-01 and + 738154 gives 2021-21-31, so that is our range, and the difficulty is: Code: minv=693595 i.e. unless you have hundreds of CPUs then it's not doable on CPU. However 2^46 can be tackled by one GPU. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 01, 2021, 04:27:51 PM 748016^3 combinations of dates if we use years from 0-2048 and all months/days and ignore 1900-2021 range. Timezone/country doesn't matter and I put the coins there before the challenge. The 2 dates I used are in 1900-2021 range, shifted in YYYY-MM-DD format from oldest to youngest date, so knowing that, the number of possible combinations lowers, because the 1st date you shift should always be older than the second. :)OP, which timezone/country are you in? Did you move the coins in the address before or after you posted this challenge? Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: PawGo on August 01, 2021, 04:53:14 PM I have a working solution - knowing address would make it much easier (faster), now I am stuck on creating list of addresses and checking them against addresses with balance (I must transfer file between machines etc.).
Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: NotATether on August 01, 2021, 04:58:02 PM Timezone/country doesn't matter Oh it does :) it allows us to go to a block explorer and skim it for addresses inside transactions made between midnight (wherever your TZ is) and date of the OP so we can check the results against a list of addresses instead of making an expensive network call. This assumes you made the transaction today though, where "today" begins at midnight, your timzeone. But if you don't tell us we can always assume it was made in Hawaii timezone (UTC-10) which isn't going to add too many extra addresses if we use its midnight as the starting point. ;) A few gems I'll post here; they are the basis for a client-server implementation I'm writing that'll let everyone share the load on their systems: Server: Code: !/usr/bin/env python Client: Code: #!/usr/bin/env python It won't run as is though because this is just a skeleton I found in a book and slightly adapted to act as a PoW server, similar to the stratum servers used in mining. EDIT: I just tried querying Blockchair's API, it limits me to 10 records per call, ironically I went to buy an API key but their only payment processor is PayPal (!) I mean, not even CC, much less crypto. So this means unless someone already has an API key it is technically infeasible to gather a large number of addresses. I think this highlights one of the big problems with the current state of APIs, namely, there is no easy way to [pay to] query them in bulk, if you can even query them at all - and Blockchair is pretty much the only one with this feature (blockchain.info has a very very limited set of endpoints). Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 01, 2021, 05:09:39 PM Oh it does :) it allows us to go to a block explorer and skim it for addresses inside transactions made between midnight (wherever your TZ is) and date of the OP so we can check the results against a list of addresses instead of making an expensive network call. Hey, that's cheating! ;DTitle: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: pooya87 on August 02, 2021, 04:01:56 AM Shift ciphers aren't considered strong and should never be used to encrypt anything important such as a bitcoin mnemonic.
Also whether or not someone solves this "puzzle" should not be used as an indication of security of this algorithm. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 02, 2021, 04:59:01 AM Shift ciphers aren't considered strong and should never be used to encrypt anything important such as a bitcoin mnemonic. Is it safer than storing it in plain-text? Yes. Does it give you a lot of more time to react and move your coins in case someone breaks in and steals your written down seed words? Yes.Also whether or not someone solves this "puzzle" should not be used as an indication of security of this algorithm. What's a safer and easier alternative to store your seed words and in case something happens to you, your loved ones can decrypt the words? Other than a complex passphrase on a Trezor/Ledger, which you would also need to write down in plain-text and make it a security risk? Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: pooya87 on August 02, 2021, 05:03:37 AM What's a safer and easier alternative to store your seed words and in case something happens to you, your loved ones can decrypt the words? Encryption using a cryptographic strong encryption algorithm such as AES using a proper passphrase then creating proper backups from the encrypted result and the passphrase used and storing them separately.Quote Other than a complex passphrase on a Trezor/Ledger, which you would also need to write down in plain-text and make it a security risk? Even though this is called "passphrase" but it is not encrypting anything, it is "extending" the seed phrase and should not be considered a proper security measure.P.S. https://security.stackexchange.com/questions/18197/why-shouldnt-we-roll-our-own Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 02, 2021, 05:26:46 AM How do I explain to my mother to AES decrypt "71TjQQYPkadCq8qUA6Lqt7FhUBEjPSzgDSbBA6spbtD/j8v3JXp9Vpco0H8rS/TK2/IOMS0aHF5QIyLihGuP2dSgdoKdyDrb82O72tNPdT4=" and ensure to type it out correctly?
Birthdays and anniversaries everyone remembers, and with 24 seed words you can shift it with up to 8 dates. Never said it's unbreakable, but it's not easy to break either, it gives you plenty of time to react in case of theft and it's simple enough by knowing the dates to do it by hand. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: NotATether on August 02, 2021, 09:25:12 AM Field day 2, so to get a list of addresses that could've been OP's challenge address, I went to the "outputs" database dumps of Blockchair and downloaded the spreadsheets for August 1 and July 31 (the former was not available until today hence the wait). It is a little slow, but the download speed is a manageable 10 minutes on a high-speed ethernet network.
The next step is to (1) filter out all the coinbase outputs, (2) filter all the non- pubkeyhash outputs and (3) filter out all outputs <= $10. Then we filter outputs that are less than $100 because let's be honest, a challenge worth less than $100 are not worth solving :P when I applied this filter on the website it eliminated a surprisingly large number of transactions. I am expecting to be left with some 10 thousand addresses which can then be placed in a bloom filter. All spreadsheet software are either lagging or outright crash when I open the DB dump so I have to resort to dirty Python tricks again to apply the above. How do I explain to my mother to AES decrypt "71TjQQYPkadCq8qUA6Lqt7FhUBEjPSzgDSbBA6spbtD/j8v3JXp9Vpco0H8rS/TK2/IOMS0aHF5QIyLihGuP2dSgdoKdyDrb82O72tNPdT4=" and ensure to type it out correctly? I'm sure even most developers (https://bitcointalk.org/index.php?topic=5351137.msg57558006#msg57558006) have trouble doing that. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 02, 2021, 10:29:21 AM Remember that you don't know which crypto wallet this is, or if the award is only on one or more crypto wallets with the same seed words.
Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: PawGo on August 02, 2021, 12:02:36 PM Remember that you don't know which crypto wallet this is, or if the award is only on one or more crypto wallets with the same seed words. Does it mean that award is not on the first address (from first account)? Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 02, 2021, 12:10:11 PM It means it could be BTC or ETH or both.
Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: PawGo on August 02, 2021, 12:13:47 PM It means it could be BTC or ETH or both. Oh, so I gave up. I processed around 10% dates & BTC addresses - first ones from the seed in BIP44: m/44'/0'/0'/0/0, but if your coins could be anywhere and even we do not know which coins we look for - it is waste of energy. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: NotATether on August 02, 2021, 01:32:56 PM It means it could be BTC or ETH or both. Oh, so I gave up. I processed around 10% dates & BTC addresses - first ones from the seed in BIP44: m/44'/0'/0'/0/0, but if your coins could be anywhere and even we do not know which coins we look for - it is waste of energy. Unfortunately, the BIP39 wordlist is the same for both BTC or ETH but the paths are different: For eth it's m/44'/60'/0'/0'/0. :-[ Only the Coin Type (second) number changes with each coin so in the wacky situation he is also hiding e.g. LTC (and at this point I strongly doubt it's a meager amount less than $100 if it's stored across multiple cryptos) then you just have to change the coin type to the number for LTC paths to search it was well. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: PawGo on August 02, 2021, 01:38:22 PM It means it could be BTC or ETH or both. Oh, so I gave up. I processed around 10% dates & BTC addresses - first ones from the seed in BIP44: m/44'/0'/0'/0/0, but if your coins could be anywhere and even we do not know which coins we look for - it is waste of energy. Unfortunately, the BIP39 wordlist is the same for both BTC or ETH but the paths are different: For eth it's m/44'/60'/0'/0'/0. :-[ Only the Coin Type (second) number changes with each coin so in the wacky situation he is also hiding e.g. LTC (and at this point I strongly doubt it's a meager amount less than $100 if it's stored across multiple cryptos) then you just have to change the coin type to the number for LTC paths to search it was well. Yes, I know all of that, the problem is that first we must check if any generated address contains coins, so for each seed you must generate several addresses. Anyway - it is doable, generation of shifted seeds is easy, the problem lies in fact that you do not know what to generate from the given seed - too many possibilities. If it would be known that is it (for example) BTC on first address - it would make it easy. The knowledge that BTC is created using BIP44 is already a lot. But I do not want to waste time not knowing the stake. Later maybe I will commit to github Worker I created (based on my LostWord program) to solve 'shifted' seeds. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 02, 2021, 02:58:31 PM Remember also that not all seed words generated are valid, the 12th/24th are checksums, so if it fails the checksum test it's obviously not the right mnemonic seed/date.
Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: NotATether on August 02, 2021, 04:47:08 PM Remember also that not all seed words generated are valid, the 12th/24th are checksums, so if it fails the checksum test it's obviously not the right mnemonic seed/date. D'oh! And here we are trying to derive all seeds formed by the date shift combinations... :-[ I have no idea how I'm going to fit a checksum function in the code though. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: PawGo on August 02, 2021, 05:09:58 PM Remember also that not all seed words generated are valid, the 12th/24th are checksums, so if it fails the checksum test it's obviously not the right mnemonic seed/date. D'oh! And here we are trying to derive all seeds formed by the date shift combinations... :-[ I have no idea how I'm going to fit a checksum function in the code though. It does not matter - you create words by shifting and then you try to generate address - seed is correct and it works or incorrect - so you may skip it. I would not focus on that during shifting. Still the questions are: - which address (derivation path) should be used? - what is the stake? - why do we do it? Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: NotATether on August 02, 2021, 05:48:20 PM It does not matter - you create words by shifting and then you try to generate address - seed is correct and it works or incorrect - so you may skip it. I would not focus on that during shifting. Still the questions are: - which address (derivation path) should be used? - what is the stake? - why do we do it? I definitely agree with the second point, IMO it's not worth the expenses paid for all this cracking material being used if the reward is less than say $500. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 02, 2021, 06:12:23 PM It is less than $500.
Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: j2002ba2 on August 02, 2021, 07:18:20 PM It is less than $500. For 12 word BIP39 on average every 16th try will have a valid checksum. If I got it correctly there are only 2 dates 1900-2021, so the complexity is around 365.242*1212/16 = 226.9 PBKDF2. Single address derivation (the usual non-hardened) is about 10 times faster than PBKDF2. Generating all the master keys would take about 1-2 minutes on 4xV100 (amazon p3.8xlarge), but to develop and test it would cost much more time. Not worth it. Let's look at the "hardest" 12 word "encryption". If only valid dates are supplied (i.e. no 37th day of 185th month), then the complexity is 365.243*20483/16 = 254.5 PBKDF2. Going through all combinations would take ~461 years on 4xV100. Of course this scheme has an enormous weakness - since the dates are to be easy remembered, then the range would be significantly smaller. For example 3 dates in interval 1900-2021 give complexity 242.3, or about 35 days on 4xV100. Inserting a memorable date from the past doesn't help either. It looks more like security through obscurity. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 03, 2021, 06:41:19 AM It looks more like security through obscurity. As I wrote on my github: Quote Note that the encrypted words/numbers are not cryptographically secure, as they can be bruteforced to get the original words, but they do give you some protection from the common thief and some extra time to react in case of theft, etc. Is the above true? Yes. Is it safer than writing it down in plain text? Yes.Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: j2002ba2 on August 03, 2021, 08:43:56 AM It looks more like security through obscurity. As I wrote on my github: Quote Note that the encrypted words/numbers are not cryptographically secure, as they can be bruteforced to get the original words, but they do give you some protection from the common thief and some extra time to react in case of theft, etc. Is the above true? Yes. Is it safer than writing it down in plain text? Yes.No. It was "safer" before you published it. Now it's no more. The obscurity is gone. Way "safer" would be to use the dates as an additional passphrase, maybe as text and together with other words. This way you wouldn't need additional software, it already works, not only with BIP39, but electrum seeds as well. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 03, 2021, 10:46:14 AM No, it's still safer than writing down your seed words in plain text, there's no debating this, otherwise this puzzle would already be solved.
The obscurity is still there, because in the real world you wouldn't know what method someone used to encrypt their seed words. Here in this controlled environment I gave out the exact algorithm used and hints and still nobody solved it. In the real world you wouldn't know any of this. If I just posted an encrypted seed word mnemonic here without the method I used and without any hints whatsoever it would be impossible to crack, same is when a thief comes across your encrypted mnemonic. I know about using an extra passphrase, as I wrote on github: Quote The purpose of this is to be able to safely write down your mnemonic seed words, not having to worry about a thief stealing your private keys, and in case something happens to you, allow your family to regain access to your wallet without needing to know a complex passphrase (TREZOR/Ledger), as all they need to know is the dates you used and the method to decrypt the words (pretty easy if it's in-family birthdays). Gather them around the table and do a couple of examples by hand. If you have a TREZOR or Ledger hardware wallet, having a complex passphrase as the "25th" word is more secure, but the more complex the passphrase is, the easier it is for your family or even you to not remember it at all (unless you wrote it down, which is a security risk in itself). If something were to happen to you, having a simpler passphrase (such as names or birthdates) would make it easier for your family to remember and access your wallet, and you could use both a passphrase and encrypt the seed words with a date shift cipher for extra security. MetaMask for example does not support the 13th/25th passphrase, so if someone has a MetaMask seed how would you safely write it down? Most wallets generate 12 or 24 seed words without the possibility of adding an extra passphrase, how would you safely write them down? My method works and is secure. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: PawGo on August 08, 2021, 09:18:03 AM Could you confirm that coins are not BTC on the first address of the first account (m/44'/0'/0'/0/0)?
I have processed all the dates in the range you mentioned and checked addresses but without result - so coins are somewhere else or I did something wrong... Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: bob123 on August 08, 2021, 10:45:56 AM No, it's still safer than writing down your seed words in plain text, there's no debating this, otherwise this puzzle would already be solved. It is way less secure than using a strong cipher with the same secret data. Your mechanism leaks bits of the plaintext, which is always bad. You could have just used your 4 dates or whatever shit you are using and use a proper encryption cipher. Then no single bits would have been leaked and you'd be pretty fine. With this however, you are wasting yours and our time. Do whatever you want.. when storing 20$, no one will care. You could also just store it in plaintext. The obscurity is still there And security by obscurity is proven to be bad. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 09, 2021, 03:02:05 PM Could you confirm that coins are not BTC on the first address of the first account (m/44'/0'/0'/0/0)? Yes, I can confirm that.Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 09, 2021, 03:02:25 PM It is way less secure than using a strong cipher with the same secret data. See:Your mechanism leaks bits of the plaintext, which is always bad. You could have just used your 4 dates or whatever shit you are using and use a proper encryption cipher. Then no single bits would have been leaked and you'd be pretty fine. How do I explain to my mother to AES decrypt "71TjQQYPkadCq8qUA6Lqt7FhUBEjPSzgDSbBA6spbtD/j8v3JXp9Vpco0H8rS/TK2/IOMS0aHF5QIyLihGuP2dSgdoKdyDrb82O72tNPdT4=" and ensure to type it out correctly? Birthdays and anniversaries everyone remembers, and with 24 seed words you can shift it with up to 8 dates. Never said it's unbreakable, but it's not easy to break either, it gives you plenty of time to react in case of theft and it's simple enough by knowing the dates to do it by hand. The point ot mnemonic keys is to be able to write them down easily on a piece of paper and recover them if needed, both by yourself and your family if anything happens to you. You really expect anyone to write down 100-300 random characters (or even engrave them on metal plates) and then think your family members will know how to decrypt them? It's pretty much guaranteed your crypto is gone if you die if you use this approach. Some of us actually thought about these what-if scenarios to ensure our families get a piece of the pie if something happens to us. Do whatever you want.. when storing 20$, no one will care. You could also just store it in plaintext. But in the real world you wouldn't know how much crypto a wallet holds. What if it's thousands or millions? Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 09, 2021, 04:00:19 PM The puzzle has been solved!
I will give out more details later! Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: pooya87 on August 10, 2021, 03:06:09 AM The point ot mnemonic keys is to be able to write them down easily on a piece of paper and recover them if needed, both by yourself and your family if anything happens to you. You really expect anyone to write down 100-300 random characters There were no mnemonic at first, there were BIP32 which needed an octet string and could only produce a Base58 string that had 111 characters and was hard to write down. Then someone came up with the idea to encode that octet string as a set of words.If you think writing down the encrypted result as Base64 (or different encodings like Base16, Base58, etc) is hard then you should focus on changing the encoding to something easier to write down instead of changing the encryption! For example the Base64 you posted above is 80 bytes, encoding it as mnemonic is trivial, you just select a word list such as the 2048 words used by BIP39 then split the bits to small chunks that corresponds to the word list word count (11 bits) then print the corresponding words. That turns the 80 bytes into 59 words. (keep in mind the encrypted 256-bit mnemonic will be slightly bigger than 256-bit -or the same 24 words as BIP39- certainly not 640 bit). Code: 71TjQQYPkadCq8qUA6Lqt7FhUBEjPSzgDSbBA6spbtD/j8v3JXp9Vpco0H8rS/TK2/IOMS0aHF5QIyLihGuP2dSgdoKdyDrb82O72tNPdT4= Code: 11101111010 10100111000 Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: f3tus on August 10, 2021, 07:35:43 AM So AES encrypt the seed words with a password, then encode the encrypted text as seed words, so to get my original seed words I have to 1st unencode the encrypted text and then decrypt the encrypted text with a password.
Yes, I'm sure my mom will figure that one out. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: bob123 on August 10, 2021, 08:00:08 AM See: How do I explain to my mother to AES decrypt "71TjQQYPkadCq8qUA6Lqt7FhUBEjPSzgDSbBA6spbtD/j8v3JXp9Vpco0H8rS/TK2/IOMS0aHF5QIyLihGuP2dSgdoKdyDrb82O72tNPdT4=" and ensure to type it out correctly? Birthdays and anniversaries everyone remembers, and with 24 seed words you can shift it with up to 8 dates. Never said it's unbreakable, but it's not easy to break either, it gives you plenty of time to react in case of theft and it's simple enough by knowing the dates to do it by hand. You didn't get it. First, you could just write that down. "Dear mother, decrypt the following thing by pasting it into the software called XXX on my PC: ..." Second, that is not what i wrote. Your secret data you have used for the shift cipher were some dates. You could use exactly these dates (the secret information) as a key in an AES cipher. That would be already way more secure than your approach since it wouldn't leak anything about the plaintext at all. And when decrypting, that is exactly the same effort (Taking secret info X and doing Y). Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: pooya87 on August 10, 2021, 08:40:40 AM Yes, I'm sure my mom will figure that one out. Well if someone is not capable of filling out 2 textboxes in a UI (one with the words and the other with the passphrase used) then they also won't be able to use any other method such as your shift cipher which requires the same 2 inputs (mnemonic and a date)!Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: f3tus on August 10, 2021, 10:08:36 AM Well if someone is not capable of filling out 2 textboxes in a UI (one with the words and the other with the passphrase used) then they also won't be able to use any other method such as your shift cipher which requires the same 2 inputs (mnemonic and a date)! And risk using these online encryption/decryption services who may save the results and steal funds as well? With my method you can do it by hand, you don't need any script.Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: NotATether on August 10, 2021, 10:12:39 AM So, what was the method used to solve the puzzle?
Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 10, 2021, 10:19:37 AM You didn't get it. I think it's you who didn't get it... With my method you don't have to rely on any external software or use online services (and risk theft) to decrypt anything, you can do it by hand. And with my method you can simply write down 12-24 BIP-39 words, not random gibberish 100-300 characters. The point is to write them down on a piece of paper, not store them on a computer in crypto.txt that my mother has access to and can simply copy-paste it. That's just extra risk right there.First, you could just write that down. "Dear mother, decrypt the following thing by pasting it into the software called XXX on my PC: ..." Second, that is not what i wrote. Your secret data you have used for the shift cipher were some dates. You could use exactly these dates (the secret information) as a key in an AES cipher. That would be already way more secure than your approach since it wouldn't leak anything about the plaintext at all. And when decrypting, that is exactly the same effort (Taking secret info X and doing Y). Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: f3tus on August 10, 2021, 10:20:35 AM So, what was the method used to solve the puzzle? Waiting for a write-up from the guy who solved it.Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: bob123 on August 10, 2021, 10:25:21 AM And risk using these online encryption/decryption services who may save the results and steal funds as well? With my method you can do it by hand, you don't need any script. Who said anything about online services? You do trust your Operating System, right? Then just use the built-in tools. As easy as that. I think it's you who didn't get it... With my method you don't have to rely on any external software or use online services (and risk theft) to decrypt anything, you can do it by hand. And with my method you can simply write down 12-24 BIP-39 words, not random gibberish 100-300 characters. The point is to write them down on a piece of paper, not store them on a computer in crypto.txt that my mother has access to and can simply copy-paste it. That's just extra risk right there. You don't need any external software. You can just use your OS. And you also don't need 100-300 gibberish character, it seems you still didn't get it. Just read my last 2 posts again. You can use the same secret which in your case are a few dates. No additional characters. The difference is that you don't use a worthless and non-secure mechanisms which leaks the plaintext (your mnemonic code), but a secure algorithm which is used all over the internet to secure messages. If you don't trust AES, why don't you just use your stupid and insecure shift cipher to communicate with websites instead of TLS? You have been warned. What you are doing is bad and insecure. And that is not an opinion, but a fact. You gain almost zero usability but lose tons of security. I understand that people who don't understand anything at all regarding security and cryptography believe to be able to create a secure mechanisms. Simply because they don't know better. But the truth is, they can't. Believe it or not. We don't care whether you lose your money. The important part is that everyone else reading this knows that your mechanisms is insecure. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 10, 2021, 11:53:08 AM Who said anything about online services? You do trust your Operating System, right? Then just use the built-in tools. As easy as that. Ok, encrypt Code: bacon bitter goddess sheriff differ kit sock stomach rhythm skill trade drastic And you also don't need 100-300 gibberish character, it seems you still didn't get it. Just read my last 2 posts again. You can use the same secret which in your case are a few dates. No additional characters. You still don't get it. AES encrypting the seed words will produce 100-300 gibberish characters that you need to write down on a piece of paper, case-sensitive. Saving them in crypto.txt on my mother's computer is a bigger security risk, even though the encryption is better.Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: bob123 on August 11, 2021, 12:03:45 PM Ok, encrypt Code: bacon bitter goddess sheriff differ kit sock stomach rhythm skill trade drastic To be honestly, i couldn't care less about your approach and whether your mom will understand anything. My only concern here is that others might believe this is a gOoD iDeA. That's the only reason i am commenting here. I absolutely don't care about you and your BTC. You still don't get it. AES encrypting the seed words will produce 100-300 gibberish characters [...] AES is a Block Cipher which works on 16 bytes blocks. Assuming a 12 word mnemonic code, that's 132 bit (=16.5 byte) which results in a 32 byte output. If you want to store the IV together with the cipher text, that would be another 16 byte resulting in 48 byte in total. That's nowhere close to "100-300 gibberish characters". A 24 word mnemonic would result in 16 more bytes (a total of 64 bytes). Now, instead of trying to call other people out on "not getting it" where "it" equals your shitty approach every sane person in the crypto scene wouldn't even touch with a stick, learn the fundamentals. Only then, we can start talking about encryption schemes and security in general. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 11, 2021, 01:22:31 PM To be honestly, i couldn't care less about your approach and whether your mom will understand anything. So when you realize you're talking bullshit and making things up on the fly "jUsT uSe yOuR oS tO eNcRyPt tHe SeEd WoRdS" you just resort to petty remarks and say how you couldn't care less. Hurr durr. Just be honest and admit you're talking out of your ass.My only concern here is that others might believe this is a gOoD iDeA. That's the only reason i am commenting here. I absolutely don't care about you and your BTC. AES is a Block Cipher which works on 16 bytes blocks. Go to https://aesencryption.net/ (something my or your mom would find on the internet), input the seed words, encrypt, count the number of characters. Assuming a 12 word mnemonic code, that's 132 bit (=16.5 byte) which results in a 32 byte output. If you want to store the IV together with the cipher text, that would be another 16 byte resulting in 48 byte in total. That's nowhere close to "100-300 gibberish characters". A 24 word mnemonic would result in 16 more bytes (a total of 64 bytes). Now, instead of trying to call other people out on "not getting it" where "it" equals your shitty approach every sane person in the crypto scene wouldn't even touch with a stick, learn the fundamentals. Only then, we can start talking about encryption schemes and security in general. But you actually still don't get it because you have your head so far up your rear end and you're entirely missing the point: the point is to write down the seed words on a piece of paper and also allow family members to easily access your wallet if anything happens to you. You can either write it down in plain-text, which is not a good idea because any thief finding the paper can steal your funds, or, encrypt the seed words in some way to prevent that from happening.Your pRoPosEd method either involves a) external/online software to do, b) storing it digitally in a file for easier copy-paste into said external software, or c) writing down 100-300 random hard-to-read Base64 characters on a piece of paper, case-sensitive, and hoping for no human error when typing it into said external software (and on paper!). My method doesn't involve external software, you can encrypt/decrypt by hand, you can write it down in easy human-readable words, it can provide plausible deniability and yes, security through obscurity (you wouldn't know whether the seed words I wrote down are encrypted (or how), mistyped, or (as long as the last word is a valid checksum) if I send a small amount of decoy crypto to that wallet, that's all you'd think there is). A wrench attack is the only thing my method is really vulnerable to, because it's obviously crypto seed words the paper holds (hence I also made this easy way to obfuscate the seed words by mapping them to their Traditional Chinese BIP-39 Unicode counterparts: https://github.com/mifunetoshiro/bip39_obfuscator), whereas AES encrypted gibberish gives you greater protection in this regard. A trade-off for easier and more human-friendly storing and recovering of crypto (the very reason why BIP-39 got made, lol. And in any case, the only reason somebody was able to crack this puzzle was because I gave out the exact encryption algorithm and numerous hints to make it intentionally easier. If I just came here and said "crack this, it's encrypted, good luck lol", absolutely nobody would be able to do it, because the possibilities I could have used to encrypt it are endless. It'd be the same as trying to brute-force Satoshi's private keys. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: f3tus on August 11, 2021, 01:27:56 PM Why don't you just use BIP 39 passphrase, then save the seed words on crypto.txt without the passphrase itself? Most wallets do not offer that possibility, they generate a 12, 15, 24 word wallet for you. Of course using TREZOR/Ledger with a passphrase is safer, but you could even use that AND date-shift encrypt it for EXTRA security.Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: bob123 on August 11, 2021, 03:28:40 PM Go to https://aesencryption.net/ (something my or your mom would find on the internet), input the seed words, encrypt, count the number of characters. I don't to visit any website. I know how AES works behind the scenes. I don't care what a random website outputs on an arbitrary input. Your pRoPosEd method either involves a) external/online software to do No, it doesn't. Check openssl for example. It comes with literally every linux distro out there. b) storing it digitally in a file for easier copy-paste into said external software Not true. or c) writing down 100-300 random hard-to-read Base64 characters on a piece of paper, case-sensitive, and hoping for no human error when typing it into said external software (and on paper!). As shown in my previous post, a 12 word mnemonic results in 48 byte which can be easily represented by 48 characters. My method [...] and yes, security through obscurity [...] That is one reason why it is bad. Another one is that it leaks bits of the plain text. Any of these 2 reasons is enough to deem that as a bad design. A wrench attack is the only thing my method is really vulnerable to It's not. Simply cryptanalysis and even bruteforcing is enough to break your "scheme". It might work for you, you can feel safe as much as you want. Trust me, no one here cares about you and your coins. Just stop pretending your "mechanism" is good. It is not even close to being acceptable. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 11, 2021, 05:00:51 PM I don't to visit any website. I know how AES works behind the scenes. I don't care what a random website outputs on an arbitrary input. LOL.No, it doesn't. Check openssl for example. It comes with literally every linux distro out there. Yes it does. Windows does not come with it, so you have to download it or similar software. Stop pretending only Linux exists and that everyone uses or knows how to use Linux.As shown in my previous post, a 12 word mnemonic results in 48 byte which can be easily represented by 48 characters. openssl enc -k blabla -aes256 -base64 -e -in seedwords.txt -out encrypted_seedwords.txt:Quote U2FsdGVkX1/boCM0jlccYHbJiy9dEc0fko5UiDWHTIY/au62xL802na5+2osDm7I 128 characters. Now just let me explain to my mother how to make a bootable Linux distro and run the above openssl command in reverse, noting to remember to use aes256 and not aes192, aes128, etc. Easy.3VZ9JuwDob0mK3lT5ygY1ypkm0/Hp+1fsor3kWtzK/E0AE6Bd50n7YFYlvGmnQp4 That is one reason why it is bad. So BIP-39 is a stupid and bad idea, saving the wallet's key in an easy and human readable format?Another one is that it leaks bits of the plain text. Any of these 2 reasons is enough to deem that as a bad design. It's not. Yes, after I provided the exact algorithm and hints to make it crackable. Once again:Simply cryptanalysis and even bruteforcing is enough to break your "scheme". If I just came here and said "crack this, it's encrypted, good luck lol", absolutely nobody would be able to do it, because the possibilities I could have used to encrypt it are endless. It'd be the same as trying to brute-force Satoshi's private keys. Just stop pretending your "mechanism" is good. It is not even close to being acceptable. Still not getting it and missing the point. Your alternative is to write down 100-300 random characters on a piece of paper (have fun with that) and then require your family to be above-average computer literate to be able to decrypt it. This is exactly why BIP-39 was made, to avoid having to do that, and to write down your wallet's key in an easy and human-readable format. But yes, a better and cryptographically secure (which mine isn't, and I never claimed it was) way would be if there was an accepted standard to convert AES encrypted text into BIP-39 words and write it down that way. But even this way would require extra computer knowledge to decrypt, not something your Average Joe would know how to do. Again, mine is simpler and can be done by hand. A trade-off for simplicity.Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: bob123 on August 11, 2021, 06:51:26 PM That is one reason why it is bad. So BIP-39 is a stupid and bad idea, saving the wallet's key in an easy and human readable format?Another one is that it leaks bits of the plain text. Any of these 2 reasons is enough to deem that as a bad design. BIP39 is neither security by obscurity nor does it leak plaintext bits. Still not getting it and missing the point. Your alternative is to write down 100-300 random characters on a piece of paper (have fun with that) and then require your family to be above-average computer literate to be able to decrypt it. These are neither 100-300 chars, nor is it too difficult for an average person to decrypt it using a 3-5 step instruction. It doesn't make any sense to create a shitty and insecure shift-cipher (which has to be taught how to use) instead for example just a BIP39 passphrase. Most proper wallets can handle this. That would be way more easy to use than either AES or your In the end it comes down to two pieces which have to be stored: the secret and the (encrypted) data. Whether this is your plaintext-leaking-mnemonic [data] with the instruction and dates [the secret] or simply the securely (non-leaking) BIP39 passphrase protected mnemonic [data] and the passphrase [the secret] doesn't matter. The difference is, one is secure while the other one isn't. I'd even argue that the passphrase protected mnemonic is easier to handle for non-techy people than your garbage. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it Post by: f3tus on August 11, 2021, 07:13:43 PM BIP39 is neither security by obscurity nor does it leak plaintext bits. It's an easy way to store your wallet's seed; it doesn't leak anything because it is "the leak". I employ this same simple and easy way to store the seed words, not random 100-300 character Base64 encrypted gibberish. You still don't get it.These are neither 100-300 chars Yes they are, 128 in the example above by AES256 encrypting 12 mnemonic words with the password "blabla". Are you blind or intentionally obtuse?It doesn't make any sense to create a shitty and insecure shift-cipher (which has to be taught how to use) instead for example just a BIP39 passphrase. Most proper wallets can handle this. Most wallets generate your 12-24 seed words for you, without the possibility of using a passphrase, so no. This is meant for those cases. So you've got 3 options: 1. write the seed words as is; 2. write them cryptographically securely encrypted as 100-300 character gibberish; 3. write them down not cryptographically securely encrypted but in easy human-readable BIP-39 words that are still realistically impossible to crack without knowing the method used, which still gives you plenty of time to recover your funds in case of theft. Do you get it now? (well there is the 4th option of buying a TREZOR/Ledger and moving all the funds there)Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: f3tus on August 11, 2021, 07:33:01 PM Anyway, here's the write-up from the guy who cracked it and his code:
https://www.reddit.com/r/CryptoCurrency/comments/p2jkh3/how_i_solved_utoshiromiballzas_puzzle_in_just/ https://github.com/willhblackburn/brute-force-seedshift-puzzle-pub The dates used to encrypt the seed words were: 1956-05-04 2014-08-28 (Hal Finney's birth & death) Encrypted: Code: bacon bitter goddess sheriff differ kit sock stomach rhythm skill trade drastic Code: broom bike glove six devote jazz sunset stereo reunion solid toss disagree Ethereum address: 0x9F316FAe2Bdb7cb6aa31B1776F0fe9041eFc2516 Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: f3tus on August 12, 2021, 01:57:49 PM IMO 7 days is quite short since he use free (?) API and single-thread software. Because I gave out hints it's only 2 dates and in 1900-2021 range, to make it easy.Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: NotATether on August 13, 2021, 12:17:49 AM IMO 7 days is quite short since he use free (?) API and single-thread software. Because I gave out hints it's only 2 dates and in 1900-2021 range, to make it easy.I'm kinda surprised the Etherscan API wasn't rate limiting him. From my experience with APIs, most of them autoban your IP address if you hit them too many times. Sure, they throttle you to a few requests per minute at any rate. That was my original deterrence from making a Blockchair API calling script that running overnight. The bitcoins still haven't been found yet, apparently, only the ethereum. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: bob123 on August 13, 2021, 02:04:59 PM I already read the part where you gave those hint, but i still think it's quite short. This indeed was way too easy. If the probability of winning is larger than negligible (smaller than the inverse of any polynomial function), it is not cryptographically secure and therefore is a bad encryptio scheme. So, even if this mechanisms wouldn't leak plaintext bits (which it does) and if it wouldn't be purely based on security through obscurity (which it does), it still would be a worthless scheme. Title: Re: Brute-forceable puzzle - free crypto for whoever manages to crack it [SOLVED] Post by: f3tus on August 15, 2021, 12:48:21 PM This indeed was way too easy. Because I made it easy enough to be cracked, hence the puzzle.So, even [...] if it wouldn't be purely based on security through obscurity (which it does), it still would be a worthless scheme. It's not. It's not cryptographically secure, but it's still quite secure, depending on how you use it:With 2 dates in 1900-2021 range there are about 1 billion possibilities. With 3 dates it's 14 trillion, with 4 dates it's 158 quadrillion. Good luck cracking that. |