Brutto – Easy Brute Forcing To Whatever You Want

KitPloit – PenTest Tools!–

Easy brute forcing to whatever you want, Its magic increasing values and direct.

Implementation

# So you import the library
from brutto_easy import Brutto

How to use

  • Includes all the letters (A – Z ) in case sensitive.
  • All numbers are reflected in the process ( 0-9 )
  • Also all the symbols and space.

Settings

  • scope
  • letters
  • numbers
  • symbols
  • space

Base

  • increase
  • direct

Default settings test with (increase)

# call brutto
test = Brutto()

# Here I implement
for example in test.increase(letters=True, numbers=True, symbols=False, space=False, scope=4):
print example

Default settings test with (direct)

# call brutto
bruteforce = Brutto()

for example in bruteforce.direct(4):
print example

So you add a custom value to increase letters. scope=(1-5)

# call brutto
test = Brutto()

for example in test.increase(letters=True, scope=5):
print example

With letters and numbers, and increased scope=(1-8 )

# call brutto
test = Brutto()

for example in test.increase(scope=8, letters=True, numbers=True, symbols=False):
print example

Copyright, 2015 by Jose Pino

View original article on KitPloit – PenTest Tools!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s