Certified Red Team Professional (CRTP) - Notes
HomeGitHubPortfolioTwitter/XMediumCont@ct
  • 📝Certified Red Team Professional (CRTP) - Notes
    • ℹ️0 - Course Summary
      • 1.1
      • 1.2
    • 1️⃣1 - Active Directory (AD)
      • 1.1 - Introduction to Active Directory (AD)
      • 1.2 - Physical Components of AD
      • 1.3 - Logical Components of AD
    • 2️⃣2 - PowerShell
      • 2.1 - Introduction to PowerShell
      • 2.2 - Security and Detection
    • 3️⃣3 - AD Enumeration
      • 3.1 - Host & User Identification
      • 3.2 - Common Services Enum
        • 3.2.1 - LDAP & DNS Enum
        • 3.2.2 - SMB Enum & Common Attacks
      • 3.3 - Domain Enumeration
        • 3.3.1 - PowerView
          • 3.3.1.1 - Domain Enumeration (Video Lab)
        • 3.3.2 - BloodHound
    • 4️⃣4 - Trust and Privileges Mapping
      • 4.1 - Access Control (ACL/ACE)
      • 4.2 - Group Policy
      • 4.3 - Trusts
    • 5️⃣5 - Local Privilege Escalation
      • 5.1 - Privilege Escalation
        • 5.1.1 - Feature Abuse
        • 5.1.2 - Relaying
        • 5.1.3 - GPO Abuse
        • 5.1.4 - Unquoted Service Path
      • 5.2 - Tools
    • 6️⃣6 - Lateral Movement
      • 6.1 - PowerShell Remoting & Tradecraft
      • 6.2 - Crentials Extraction & Mimikatz
    • 9️⃣7 - Kerberos Attack and Defense (Golden, Silver tickets and more)
      • 7.1 - Kerberos Intro
      • 7.2 - AS-REP Roasting
      • 7.3 - Kerberoasting
      • 7.4 - User Enum in Kerberos
    • 6️⃣8 - Persistence
      • 8.1 - Golden Ticket
      • 8.2 - Silver Ticket
      • 8.3 - Diamond Ticket
    • Lab
      • 0 - Lab Instructions
      • 1 - Learning Object 1️
      • 2 - Learning Object 2️
      • 3 - Learning Object 3️
      • 4 - Learning Object 4️
      • 5 - Learning Object 5️
      • 6 - Learning Object 6️
      • 7 - Learning Object 7️
    • 📄Report
      • How to write a PT Report
  • 🛣️RoadMap / Exam Preparation
  • 📔CRTP Cheat Sheet
Powered by GitBook
On this page
  • PowerView
  • PowerView Usage
  • Labs
  1. Certified Red Team Professional (CRTP) - Notes
  2. 3 - AD Enumeration
  3. 3.3 - Domain Enumeration

3.3.1 - PowerView

PowerView

PowerView is a versatile PowerShell tool specifically designed for Active Directory reconnaissance. Part of the PowerSploit framework, it allows penetration testers and red teamers to perform in-depth enumeration of AD environments. PowerView provides a comprehensive suite of cmdlets to gather information about users, groups, computers, permissions, trust relationships, and more.

PowerView Usage

  • Start InviShell (using cmd)

    C:\AD\Tools\InviShell\RunWithRegistryNonAdmin.bat
  • Start PowerView (using powershell, if you've run InviShell powershell It's already running)

    . C:\AD\Tools\Powerview.ps1
  • Get Domain Information

    Get-NetDomain

    Retrieves information about the current domain.

  • Enumerate Domain Controllers

    Get-NetDomainController

    Lists all Domain Controllers in the current domain.

  • List Domain Users

    Get-NetUser

    Displays all users in the domain, along with detailed attributes.

  • Find High-Value Targets

    Get-NetUser -AdminCount 1

    Lists all users flagged as administrators.

  • Enumerate Domain Groups

    Get-NetGroup

    Retrieves all domain groups.

    Get-NetGroupMember -GroupName "Domain Admins"

    Lists members of the "Domain Admins" group.

  • Locate Domain Computers

    Get-NetComputer

    Lists all computers in the domain.

  • Analyze Trust Relationships

    Get-NetDomainTrust

    Displays trust relationships between domains.

  • Check ACLs on AD Objects

    Get-ObjectAcl -SamAccountName "Administrator" -ResolveGUIDs

    Shows ACLs for a specific user account, resolving GUIDs to human-readable names.

  • Find Shares on Domain Computers

    Invoke-ShareFinder

    Locates shared folders across domain computers.

  • Identify Delegation Configurations

    Get-NetUser -SPN

    Finds user accounts with Service Principal Names (SPNs), often used in Kerberos-based attacks.


Labs

Previous3.3 - Domain EnumerationNext3.3.1.1 - Domain Enumeration (Video Lab)

Last updated 16 days ago

📝
3️⃣
Domain Enumeration (Video Lab)
Post-Exploitation Basics THM Lab