1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-05-05 16:06:05 +02:00

Merge pull request #644 from rdbo/patch-1

Fixed typos on README.md
This commit is contained in:
Swissky 2023-05-18 13:32:58 +02:00 committed by GitHub
commit f85f2cb4c6
Signed by: GitHub
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:**