From 40389f1b64b9dce1b38d3892e7578b1e1b68c6bb Mon Sep 17 00:00:00 2001 From: Joe Totes <59018247+Totes5706@users.noreply.github.com> Date: Mon, 8 Aug 2022 22:38:41 -0400 Subject: [PATCH] Update README.md --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b0a39b3..f490470 100644 --- a/README.md +++ b/README.md @@ -221,13 +221,21 @@ directory-list-lowercase-2.3-medium.txt # Usage # List all SMB Shares -smbclient -L {TARGET_IP} +smbclient -L {IP ADDRESS} # Authenticate with local credentials -smbclient -N \\\\{TARGET_IP}\\{SHARE} +smbclient -N \\\\{IP ADDRESS}\\{SHARE} # 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 ```