Skip to content

Instantly share code, notes, and snippets.

@jonasbits
Created December 23, 2013 20:33
Show Gist options
  • Save jonasbits/8104111 to your computer and use it in GitHub Desktop.
Save jonasbits/8104111 to your computer and use it in GitHub Desktop.
vanitygen bitcoin regex is possible, but oclvanitygen does not have this option... so i have to make a list
comment = '''1L1ddeLL
1L1dd3LL
1L1ddELL
1L1dDeLL
1L1dD3LL
1L1dDELL
1L1DdeLL
1L1Dd3LL
1L1DdELL
1L1DDeLL
1L1DD3LL
1L1DDELL
1LiddeLL
1Lidd3LL
1LiddELL
1LidDeLL
1LidD3LL
1LidDELL
1LiDdeLL
1LiDd3LL
1LiDdELL
1LiDDeLL
1LiDD3LL
1LiDDELL
2x2x2x3 = 24
generated with the code below
'''
i = ['1','i']
d = ['d','D']
e = ['e','3','E']
for j in i:
for c in d:
for c2 in d:
for r in e:
regex = '1L' + j + c + c2 + r + 'LL'
print(regex)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment