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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
brutto — 원하는 모든 것에 대한 쉬운 무차별 대입 - Jose Pino | Kitploit
도구/GitHubGitHub/jofpin/brutto
Password CrackingPassword AttacksUtilities & Frameworks
GitHubjofpin/brutto

brutto

원하는 모든 것에 대한 쉬운 무차별 대입 - Jose Pino

저장소 보기웹사이트
651211년 전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

기본 설정 테스트 (increase 사용)

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

기본 설정 테스트 (direct 사용)

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

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

증가값에 사용자 정의 값을 추가하여 문자를 증가시킵니다. scope=(1-5)

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

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

문자와 숫자를 사용하고 범위 증가 (scope=(1-8 ))

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

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

저작권, 2015 by Jose Pino


도구 다운로드