
rpcclient
List of commands for rpcclient:
-
rpcclient:tldr:0a889 rpcclient: Connect to a remote host on a domain without a password.$ rpcclient --user ${username} --workgroup ${domain} --no-pass ${ip}try on your machineexplain this command
-
rpcclient:tldr:0e250 rpcclient: Create a new user in the domain.$ rpcclient $> createdomuser ${username}try on your machineexplain this command
-
rpcclient:tldr:2ffa4 rpcclient: Connect to a remote host, passing the password hash.$ rpcclient --user ${domain}\${username} --pw-nt-hash ${ip}try on your machineexplain this command
-
rpcclient:tldr:323cd rpcclient: Connect to a remote host.$ rpcclient --user ${domain}\${username}%${password} ${ip}try on your machineexplain this command
-
rpcclient:tldr:3d3e7 rpcclient: Display information about a specific user.$ rpcclient $> queryuser ${select}try on your machineexplain this command
-
rpcclient:tldr:77abf rpcclient: Display privileges.$ rpcclient $> enumprivstry on your machineexplain this command
-
rpcclient:tldr:9d169 rpcclient: Execute shell commands on a remote host.$ rpcclient --user ${domain}\${username}%${password} --command ${semicolon_separated_commands} ${ip}try on your machineexplain this command
-
rpcclient:tldr:a694c rpcclient: Display domain users.$ rpcclient $> enumdomuserstry on your machineexplain this command