Update README.md

This commit is contained in:
Joe Totes
2022-07-30 14:46:08 -04:00
committed by GitHub
parent 9c079f1dd8
commit d9588e0fc5

View File

@@ -95,10 +95,15 @@ nmap -p- --min-rate 5000 -sC -sV {IP ADDRESS}
```bash ```bash
ftp {IP ADDRESS} ftp {IP ADDRESS}
Default Credentials: anonymous # Default Credentials
Directory Command: dir anonymous
Download Command: get
Upload Command: put # Directory Command
dir
# Download Command
get
# Upload Command
put
``` ```
<br /> <br />
@@ -180,6 +185,38 @@ apache-user-enum-2.0.txt directory-list-1.0.txt directory-list-2.3-small.txt
## SMB [445] ## SMB [445]
### smbclient
<br />
**OVERVIEW**
| | |
| :-----------: | :-----------: |
| Description | Connect to SMB |
| Download | Pre-installed on Kali Linux |
<br />
**USAGE**
<br />
```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
```
<br />
<br /> <br />
## MSSQL [1433] ## MSSQL [1433]