Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
brutto — お好みの対象への簡単なブルートフォース攻撃 - Jose Pino | Kitploit
ツール/GitHubGitHub/jofpin/brutto
パスワードクラッキングパスワード攻撃ユーティリティとフレームワーク
GitHubjofpin/brutto

brutto

お好みの対象への簡単なブルートフォース攻撃 - Jose Pino

リポジトリを見るウェブサイト
651211年前Kitploit レビュー済み

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

brutto

思いのままに簡単ブルートフォース、増加する値と直接の魔法。

実装

  • git clone https://github.com/jofpin/brutto.git でクローン
  • 最新バージョンをダウンロード
  • Python でインストール: python setup.py install
root@kitploit:~
# ライブラリをインポート
from brutto_easy import Brutto

使い方

  • 大文字小文字を区別したすべての英字 (A - Z) を含む
  • すべての数字 (0-9) がプロセスに反映される
  • 記号とスペースもすべて含む

設定

  • scope
  • letters
  • numbers
  • symbols
  • space

基本

  • increase
  • direct

デフォルト設定でのテスト (increase)

root@kitploit:~
# brutto を呼び出す
test = Brutto()

# 実装例
for example in test.increase(letters=True, numbers=True, symbols=False, space=False, scope=4):
    print example

デフォルト設定でのテスト (direct)

root@kitploit:~
# brutto を呼び出す
bruteforce = Brutto()

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

letters の増加にカスタム値を追加する場合。scope=(1-5)

root@kitploit:~
# brutto を呼び出す
test = Brutto()

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

英字と数字、および expanded scope=(1-8) の場合

root@kitploit:~
# brutto を呼び出す
test = Brutto()

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

著作権 © 2015 Jose Pino


ツールをダウンロード