cleanup
This commit is contained in:
parent
d3b457a796
commit
84a3616b03
|
@ -4,24 +4,32 @@ Start your enumeration with [enum4linux](https://github.com/CiscoCXSecurity/enum
|
|||
|
||||
## SMBClient
|
||||
|
||||
* Use `smbclient` to list the share
|
||||
* Use `smbclient` to list the share through an anonymous NULL session
|
||||
|
||||
```sh
|
||||
smbclient -L //$TARGET_IP/
|
||||
```
|
||||
* The protocol might be dated, try
|
||||
```sh
|
||||
smbclient -L //$TARGET_IP/ --option='client min protocol=NT1'
|
||||
smbclient -L //$TARGET_IP/ -N
|
||||
```
|
||||
|
||||
# smbmap
|
||||
* The protocol might be dated, try
|
||||
|
||||
```sh
|
||||
smbclient -N -L //$TARGET_IP/ --option='client min protocol=NT1'
|
||||
```
|
||||
|
||||
## smbmap
|
||||
|
||||
* [Repo](https://github.com/ShawnDEvans/smbmap.git)
|
||||
* `python3 -m pip install -r requirements.txt`
|
||||
|
||||
# Usage
|
||||
|
||||
* `-x` execute command on server
|
||||
* `-s` enumerate share
|
||||
|
||||
```sh
|
||||
smbmap -H 10.10.10.10
|
||||
```
|
||||
|
||||
```sh
|
||||
smbmap -u "admin" -p "password" -H "10.10.10.10" -x 'ipconfig'
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue