Eth Cracking

Phil Do
7 min readJun 17, 2017

edit 03/10/21: If you’ve tried to email me, and I haven’t responded, it’s likely because gmail has mistakenly delivered it to my spam folder (unfortunately, many scams use words like “cryptocurrency”…). Please re-send your email if you are still looking for help, and I haven’t responded!

Early Monday morning (June 12, 2017), I saw a post on reddit titled “How to generate a big password list for a brute force attack for my Ethereum wallet?”. Sweet.

Edit: Since it looks like the guy deleted the text content of the post (a pretty smart move…), I’ll summarize: “Hey! I’ve locked myself out of my ethereum wallet, I know the password is something like abcdefg1234567- somebody help me!”

Long story short, it was a rare opportunity to put my “programmer whiteboard interview skills” to work. Spoiler- everything worked out great! Here’s a quick overview of what I did, and why I think it’s interesting.
(If you are currently reading this in a desperate search for a way to crack your own ethereum wallet, read on for some free tools I made that might be able to help you out. If that doesn’t work, shoot me an email at phildo211 with google’s email service.)

Alright. So, step one was to generate a text file containing all similar passwords to abcdefg1234567 (<- not the actual password). This was the easy part. There’s a concept called Levenshtein Distance that defines “closeness” of two strings by the number of “steps” it takes to get from one word to another (a “step” is either a character deletion, a character substitution, or a character insertion).

This is an example of a kind of problem you can find yourself thinking way too hard about, to the detriment of actually solving the problem. It’s literally a couple nested for loops: iterate over all characters of the base string, at each character iterate over all possible operations. printf each time. Done.

The guy in the post (Mr. Reddit) was wrestling with getting it to work with various javascript and python libraries, I hacked together a one-off in c (The simple, straightforward approach!). If you want to modify it for your own efforts, you can find it here. (Note that when I say “hacked together”, that means no comments, no documentation, use-at-your-own-risk, etc…)

Implementation aside, Levenshtein distance has a predictable property: the larger the distance, the bigger the possibility space.

Quick Math Break: If n = number of characters in the base password, m = number of characters in the list of plausible character substitutions/insertions, then possible deletions = n, possible substitutions = n*m, and possible insertions = (n+1)*m. So each additional Levenshtein step multiplies the space by (n+(n*m)+((n+1)*m)) = really big. We don’t take into account redundancies, because that accounts negligibly toward the possibility space (there you go thinking too hard about the problem again!).

All you need to know about that is- hope you’re only a Levenshtein distance of 1, maybe 2, from the actual password. Or get a lot of really fast computers.

Great. So the next problem is to find a way to crack this thing. There are a couple approaches one could take:

  • Notice that just about every ethereum utility (wallets, etc…) is open source. Find a repository and dig up the bits about verifying a password against a wallet.
    Uh, no way. Those repositories are huge, mature, and battle-safe (at least, hopefully…). I’m bad enough as it is reading other people’s code- now I’m supposed to dig through layers of UI, security, data flow, cross platform nonsense, just to get at a single snippet of crypto? And I have to bring along every library/plugin/IDE expected by the repository to do it? We have to acknowledge we only need a one-off quick solution!
  • See if anyone else has already solved exactly the problem I currently have.
    This was _so close_ to working. We found this, which almost got us there. The problem is it used a v1 spec’d ethereum wallet. Mr. Reddit man had a v3. The purpose of trying to use someone else’s code is to spare me the burden of thoroughly understanding the problem space myself. If I’m going to need to hack apart his solution and implement my own cracking anyways, now I have _two_ burdens: understanding the problem space _and_ understanding this random person’s codebase. The only thing I’d get out of it is a free for loop that iterates through a text file. Not worth it.
  • Really thoroughly understand the crypto, and just do it yourself.
    I’m not going to lie- I tried this. And failed. There’s a _lot_ about crypto I just don’t yet grok. And given I was literally racing with other reddit users trying to solve this guy’s problem before me, I didn’t have time for a week long course or two.
  • Understand the problem space well enough to know what you know, and what minimal steps you can take to cover what you don’t.
    Bingo. I ended up downloading two python modules: multikdf, and hashlib. The spec for v3 ethereum wallets was simple enough to understand, so long as you’re willing to blackbox things like scrypt and sha256. The final result is here. (As a bonus, it turns out you only need to get halfway through the spec to get to “verification”, which means a huge gain on perf that likely wouldn’t have been found had I just plugged it in to an API that opens wallets.)

Woof. Ok. So now we have our one-off password generator, and our one-off wallet verifier. Time to plug in the base password and wallet details, and let ‘er rip!

In the ensuing 9 hours it would take for the program to run, I’m going to break to talk about an interesting detail in the underlying cryptography.

The wallet is specified to use a kdf (key derivation function) of it’s choice, but a common option is to use “scrypt”. Scrypt is an algorithm that, by design, takes a bit of time to run. That time is variable on a specified “n”- or “iterations through a part of the algorithm”. The reason it is designed to take a long time to run is so it’s hard to, well, do precisely the kind of thing we’re trying to do: brute force it.

N can be whatever the wallet-generator wants. You could set n such that it would take 5 minutes to try any possible password combination. The problem with that decision is two-fold: 1. you will have to wait 5 minutes every time you use your password legitimately, and 2. if you ever find yourself in a situation where you need to brute force your own password, you’d render it impossible. But hey, no bad guys are getting in either!

This is where the selection of an “n” gets interesting. We talked about how huge the possibility space of even a small Levenshtein distance gets. Well, that space is nonsensically huge when dropped to the possibility space of “any possible password” (m^n. A much simpler equation, but do not underestimate the power of exponential growth. lol.). So, where an “n” causing 1 second delays at each attempt isn’t enough to stop someone who has an idea of what your password likely is, it’s _way more_ than enough to stop someone who’s trying to brute force it from scratch.

We were fortunate that Mr. Reddit man had a low n- it took approximately 0.2s at each attempt (_way_ more than enough to stop a from-scratch brute-forcer). I’ve since been contacted by someone with the same problem, who has a much higher n. ~2s per attempt. Ouch does that make this more difficult. As of the time of this writing: the program has been running for ~30 hours, and isn’t close to finishing…

It’s this point that is making me reconsider just cranking my n to the max every time I’m setting crypto parameters. But who knows, maybe that’s a terrible idea. (Do Not Take an Internet Rando’s Advice On Cryptography ¯\_(ツ)_/¯)

So, to wrap things up, the program eventually stopped, claiming the lost password. I gave Mr. Reddit his password, he rewarded me with some ethereum from said wallet, and we all went our own separate ways, the world just a little bit brighter.

If you need to generate passwords of your own, you can start here:
https://github.com/Phildo/brutedist

If you’ve got a list of passwords, and want to try them against your wallet, you can try here:
https://github.com/Phildo/ethbrute
(Yes, I’m aware I’ve committed wallet details to this repository. The password is “thisisatestwallet”. Knock yourselves out.)

Let me know if you want some help with your own password:
phildo211 at google’s mail service.

Give me eth because you’re a nice person:

Thanks for reading!

Update (1/15/18): I’ve since worked with many people, to varying success/failure in recovering their passwords. I’ve also refined my methods (including the ability to work with presale wallets!), and have a really nice cracking rig! Let me know if you’d be interested in my help. :)

Here’s my PGP key if you’re so inclined (apologies for medium’s lack of fixed-width font rendering):

— — -BEGIN PGP PUBLIC KEY BLOCK — — -

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
76W5VA==
=GVjJ
— — -END PGP PUBLIC KEY BLOCK — — -

--

--