Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
cerbrutus — नेटवर्क ब्रूट फ़ोर्स टूल, पायथन में लिखा गया। मौजूदा अन्य समाधानों से तेज़ (नेटवर्क ब्रूट फ़ोर्स बाज़ार के मुख्य नेता सहित)। | Kitploit
उपकरण/GitHubGitHub/cerbrutus-bruteforcer/cerbrutus
पासवर्ड हमलेनेटवर्क सुरक्षापेनिट्रेशन टेस्टिंग
GitHubcerbrutus-bruteforcer/cerbrutus

cerbrutus

नेटवर्क ब्रूट फ़ोर्स टूल, पायथन में लिखा गया। मौजूदा अन्य समाधानों से तेज़ (नेटवर्क ब्रूट फ़ोर्स बाज़ार के मुख्य नेता सहित)।

रिपॉजिटरी देखें
4266055 साल पहले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/

टूल डाउनलोड करें