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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
cerbrutus — 네트워크 무차별 대입 도구, Python으로 작성됨. 기존 솔루션(네트워크 무차별 대입 시장의 주요 선두 제품 포함)보다 더 빠릅니다. | Kitploit
도구/GitHubGitHub/cerbrutus-bruteforcer/cerbrutus
Password AttacksNetwork SecurityPenetration Testing
GitHubcerbrutus-bruteforcer/cerbrutus

cerbrutus

네트워크 무차별 대입 도구, Python으로 작성됨. 기존 솔루션(네트워크 무차별 대입 시장의 주요 선두 제품 포함)보다 더 빠릅니다.

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

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Cerbrutus

Python으로 작성된 모듈식 무차별 대입 도구로, SSH 및 FTP(그리고 가까운 미래에 다른 네트워크 서비스)에 대한 매우 빠른 패스워드 스프레이를 위해 설계되었습니다.

곧 출시 예정: SMB, HTTP(s) POST, HTTP(s) GET, HTTP BASIC AUTH 테스트 및 기여에 감사드립니다: @0dayctf, Rondons, Enigma, 001

설치:

root@kitploit:~
cd /opt
git clone https://github.com/Cerbrutus-BruteForcer/cerbrutus

사용법:

root@kitploit:~
python3 /opt/cerbrutus/cerbrutus.py --help
usage: cerbrutus.py [-h] -U USERS -P PASSWORDS [-p PORT] [-t THREADS] [-q [QUIET [QUIET ...]]] Host Service

Python based network brute forcing tool!

positional arguments:
  Host                  The host to connect to - in IP or VHOST/Domain Name form
  Service               The service to brute force (currently implemented 'SSH')

optional arguments:
  -h, --help            show this help message and exit
  -U USERS, --users USERS
                        Either a single user, or the path to the file of users you wish to use
  -P PASSWORDS, --passwords PASSWORDS
                        Either a single password, or the path to the password list you wish to use
  -p PORT, --port PORT  The port you wish to target (only required if running on a non standard port)      
  -t THREADS, --threads THREADS
                        Number of threads to use
  -q [QUIET [QUIET ...]], --quiet [QUIET [QUIET ...]]
                        Do not print banner
root@kitploit:~
/opt/cerbrutus/cerbrutus.py 10.10.10.10 SSH -U "username" -P /opt/wordlists/fasttrack.txt -t 10

        ================================================================
            __    ___  ____   ____   ____  __ __  ______  __ __  _____
           /  ]  /  _]|    \ |    \ |    \|  |  ||      ||  |  |/ ___/
          /  /  /  [_ |  D  )|  o  )|  D  )  |  ||      ||  |  (   \_
         /  /  |    _]|    / |     ||    /|  |  ||_|  |_||  |  |\__  |
        /   \_ |   [_ |    \ |  O  ||    \|  :  |  |  |  |  :  |/  \ |
        \     ||     ||  .  \|     ||  .  \     |  |  |  |     |\    |
         \____||_____||__|\_||_____||__|\_|\__,_|  |__|   \__,_| \___|

        Network Brute Force Tool
        https://github.com/Cerbrutus-BruteForcer/cerbrutus
        ================================================================
        
[*] - Initialising password list...
Read in 224 words from /opt/wordlists/fasttrack.txt
[+] - Running with 10 threads...
[*] - Starting attack against [email protected]
[*] - Trying: 65/224

테스트 실행:

root@kitploit:~
# The password is in line number 12600 in rockyou

64 threads -> 1400 seconds ~ 7 minutes (hydra took 30 minutes)
1000 threads -> 464 seconds -> 27 requests per second
100 threads took 1000 seconds -> 12 requests per second 

# the password is in line 460 
100 threads took 32 seconds -> 14 requests per second
1000 threads took 16 seconds -> 28 requests per second
64 threads took 51 seconds -> 9 requests per second (hydra took the same time)

# word number 20k in rockyou
1100 threads took 637 seconds which means 31 rps
110 threads took 1457 seconds so that's 13.7 rps

SSH 무차별 대입을 구현할 때 발생하는 몇 가지 사소한 문제를 해결하기 위해 paramiko의 커스텀 구현을 사용합니다. - https://github.com/paramiko/paramiko/

도구 다운로드