Update README.md

This commit is contained in:
Joe Totes
2022-08-08 22:38:41 -04:00
committed by GitHub
parent 9c1f1fcaf0
commit 40389f1b64

View File

@@ -221,13 +221,21 @@ directory-list-lowercase-2.3-medium.txt
# Usage # Usage
# List all SMB Shares # List all SMB Shares
smbclient -L {TARGET_IP} smbclient -L {IP ADDRESS}
# Authenticate with local credentials # Authenticate with local credentials
smbclient -N \\\\{TARGET_IP}\\{SHARE} smbclient -N \\\\{IP ADDRESS}\\{SHARE}
# Authenticate with Administrator # Authenticate with Administrator
smbclient -N \\\\{TARGET_IP}\\{SHARE} -U Administrator smbclient -N \\\\{IP ADDRESS}\\{SHARE} -U Administrator
# Brute force SMB user and password list
crackmapexec smb {IP ADDRESS} -u {USER.txt} -p {PASSWORDS.txt}
# {IP ADDRESS}: IP Address of the Server
# {SHARE}: Share name to connect
# {USER.txt}: User list to be brute forced
# {PASSWORD.txt}: Password list to be brute forced
``` ```
<br /> <br />