fixed typos

This commit is contained in:
Rdbo 2023-05-18 01:58:36 +00:00 committed by GitHub
parent 0a07e07d00
commit 83b2d80a56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -364,7 +364,7 @@ Replace the customqueries.json file located at `/home/username/.config/bloodhoun
#Check last password change
Get-UserProperty -Properties pwdlastset
#Get a spesific "string" on a user's attribute
#Get a specific "string" on a user's attribute
Find-UserField -SearchField Description -SearchTerm "wtver"
#Enumerate user logged on a machine
@ -486,7 +486,7 @@ Replace the customqueries.json file located at `/home/username/.config/bloodhoun
```powershell
Get-ADUser -Filter * -Identity <user> -Properties *
#Get a spesific "string" on a user's attribute
#Get a specific "string" on a user's attribute
Get-ADUser -Filter 'Description -like "*wtver*"' -Properties Description | select Name, Description
```
- **Enum Domain Computers:**