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]