
원하는 모든 것에 대한 쉬운 무차별 대입 - Jose Pino
원하는 모든 것에 대한 쉬운 무차별 대입, 마법같은 증가값과 직접값.
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
증가값에 사용자 정의 값을 추가하여 문자를 증가시킵니다. scope=(1-5)
# call brutto
test = Brutto()
for example in test.increase(letters=True, scope=5):
print example
문자와 숫자를 사용하고 범위 증가 (scope=(1-8 ))
# call brutto
test = Brutto()
for example in test.increase(scope=8, letters=True, numbers=True, symbols=False):
print example
저작권, 2015 by Jose Pino