Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
brutto — 轻松暴力破解,任意目标均可 - Jose Pino | Kitploit
工具/GitHubGitHub/jofpin/brutto
密码破解密码攻击实用工具与框架
GitHubjofpin/brutto

brutto

轻松暴力破解,任意目标均可 - Jose Pino

查看仓库网站
6512411年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

brutto

轻松对任何目标进行暴力破解,其魔力在于递增数值并直接生效。

实现

  • 克隆 git clone https://github.com/jofpin/brutto.git
  • 下载最新版本
  • 用Python安装:python setup.py install
root@kitploit:~
# So you import the library
from brutto_easy import Brutto

如何使用

  • 包含所有字母(A - Z),区分大小写。
  • 所有数字都会体现在过程中(0-9)
  • 同样包含所有符号和空格。

设置

  • scope(范围)
  • letters(字母)
  • numbers(数字)
  • symbols(符号)
  • space(空格)

基础

  • increase(递增)
  • direct(直接)

使用(递增)的默认设置测试

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

使用(直接)的默认设置测试

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

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

你也可以为递增字母添加自定义值,范围=(1-5)

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

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

同时启用字母和数字,并增加范围=(1-8)

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

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

版权,2015年,Jose Pino


下载工具