rpcclient: add page (#4747)

beep
Alex 2020-10-24 14:06:56 +02:00 committed by GitHub
parent 622e1cf73c
commit 32e310ff63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

36
pages/linux/rpcclient.md Normal file
View File

@ -0,0 +1,36 @@
# rpcclient
> MS-RPC client tool (part of the samba suite).
> More information: <https://www.samba.org/samba/docs/current/man-html/rpcclient.1.html>.
- Connect to a remote host:
`rpcclient --user {{domain}}\{{username}}%{{password}} {{ip}}`
- Connect to a remote host on a domain without a password:
`rpcclient --user {{username}} --workgroup {{domain}} --no-pass {{ip}}`
- Connect to a remote host, passing the password hash:
`rpcclient --user {{domain}}\{{username}} --pw-nt-hash {{ip}}`
- Execute shell commands on a remote host:
`rpcclient --user {{domain}}\{{username}}%{{password}} --command {{semicolon_separated_commands}} {{ip}}`
- Display domain users:
`rpcclient $> enumdomusers`
- Display privileges:
`rpcclient $> enumprivs`
- Display information about a specific user:
`rpcclient $> queryuser {{username|rid}}`
- Create a new user in the domain:
`rpcclient $> createdomuser {{username}}`