1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-05-04 10:56:21 +02:00

Update Active Directory Attack.md

Change recursive parameter for smbmap as listed in the documentation
This commit is contained in:
Markus 2023-12-14 11:56:04 +01:00 committed by GitHub
parent b07c5df892
commit 838d7c8c65
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -931,7 +931,7 @@ Automated exploitation:
* [ShawnDEvans/smbmap - a handy SMB enumeration tool](https://github.com/ShawnDEvans/smbmap)
```powershell
smbmap -H 10.10.10.10 # null session
smbmap -H 10.10.10.10 -R # recursive listing
smbmap -H 10.10.10.10 -r [PATH] # recursive listing
smbmap -H 10.10.10.10 -u invaliduser # guest smb session
smbmap -H 10.10.10.10 -d "DOMAIN.LOCAL" -u "USERNAME" -p "Password123*"
```