轻松对任何目标进行暴力破解,其魔力在于递增数值并直接生效。
git clone https://github.com/jofpin/brutto.gitpython setup.py install# So you import the library
from brutto_easy import Brutto
# call brutto
test = Brutto()
# Here I implement
for example in test.increase(letters=True, numbers=True, symbols=False, space=False, scope=4):
print example
# call brutto
bruteforce = Brutto()
for example in bruteforce.direct(4):
print example
你也可以为递增字母添加自定义值,范围=(1-5)
# call brutto
test = Brutto()
for example in test.increase(letters=True, scope=5):
print example
同时启用字母和数字,并增加范围=(1-8)
# call brutto
test = Brutto()
for example in test.increase(scope=8, letters=True, numbers=True, symbols=False):
print example
版权,2015年,Jose Pino