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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
Shreder — Shrederは、強力なマルチスレッドのSSHプロトコルパスワードブルートフォースツールです。 | Kitploit
ツール/GitHubGitHub/entysec/shreder
パスワードクラッキングパスワード攻撃ネットワークセキュリティ
GitHubentysec/shreder

Shreder

Shrederは、強力なマルチスレッドのSSHプロトコルパスワードブルートフォースツールです。

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

人気

すべて見る →

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

すべてのツールを探索

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

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

Shreder

Developer Language Forks Stars CodeFactor

Shrederは、強力なマルチスレッド対応SSHプロトコルパスワードブルートフォースツールです。

特徴

  • 非常に高速なパスワード推測:1パスワードを0.1秒でチェック。
  • 大規模なパスワードリストに最適化:Shrederは1分40秒で1000パスワードを試行。
  • シンプルなCLIおよびAPIの使用方法。

インストール

root@kitploit:~
pip3 install git+https://github.com/EntySec/Shreder

基本的な使用方法

Shrederを使用するには、ターミナルでshrederと入力するだけです。

root@kitploit:~
usage: shreder [-h] [-p PORT] [-u USERNAME] [-l LIST] [-d DELAY] target

Shreder is a powerful multi-threaded SSH protocol password brute-force tool.

positional arguments:
  target

optional arguments:
  -h, --help            このヘルプメッセージを表示して終了します
  -p PORT, --port PORT  SSHポート。
  -u USERNAME, --username USERNAME
                        SSHユーザー名。
  -l LIST, --list LIST  パスワードリスト。
  -d DELAY, --delay DELAY
                        ログイン試行間の遅延。

例

単一ターゲットへのブルートフォース

お遊びで自分のデバイスをブルートフォースしてみましょう。

root@kitploit:~
shreder 192.168.2.109 -u mobile -l passwords.txt

APIの使用方法

Shrederには独自のPython APIもあり、コードにShrederをインポートして呼び出すことができます。

root@kitploit:~
from shreder import Shreder

基本関数

以下は、単一ターゲットをブルートフォースするために使用できるShrederの基本関数です。

  • connect(host, port, username, password) - 指定されたアドレスで単一ターゲットに接続します。
  • brute(host, port, username, dictionary, delay) - 指定されたアドレスで単一ターゲットをブルートフォースします。

例

単一ターゲットへのブルートフォース

root@kitploit:~
from shreder import Shreder

shreder = Shreder()
password = shreder.brute('192.168.2.109', 22, 'mobile', 'passwords.txt')

print(password)
ツールをダウンロード