seevik2580 / ethereum-wallet-recovery

ethereum wallet recovery password multithread tool, baked from pyethrecover and pyethereum, for using keystore v3 json file to help recover your lost password if you know some phrases using both brute and wordlist technique, start + end words, whole ascii or just numbers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

help

pi4a opened this issue · comments

hello.
how to change generator, so you can generate generic passwords from 12 characters?

new commit 38c343c, now you can specify lenght min/max

generate all permutations of numbers 1,2,3,4,5,6,7,8,9,0 with minimal lenght 8. less lenght size is skipped.

python generuj.py -min 8 -s "1,2,3,4,5,6,7,8,9,0"

generate all permutations of numbers 1,2,3,4,5,6,7,8,9,0 with maximal lenght 4, more lenght size is skipped.

python generuj.py -max 4 -s "1,2,3,4,5,6,7,8,9,0"

Thank you