{"id":5001,"date":"2024-12-22T11:51:05","date_gmt":"2024-12-22T03:51:05","guid":{"rendered":"https:\/\/mayanknauni.com\/?p=5001"},"modified":"2024-12-22T12:23:11","modified_gmt":"2024-12-22T04:23:11","slug":"decrypting-defenses-advanced-techniques-to-penetrate-active-directory-systems","status":"publish","type":"post","link":"https:\/\/mayanknauni.com\/?p=5001","title":{"rendered":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems"},"content":{"rendered":"<p><strong>Introduction<\/strong><\/p>\n<p>In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using <code>nmap<\/code>, a cornerstone tool in network scanning, progressing through more sophisticated tools and tactics. Let&#8217;s delve into the details of each tool and its role in unveiling system weaknesses.<\/p>\n<hr \/>\n<p><strong>Step 1: Initial Network Scanning with Nmap<\/strong><\/p>\n<p><strong>Tool Used: Nmap (Network Mapper)<\/strong><\/p>\n<p>Nmap is a powerful network scanning tool that provides comprehensive information about network environments, including open ports, services, and, crucially for this exercise, details about networked systems such as the AD domain name.<\/p>\n<p><strong>Command:<\/strong><\/p>\n<pre><code class=\"language-bash\">nmap -sV -p 139,445 target_IP\r\n<\/code><\/pre>\n<ul>\n<li><code>-sV<\/code>: Probe open ports to determine service\/version info.<\/li>\n<li><code>-p 139,445<\/code>: Specifically scan SMB ports which are critical in AD environments.<\/li>\n<\/ul>\n<p><strong>Key Outcomes:<\/strong><\/p>\n<ul>\n<li>Identified the AD domain name &#8220;MYSTIC-AD,&#8221; crucial for subsequent targeted attacks.<\/li>\n<li>Verified open SMB ports (139 and 445), confirming potential entry points for exploitation.<\/li>\n<\/ul>\n<hr \/>\n<p><strong>Step 2: Enumerating SMB with Enum4Linux<\/strong><\/p>\n<p>Following the network mapping, <code>enum4linux<\/code> was used to perform a deeper enumeration of SMB services, targeting specific vulnerabilities related to Windows networking and Active Directory services.<\/p>\n<p><strong>Tool Used: Enum4Linux<\/strong><\/p>\n<p><strong>Command:<\/strong><\/p>\n<pre><code class=\"language-bash\">enum4linux -a target_IP\r\n<\/code><\/pre>\n<ul>\n<li><code>-a<\/code>: Automates all basic enumeration functions to gather extensive details about users, groups, and more.<\/li>\n<\/ul>\n<p><strong>Significant Findings:<\/strong><\/p>\n<ul>\n<li>Detailed listings of user accounts and SMB shares, notably identifying <code>svc-elite<\/code> and <code>backup-pro<\/code> accounts.<\/li>\n<\/ul>\n<hr \/>\n<p><strong>Step 3: Exploiting Kerberos with ASREPRoasting<\/strong><\/p>\n<p>Kerberos, the default authentication service for Windows domains, was targeted next. Misconfigurations here, such as disabled pre-authentication, can lead to vulnerabilities such as ASREPRoasting.<\/p>\n<p><strong>Tool Used: GetNPUsers from Impacket Suite<\/strong><\/p>\n<p><strong>Command:<\/strong><\/p>\n<pre><code class=\"language-bash\">GetNPUsers.py -no-pass -dc-ip target_IP domain\/svc-elite\r\n<\/code><\/pre>\n<ul>\n<li><code>-no-pass<\/code>: Attempts to retrieve the TGT for accounts configured without pre-authentication.<\/li>\n<\/ul>\n<p><strong>Outcome:<\/strong><\/p>\n<ul>\n<li>Successfully extracted the TGT for <code>svc-elite<\/code>, which provided a hash to be cracked.<\/li>\n<\/ul>\n<hr \/>\n<p><strong>Step 4: Cracking Hashes with Hashcat<\/strong><\/p>\n<p>Upon obtaining the Kerberos hash, <code>hashcat<\/code> was employed to decrypt the hash, potentially revealing the user&#8217;s password.<\/p>\n<p><strong>Tool Used: Hashcat<\/strong><\/p>\n<p><strong>Command:<\/strong><\/p>\n<pre><code class=\"language-bash\">hashcat -m 18200 -a 0 hash.txt wordlist.txt\r\n<\/code><\/pre>\n<ul>\n<li><code>-m 18200<\/code>: Specifies the mode for Kerberos 5 TGT-REP etype 23 hashes.<\/li>\n<li><code>-a 0<\/code>: Straight attack mode using a predefined wordlist.<\/li>\n<\/ul>\n<p><strong>Cracked Password:<\/strong><\/p>\n<ul>\n<li>&#8220;Vanguard123&#8221;, highlighting the need for stronger password policies.<\/li>\n<\/ul>\n<hr \/>\n<p><strong>Step 5: Accessing SMB Shares with Smbclient<\/strong><\/p>\n<p>With valid credentials in hand, <code>smbclient<\/code> was utilized to explore and manipulate SMB shares directly, searching for sensitive information or further network access points.<\/p>\n<p><strong>Tool Used: Smbclient<\/strong><\/p>\n<p><strong>Command:<\/strong><\/p>\n<pre><code class=\"language-bash\">smbclient -L \\\\target_IP\\ -U svc-elite\r\n<\/code><\/pre>\n<ul>\n<li><code>-L<\/code>: List available shares on the target machine.<\/li>\n<li><code>-U<\/code>: Use the cracked credentials to authenticate.<\/li>\n<\/ul>\n<p><strong>Key Discovery:<\/strong><\/p>\n<ul>\n<li>Accessed critical files within the <code>backup-pro<\/code> share, potentially leading to further network compromise.<\/li>\n<\/ul>\n<hr \/>\n<p><strong>Step 6: Full Domain Control with Secretsdump.py<\/strong><\/p>\n<p>Achieving full domain control was the final goal, accomplished by dumping critical data from the domain controller using <code>secretsdump.py<\/code>.<\/p>\n<p><strong>Tool Used: Secretsdump.py from Impacket Suite<\/strong><\/p>\n<p><strong>Command:<\/strong><\/p>\n<pre><code class=\"language-bash\">secretsdump.py -just-dc-user admin target_IP\r\n<\/code><\/pre>\n<ul>\n<li><code>-just-dc-user<\/code>: Targets a specific domain controller account for credential extraction.<\/li>\n<\/ul>\n<hr \/>\n<p><strong>Conclusion<\/strong><\/p>\n<p>This exercise illustrated how various tools can be systematically used to expose and exploit vulnerabilities in a hardened AD environment. Each tool brought us closer to understanding the security posture and necessary defenses required to protect such critical systems.<\/p>\n<hr \/>\n<p><strong>Mayank Nauni,\u00a0<\/strong> Cybersecurity Researcher<\/p>\n<hr \/>\n<p>Join the discussion on effective strategies for securing AD environments. Reach out with your insights or queries, and let\u2019s enhance our collective cybersecurity knowledge together!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using nmap, a cornerstone tool in network&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[53],"tags":[157,58,50],"class_list":["post-5001","post","type-post","status-publish","format-standard","hentry","category-cyber-security","tag-active-directory","tag-cybersecurity","tag-red-team"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Introduction In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using nmap, a cornerstone tool in network scanning, progressing through more sophisticated tools and tactics. Let&#039;s delve into the details of each\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Mayank Nauni\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/mayanknauni.com\/?p=5001\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Cloud Whisperer \u2013 Taming the Digital Dragon\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems Cloud Whisperer\" \/>\n\t\t<meta property=\"og:description\" content=\"Introduction In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using nmap, a cornerstone tool in network scanning, progressing through more sophisticated tools and tactics. Let&#039;s delve into the details of each\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/mayanknauni.com\/?p=5001\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/mayanknauni.com\/wp-content\/uploads\/2023\/08\/cropped-cropped-Blue-and-Green-Modern-Technology-Logo.png?fit=333%2C342&#038;ssl=1\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/i0.wp.com\/mayanknauni.com\/wp-content\/uploads\/2023\/08\/cropped-cropped-Blue-and-Green-Modern-Technology-Logo.png?fit=333%2C342&#038;ssl=1\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-12-22T03:51:05+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-12-22T04:23:11+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems Cloud Whisperer\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Introduction In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using nmap, a cornerstone tool in network scanning, progressing through more sophisticated tools and tactics. Let&#039;s delve into the details of each\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/i0.wp.com\/mayanknauni.com\/wp-content\/uploads\/2023\/08\/cropped-cropped-Blue-and-Green-Modern-Technology-Logo.png?fit=333%2C342&amp;ssl=1\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#blogposting\",\"name\":\"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems Cloud Whisperer\",\"headline\":\"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems\",\"author\":{\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8adb58e2795dfce95a74d7fd72c38f682f8514e4545ad8099e86a0a34d736417?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"Mayank Nauni\"},\"datePublished\":\"2024-12-22T11:51:05+08:00\",\"dateModified\":\"2024-12-22T12:23:11+08:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#webpage\"},\"articleSection\":\"Cyber Security, Active Directory, CyberSecurity, Red Team\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/mayanknauni.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/mayanknauni.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?cat=53#listItem\",\"name\":\"Cyber Security\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?cat=53#listItem\",\"position\":2,\"name\":\"Cyber Security\",\"item\":\"https:\\\/\\\/mayanknauni.com\\\/?cat=53\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#listItem\",\"name\":\"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/mayanknauni.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#listItem\",\"position\":3,\"name\":\"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?cat=53#listItem\",\"name\":\"Cyber Security\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/#person\",\"name\":\"Mayank Nauni\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8adb58e2795dfce95a74d7fd72c38f682f8514e4545ad8099e86a0a34d736417?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"Mayank Nauni\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/mayanknauni.com\\\/?author=1\",\"name\":\"Mayank Nauni\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8adb58e2795dfce95a74d7fd72c38f682f8514e4545ad8099e86a0a34d736417?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"Mayank Nauni\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#webpage\",\"url\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001\",\"name\":\"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems Cloud Whisperer\",\"description\":\"Introduction In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using nmap, a cornerstone tool in network scanning, progressing through more sophisticated tools and tactics. Let's delve into the details of each\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?p=5001#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/?author=1#author\"},\"datePublished\":\"2024-12-22T11:51:05+08:00\",\"dateModified\":\"2024-12-22T12:23:11+08:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/#website\",\"url\":\"https:\\\/\\\/mayanknauni.com\\\/\",\"name\":\"Cloud Whisperer\",\"description\":\"Taming the Digital Dragon\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/mayanknauni.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems Cloud Whisperer","description":"Introduction In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using nmap, a cornerstone tool in network scanning, progressing through more sophisticated tools and tactics. Let's delve into the details of each","canonical_url":"https:\/\/mayanknauni.com\/?p=5001","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/mayanknauni.com\/?p=5001#blogposting","name":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems Cloud Whisperer","headline":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems","author":{"@id":"https:\/\/mayanknauni.com\/?author=1#author"},"publisher":{"@id":"https:\/\/mayanknauni.com\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/mayanknauni.com\/?p=5001#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/8adb58e2795dfce95a74d7fd72c38f682f8514e4545ad8099e86a0a34d736417?s=96&r=g","width":96,"height":96,"caption":"Mayank Nauni"},"datePublished":"2024-12-22T11:51:05+08:00","dateModified":"2024-12-22T12:23:11+08:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/mayanknauni.com\/?p=5001#webpage"},"isPartOf":{"@id":"https:\/\/mayanknauni.com\/?p=5001#webpage"},"articleSection":"Cyber Security, Active Directory, CyberSecurity, Red Team"},{"@type":"BreadcrumbList","@id":"https:\/\/mayanknauni.com\/?p=5001#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/mayanknauni.com#listItem","position":1,"name":"Home","item":"https:\/\/mayanknauni.com","nextItem":{"@type":"ListItem","@id":"https:\/\/mayanknauni.com\/?cat=53#listItem","name":"Cyber Security"}},{"@type":"ListItem","@id":"https:\/\/mayanknauni.com\/?cat=53#listItem","position":2,"name":"Cyber Security","item":"https:\/\/mayanknauni.com\/?cat=53","nextItem":{"@type":"ListItem","@id":"https:\/\/mayanknauni.com\/?p=5001#listItem","name":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems"},"previousItem":{"@type":"ListItem","@id":"https:\/\/mayanknauni.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/mayanknauni.com\/?p=5001#listItem","position":3,"name":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems","previousItem":{"@type":"ListItem","@id":"https:\/\/mayanknauni.com\/?cat=53#listItem","name":"Cyber Security"}}]},{"@type":"Person","@id":"https:\/\/mayanknauni.com\/#person","name":"Mayank Nauni","image":{"@type":"ImageObject","@id":"https:\/\/mayanknauni.com\/?p=5001#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/8adb58e2795dfce95a74d7fd72c38f682f8514e4545ad8099e86a0a34d736417?s=96&r=g","width":96,"height":96,"caption":"Mayank Nauni"}},{"@type":"Person","@id":"https:\/\/mayanknauni.com\/?author=1#author","url":"https:\/\/mayanknauni.com\/?author=1","name":"Mayank Nauni","image":{"@type":"ImageObject","@id":"https:\/\/mayanknauni.com\/?p=5001#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/8adb58e2795dfce95a74d7fd72c38f682f8514e4545ad8099e86a0a34d736417?s=96&r=g","width":96,"height":96,"caption":"Mayank Nauni"}},{"@type":"WebPage","@id":"https:\/\/mayanknauni.com\/?p=5001#webpage","url":"https:\/\/mayanknauni.com\/?p=5001","name":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems Cloud Whisperer","description":"Introduction In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using nmap, a cornerstone tool in network scanning, progressing through more sophisticated tools and tactics. Let's delve into the details of each","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/mayanknauni.com\/#website"},"breadcrumb":{"@id":"https:\/\/mayanknauni.com\/?p=5001#breadcrumblist"},"author":{"@id":"https:\/\/mayanknauni.com\/?author=1#author"},"creator":{"@id":"https:\/\/mayanknauni.com\/?author=1#author"},"datePublished":"2024-12-22T11:51:05+08:00","dateModified":"2024-12-22T12:23:11+08:00"},{"@type":"WebSite","@id":"https:\/\/mayanknauni.com\/#website","url":"https:\/\/mayanknauni.com\/","name":"Cloud Whisperer","description":"Taming the Digital Dragon","inLanguage":"en-US","publisher":{"@id":"https:\/\/mayanknauni.com\/#person"}}]},"og:locale":"en_US","og:site_name":"Cloud Whisperer \u2013 Taming the Digital Dragon","og:type":"article","og:title":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems Cloud Whisperer","og:description":"Introduction In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using nmap, a cornerstone tool in network scanning, progressing through more sophisticated tools and tactics. Let's delve into the details of each","og:url":"https:\/\/mayanknauni.com\/?p=5001","og:image":"https:\/\/i0.wp.com\/mayanknauni.com\/wp-content\/uploads\/2023\/08\/cropped-cropped-Blue-and-Green-Modern-Technology-Logo.png?fit=333%2C342&#038;ssl=1","og:image:secure_url":"https:\/\/i0.wp.com\/mayanknauni.com\/wp-content\/uploads\/2023\/08\/cropped-cropped-Blue-and-Green-Modern-Technology-Logo.png?fit=333%2C342&#038;ssl=1","article:published_time":"2024-12-22T03:51:05+00:00","article:modified_time":"2024-12-22T04:23:11+00:00","twitter:card":"summary_large_image","twitter:title":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems Cloud Whisperer","twitter:description":"Introduction In this exploration, I aim to demonstrate a basic penetration test against a Active Directory (AD) setup, showcasing how even robust systems can exhibit exploitable vulnerabilities. The journey starts with initial reconnaissance using nmap, a cornerstone tool in network scanning, progressing through more sophisticated tools and tactics. Let's delve into the details of each","twitter:image":"https:\/\/i0.wp.com\/mayanknauni.com\/wp-content\/uploads\/2023\/08\/cropped-cropped-Blue-and-Green-Modern-Technology-Logo.png?fit=333%2C342&ssl=1"},"aioseo_meta_data":{"post_id":"5001","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-12-22 03:51:05","updated":"2025-08-04 08:49:26","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/mayanknauni.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/mayanknauni.com\/?cat=53\" title=\"Cyber Security\">Cyber Security<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tDecrypting Defenses: Basic Techniques to Penetrate Active Directory Systems\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/mayanknauni.com"},{"label":"Cyber Security","link":"https:\/\/mayanknauni.com\/?cat=53"},{"label":"Decrypting Defenses: Basic Techniques to Penetrate Active Directory Systems","link":"https:\/\/mayanknauni.com\/?p=5001"}],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/mayanknauni.com\/index.php?rest_route=\/wp\/v2\/posts\/5001","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mayanknauni.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mayanknauni.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mayanknauni.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mayanknauni.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5001"}],"version-history":[{"count":2,"href":"https:\/\/mayanknauni.com\/index.php?rest_route=\/wp\/v2\/posts\/5001\/revisions"}],"predecessor-version":[{"id":5003,"href":"https:\/\/mayanknauni.com\/index.php?rest_route=\/wp\/v2\/posts\/5001\/revisions\/5003"}],"wp:attachment":[{"href":"https:\/\/mayanknauni.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5001"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mayanknauni.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5001"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mayanknauni.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5001"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}