Skip to content
KitploitKITPLOIT
ToolsExploitsBlog
Submit
ToolsExploitsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
brutto — Easy brute forcing to whatever you want - Jose Pino | Kitploit
Tools/GitHubGitHub/jofpin/brutto
Password CrackingPassword AttacksUtilities & Frameworks
GitHubjofpin/brutto

brutto

Easy brute forcing to whatever you want - Jose Pino

View RepositoryWebsite
6512811 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

brutto

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

Implementation

  • Clone git clone https://github.com/jofpin/brutto.git
  • Download the latest version
  • Install with Python: python setup.py install
root@kitploit:~
# 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)

root@kitploit:~
# 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)

root@kitploit:~
# call brutto
bruteforce = Brutto()

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

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

root@kitploit:~
# call brutto
test = Brutto()

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

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

root@kitploit:~
# call brutto
test = Brutto()

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

Copyright, 2015 by Jose Pino


Download Tool