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

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

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

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

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

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
ADReaper — गो भाषा में लिखा गया विंडोज सक्रिय निर्देशिका पेनटेस्टिंग के लिए एक तीव्र गणना उपकरण | Kitploit
उपकरण/GitHubGitHub/m0n1x90/adreaper
टोहीजानकारी एकत्र करनापेनिट्रेशन टेस्टिंगप्रमाणीकरण
GitHubm0n1x90/adreaper

ADReaper

गो भाषा में लिखा गया विंडोज सक्रिय निर्देशिका पेनटेस्टिंग के लिए एक तीव्र गणना उपकरण

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

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

सभी देखें →

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

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

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

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

ADReaper

ADReaper एक उपकरण है जो Golang में लिखा गया है और जो कुछ ही सेकंडों में LDAP प्रश्नों के साथ एक Active Directory वातावरण की गणना करता है।

स्थापना

आप Windows/Linux के लिए पूर्व-संकलित निष्पादन योग्य बाइनरी नवीनतम रिलीज़ से डाउनलोड कर सकते हैं।

स्रोत से स्थापित करें

स्रोत से बनाने के लिए, रिपोजिटरी को क्लोन करें और इसे GO के साथ बनाएँ।

root@kitploit:~
$ git clone https://github.com/AidenPearce369/ADReaper
$ cd ADReaper/
$ go build

उपयोग

ADReaper विभिन्न कमांड के साथ गणना करता है जो इसके अनुरूप LDAP प्रश्न करते हैं।

root@kitploit:~
PS C:\Users\redteamer\Desktop\shared> .\ADReaper.exe

      -command string

            Command to run
                  dc              - to list domain controllers
                  domain-trust    - to list domain trust
                  users           - to list all users
                  computers       - to list all computers
                  groups          - to list all groups with members
                  spn             - to list service principal objects
                  never-loggedon  - to list users never logged on
                  gpo             - to list group policy objects
                  ou              - to list organizational units
                  ms-sql          - to list MS-SQL servers
                  asreproast      - to list AS-REP roastable accounts
                  unconstrained   - to list Unconstrained Delegated accounts
                  admin-priv      - to list AD objects with admin privilege

      -dc string

            Enter the DC

      -filter string

            Filters to use for users/groups/computers

            list - lists all objects only
            full-data - list all objects with properties
            membership - lists all members from an object

            (default "list")
      -name string

            Pass object name of user/group/computer

      -password string

            Enter the Password

      -user string

            Enter the Username

डोमेन के Domain Controller के गुणों को क्वेरी करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command dc

डोमेन के Trust Attributes को क्वेरी करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command domain-trust

डोमेन से सभी Users को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command users

डोमेन से गुणों सहित सभी Users को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command users -filter full-data

डोमेन से Specific Users के गुणों को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command users -name <user>

विशिष्ट उपयोगकर्ता की सदस्यता को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command users -name <user> -filter membership

डोमेन से सभी उपलब्ध Computers को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command computers

डोमेन से गुणों सहित सभी Computers को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command computers -filter full-data

डोमेन से Specific Computer के गुणों को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command computers -name <computer name>

डोमेन से सभी उपलब्ध Groups को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command groups

डोमेन से गुणों सहित सभी Groups को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command groups -filter full-data

डोमेन से Specific Group के गुणों को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command groups -name <group name>

डोमेन से Specific Group के सदस्यों को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command groups -name <group name> -filter membership

डोमेन से Never Logged On उपयोगकर्ताओं को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command never-loggedon

डोमेन से GPOs को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command gpo

डोमेन से OUs को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command ou

उच्च विशेषाधिकार वाले AD ऑब्जेक्ट्स को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command admin-priv

डोमेन से MS-SQL Servers को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command ms-sql

डोमेन से MS-SQL Servers के सभी गुणों को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command ms-sql -filter full-data

डोमेन से विशिष्ट MS-SQL Server के सभी गुणों को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command ms-sql -name <computer name> 

डोमेन में उपलब्ध SPNs को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command spn

डोमेन से Specific SPN के सभी गुणों को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command spn -name <sam of spn>

Unconstrained Delegation सक्षम वाले AD ऑब्जेक्ट्स को सूचीबद्ध करने के लिए,

root@kitploit:~
.\ADReaper.exe -dc <dc.domain> -user <username> -password <password> -command unconstrained 

करने के लिए

अगले संस्करण के निर्माण के लिए योगदानकर्ताओं की प्रतीक्षा है।

योजनाबद्ध सुविधाएँ,

  • कस्टम LDAP क्वेरी
  • मौजूदा कमांड के साथ LDAP विशेषताओं को फ़िल्टर करना
  • LAPS गणना
  • Kerberoasting SPNs
  • AS-REP Roasting SPNs
  • स्थानीय व्यवस्थापक पहुँच शिकार
  • ACL गणना
  • BloodHound के लिए JSON डेटा निर्यात करना

यदि रुचि हो, तो मुझे पिंग करें :)

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