TryHackMe - Active Directory Basics - Walkthrough
Introduction
Today we're going to be doing a walkthrough for the Active Directory Basics room hosted at https://tryhackme.com/room/activedirectorybasics . We'll be using one virtual machine (VM), the the deployed Windows 10 client.
Task 1 - Introduction
Questions
I understand what Active Directory is and why it is used.
No answer needed
Task 2 - Physical Active Directory
Questions
What database does the AD DS contain?
Answer contained within Task description
Where is the NTDS.dit stored?
Answer contained within Task description
What type of machine can be a domain controller?
Answer contained within Task description
Task 3 - The Forest
Questions
What is the term for a hierarchy of domains in a network?
Answer contained within Task description
What is the term for the rules for object creation?
Answer contained within Task description
What is the term for containers for groups, computers, users, printers, and other OUs?
Answer contained within Task description
Task 4 - Users + Groups
Questions
Which type of groups specify user permissions?
Answer contained within Task description
Which group contains all workstations and servers joined to the domain?
Answer contained within Task description
Which group can publish certificates to the directory?
Answer contained within Task description
Which user can make changes to a local machine but not to a domain controller?
Answer contained within Task description
Which group has their passwords replicated to read-only domain controllers?
Answer contained within Task description
Task 5 - Trusts + Policies
Questions
What type of trust flows from a trusting domain to a trusted domain?
Answer contained within Task description
What type of trusts expands to include other trusted domains?
Answer contained within Task description
Task 6 - Active Directory Domain Services + Authentication
Questions
What type of authentication uses tickets?
Answer contained within Task description
What domain service can create, validate, and revoke public key certificates?
Answer contained within Task description
Task 7- AD in the Cloud
Questions
What is the Azure AD equivalent of LDAP?
Answer contained within Task description
What is the Azure AD equivalent of Domains and Forests?
Answer contained within Task description
What is the Windows Server AD equivalent of Guests?
Answer contained within Task description
Task 8 - Hands-On Lab
Questions
What is the name of the Windows 10 operating system?
cd Downloads
powershell -ep bypass
. .\PowerView.ps1
Get-NetComputer -fulldata | select operatingsystem
What is the second "Admin" name?
Get-NetUser | select cn | Select-String -Pattern “admin”
Which group has a capital "V" in the group name?
Get-NetGroup | Select-String -CaseSensitive -Pattern “V”
When was the password last set for the SQLService user?
get-netuser | select-object -property cn,pwdlastset | select-string “SQL”
manually convert to 12 hr format
Task 9 - Conclusion
Questions
I understand the basics of Active Directory
No answer needed
Today we're going to be doing a walkthrough for the Active Directory Basics room hosted at https://tryhackme.com/room/activedirectorybasics . We'll be using one virtual machine (VM), the the deployed Windows 10 client.
Task 1 - Introduction
Questions
I understand what Active Directory is and why it is used.
No answer needed
Task 2 - Physical Active Directory
Questions
What database does the AD DS contain?
Answer contained within Task description
Where is the NTDS.dit stored?
Answer contained within Task description
What type of machine can be a domain controller?
Answer contained within Task description
Task 3 - The Forest
Questions
What is the term for a hierarchy of domains in a network?
Answer contained within Task description
What is the term for the rules for object creation?
Answer contained within Task description
What is the term for containers for groups, computers, users, printers, and other OUs?
Answer contained within Task description
Task 4 - Users + Groups
Questions
Which type of groups specify user permissions?
Answer contained within Task description
Which group contains all workstations and servers joined to the domain?
Answer contained within Task description
Which group can publish certificates to the directory?
Answer contained within Task description
Which user can make changes to a local machine but not to a domain controller?
Answer contained within Task description
Which group has their passwords replicated to read-only domain controllers?
Answer contained within Task description
Task 5 - Trusts + Policies
Questions
What type of trust flows from a trusting domain to a trusted domain?
Answer contained within Task description
What type of trusts expands to include other trusted domains?
Answer contained within Task description
Task 6 - Active Directory Domain Services + Authentication
Questions
What type of authentication uses tickets?
Answer contained within Task description
What domain service can create, validate, and revoke public key certificates?
Answer contained within Task description
Task 7- AD in the Cloud
Questions
What is the Azure AD equivalent of LDAP?
Answer contained within Task description
What is the Azure AD equivalent of Domains and Forests?
Answer contained within Task description
What is the Windows Server AD equivalent of Guests?
Answer contained within Task description
Task 8 - Hands-On Lab
Questions
What is the name of the Windows 10 operating system?
Click the Start Button in lower-left corner of Desktop, then click on the PowerShell icon
cd Downloads
powershell -ep bypass
. .\PowerView.ps1
Get-NetComputer -fulldata | select operatingsystem
What is the second "Admin" name?
Get-NetUser | select cn | Select-String -Pattern “admin”
Which group has a capital "V" in the group name?
Get-NetGroup | Select-String -CaseSensitive -Pattern “V”
When was the password last set for the SQLService user?
get-netuser | select-object -property cn,pwdlastset | select-string “SQL”
manually convert to 12 hr format
Task 9 - Conclusion
Questions
I understand the basics of Active Directory
No answer needed
Finish
Comments
Post a Comment