From d9588e0fc511421b3dec8cd3e9de7bd8295a6cf7 Mon Sep 17 00:00:00 2001 From: Joe Totes <59018247+Totes5706@users.noreply.github.com> Date: Sat, 30 Jul 2022 14:46:08 -0400 Subject: [PATCH] Update README.md --- README.md | 45 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 41 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b75f712..cc0d96e 100644 --- a/README.md +++ b/README.md @@ -95,10 +95,15 @@ nmap -p- --min-rate 5000 -sC -sV {IP ADDRESS} ```bash ftp {IP ADDRESS} -Default Credentials: anonymous -Directory Command: dir -Download Command: get -Upload Command: put +# Default Credentials +anonymous + +# Directory Command +dir +# Download Command +get +# Upload Command +put ```
@@ -180,6 +185,38 @@ apache-user-enum-2.0.txt directory-list-1.0.txt directory-list-2.3-small.txt ## SMB [445] +### smbclient + +
+ +**OVERVIEW** + +| | | +| :-----------: | :-----------: | +| Description | Connect to SMB | +| Download | Pre-installed on Kali Linux | + +
+ +**USAGE** + +
+ +```bash + +# List all SMB Shares +smbclient -L {TARGET_IP} + +# Authenticate with local credentials +smbclient -N \\\\{TARGET_IP}\\{SHARE} + +# Authenticate with Administrator +smbclient -N \\\\{TARGET_IP}\\{SHARE} -u Administrator + +``` + +
+
## MSSQL [1433]