mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 07:04:22 +00:00
fixed typos
This commit is contained in:
parent
0a07e07d00
commit
83b2d80a56
1 changed files with 2 additions and 2 deletions
|
@ -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:**
|
||||
|
|
Loading…
Reference in a new issue