
smbmap
List of commands for smbmap:
-
smbmap:tldr:0b811 smbmap: Display SMB shares and permissions on a host, prompting for user's password or NTLM hash.$ smbmap -u ${username} --prompt -H ${ip}try on your machineexplain this command
-
smbmap:tldr:12801 smbmap: Display SMB shares and permissions on a host, specifying the domain and passing the password NTLM hash.$ smbmap -u ${username} --prompt -d ${domain} -H ${ip}try on your machineexplain this command
-
smbmap:tldr:1799e smbmap: Locate and download files [R]ecursively up to N levels depth, searching for filename pattern (regex), and excluding certain shares.$ smbmap --host-file ${filename} -u ${username} -p ${password} -q -R --depth ${number} --exclude ${sharename} -A ${filepattern}try on your machineexplain this command
-
smbmap:tldr:1b348 smbmap: Display SMB shares and list a single level of directories and files.$ smbmap -u ${username} --prompt -H ${ip} -rtry on your machineexplain this command
-
smbmap:tldr:1d7c5 smbmap: Display SMB shares and recursively list directories and files, searching for file content matching a regular expression.$ smbmap -u ${username} --prompt -H ${ip} -R -F ${pattern}try on your machineexplain this command
-
smbmap:tldr:2492e smbmap: Enumerate hosts and check SMB file permissions.$ smbmap --host-file ${filename} -u ${username} -p ${password} -qtry on your machineexplain this command
-
smbmap:tldr:3d6e5 smbmap: Display SMB shares and recursively list a defined number of levels of directories and files.$ smbmap -u ${username} --prompt -H ${ip} -R --depth ${3}try on your machineexplain this command
-
smbmap:tldr:4de97 smbmap: Display SMB shares and recursively list directories and files, downloading the files matching a regular expression.$ smbmap -u ${username} --prompt -H ${ip} -R -A ${pattern}try on your machineexplain this command
-
smbmap:tldr:78403 smbmap: Upload a file to a remote system.$ smbmap -u ${username} --prompt -H ${ip} --upload ${source} ${destination}try on your machineexplain this command
-
smbmap:tldr:7c097 smbmap: Upload file through smb using username and password.$ smbmap -u ${username} -p ${password} -d ${domain} -H ${ip_or_hostname} --upload ${filename} '${-share_name-remote_filename}'try on your machineexplain this command
-
smbmap:tldr:94259 smbmap: Connect to an ip or hostname through smb using a username and password.$ smbmap -u ${username} -p ${password} -d ${domain} -H ${ip_or_hostname}try on your machineexplain this command
-
smbmap:tldr:b1322 smbmap: Enumerate hosts with NULL sessions enabled and open shares.$ smbmap --host-file ${filename}try on your machineexplain this command
-
smbmap:tldr:f3f28 smbmap: Execute a shell command on a remote system.$ smbmap -u ${username} --prompt -H ${ip} -x ${command}try on your machineexplain this command