SMB
https://infinitelogins.com/2020/06/17/enumerating-smb-for-pentesting/
Using NMAP Scan for popular RCE exploits.
Identify the SMB/OS version.
Enumerate users once you have valid credentials:
Using NBTSCAN To scan a subnet for list of hostnames:
Using SMBMAP To list out the shares and associated permissions with Anonymous Access:
To list out the shares recursively:
To list shares as an authenticated user:
To list the shares as a Guest user, just provide a username that doesn’t exist.
To download a particular file.
Using SMBCLIENT To list out the shares:
To connect to shares:
Downloading files: Once connected, you can download files. You’ll want to disable interactive prompts and turn recursive mode ON.
Using ENUM4LINUX The following command will attempt to establish a null session with the target and then use RPC to extract useful information.
Example output is long, but some highlights to look for: • Listing of file shares and printers. • Domain/Workgroup information. • Password policy information. • RID cycling output to enumerate users and groups.
Using METASPLOIT Bruteforcing credentials:
Mounting SMB Shares in Linux The following command will mount the remote file-share to /mnt/smb/ (this directory must exist first) and prompt you for the password.
Another way to mount a share from Linux is as follows:
Using SMBCACLS Viewing file permissions, owners, and ACLs of shares.
To use this recursively, you can use a for loop in Bash.
Enumeration from Windows Utilities To get the Name Table:
To see a list of running shares:
You can map a share to a drive letter, such as K:
Testing for null session:
Gaining a Shell Once you have valid credentials on the machine, or a valid NTLM hash, you can leverage the following guide to gain a shell.
https://infinitelogins.com/2020/09/05/popping-remote-shells-pth-winexe-on-windows/
Enumerating SMB Version If your tools aren’t working to enumerate the version, you can establish a connection via smbclient and then extract the Samba/SMB version through a packetcapture. To automate the process, you can use the script available at https://github.com/rewardone/OSCPRepo/blob/master/scripts/recon_enum/smbver.sh
Troubleshooting Common Errors:
protocol negotiation failed: NT_STATUS_CONNECTION_DISCONNECTED
This error occurs because your modern tools are not able to communicate to older, insecure protocols. You just need to tell your smbd daemon to use the weaker and more insecure protocols. Note: If you are using smbd in real life for file and printer sharing, I don’t recommend leaving you system like this. Open the following files in your favorite text editor.
Find the Global section, and add the following line.
With that line added, restart your smdb service and you should now be able to connect.
smbclient fix for "protocol negotiation failed: NT_STATUS_CONNECTION_DISCONNECTED"
Metasploit SMB Error
Error solving - https://www.whitehat.de/msf-metasploit-rubysmb-error-encryptionerror-communication-error-with-the-remote-host
set SMB::AlwaysEncrypt false
set SMB::ProtocolVersion 1
Last updated