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

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

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

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

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

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
shard — साझा पासवर्ड का पता लगाने के लिए एक कमांड लाइन टूल | Kitploit
उपकरण/GitHubGitHub/philwantsfish/shard
OSINT (खुला स्रोत खुफिया)पासवर्ड हमलेजानकारी एकत्र करना
GitHubphilwantsfish/shard

shard

साझा पासवर्ड का पता लगाने के लिए एक कमांड लाइन टूल

रिपॉजिटरी देखें
405589 साल पहलेKitploit द्वारा समीक्षित

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें

shard

एक कमांड लाइन टूल जो साझा पासवर्ड का पता लगाता है

उपयोग

विकल्प सूचीबद्ध करें:

root@kitploit:~
Shard (1.5) can run in 3 modes:

1) Single user single password          - Use -u and -p
2) Single user multiple passwords       - Use -u and -f
3) Multiple users and multple passwords - Use -f only

For more detailed usage examples see the wiki.
    
Usage: java -jar shard-1.5.jar [options]

  -u, --username <value>  Username to test
  -p, --password <value>  Password to test
  -f, --file <value>      A path to a file containing a set of credentials or passwords
  --format <value>        The format of the credentials. Must be a regular expression with 2 capture groups. The first capture group for the username and the second capture group for the password. Defaults to a regex that will match:
        "username":"password"
  -l, --list              List available modules
  -v, --version           Print the version
  --modules <value>       Only run specific modules. A comma separated list
  --help                  Prints this usage text

उपलब्ध मॉड्यूल सूचीबद्ध करें:

root@kitploit:~
$ java -jar shard.jar -l
Available modules:
        Facebook
        LinkedIn
        Reddit
        Twitter
        Instagram
        GitHub
        BitBucket
        Kijiji
        DigitalOcean
        Vimeo
        Laposte
        DailyMotion

उदाहरण

एक उपयोगकर्ता नाम और पासवर्ड दिए जाने पर, shard कई साइटों पर प्रमाणीकरण का प्रयास करेगा:

root@kitploit:~
$ java -jar shard.jar -u username-here -p password-here
21:16:25.950 [+] Running in single credential mode
21:16:30.302 [+] username-here:password-here - Reddit, Instagram

एकाधिक क्रेडेंशियल्स का परीक्षण करने के लिए एक फ़ाइल नाम प्रदान करें। डिफ़ॉल्ट रूप से यह प्रति पंक्ति एक क्रेडेंशियल की उम्मीद करता है जो "username":"password" प्रारूप में हो। कस्टम प्रारूप --format विकल्प के साथ प्रदान किए जा सकते हैं।

root@kitploit:~
$ java -jar shard.jar -f /tmp/creds.txt
21:16:39.501 [+] Running in multi-credential mode
21:16:39.516 [+] Parsed 2 credentials
21:16:42.794 [+] username1:password1 - Reddit, Instagram
21:16:45.189 [+] username2:password2 - Facebook, LinkedIn, Twitter

स्थापना

नवीनतम रिलीज़ को रिलीज़ टैब से प्राप्त करें, जिसे sbt असेंबली का उपयोग करके एक फैट जार के रूप में बनाया गया था।

या

इसे स्वयं sbt का उपयोग करके बनाएँ, sbt assembly

एक नया मॉड्यूल विकसित करना

एक नया मॉड्यूल जोड़ना आसान है। एक नया वर्ग बनाएँ जो मॉड्यूल पैकेज में AbstractModule से इनहेरिट करता है और मॉड्यूल को ModuleFactory में जोड़ें।

AbstractModule में एक एब्सट्रैक्ट विधि है:

root@kitploit:~
  def tryLogin(creds: Credentials): Boolean

यह विधि एक Credentials ऑब्जेक्ट लेती है और एक बूलियन लौटाती है जो सफल लॉगिन को इंगित करती है। मैं TwitterModule को एक टेम्पलेट के रूप में उपयोग करने की सलाह देता हूँ। एक नया मॉड्यूल जोड़ने की विस्तृत व्याख्या के लिए विकी पर उदाहरण देखें।

निर्भरताएँ:

  • JSoup का उपयोग HTTP संचार और HTML पार्सिंग के लिए किया जाता है
  • spray-json का उपयोग JSON को संभालने के लिए किया जाता है

यदि Scala आपकी पसंद नहीं है तो secondary_implementations देखें, ये अन्य भाषाओं में shard के पुनर्लेखन हैं। यदि आप इनमें से किसी एक कार्यान्वयन में एक मॉड्यूल जोड़ते हैं, तो मैं इसे Scala में फिर से लिखूंगा और मुख्य प्रोजेक्ट में भी जोड़ूंगा।

बग, अनुरोध और प्रतिक्रिया

मुझसे संपर्क करें, Gitter कक्ष में शामिल हों, या इस GitHub प्रोजेक्ट का उपयोग करें

इस प्रोजेक्ट का आनंद ले रहे हैं? 1EpSQumsD2EFKnisJXjStsUVsXpF4ge8dj को दान करने पर विचार करें

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