mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 23:46:02 +02:00
rpcdump.py.md: add page
This commit is contained in:
parent
1a3c51a168
commit
a7541f4bd4
1 changed files with 25 additions and 0 deletions
25
pages/common/rpcdump.py.md
Normal file
25
pages/common/rpcdump.py.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# rpcdump.py
|
||||
|
||||
> Dump remote RPC endpoints information via the Endpoint Mapper.
|
||||
> Part of the Impacket suite.
|
||||
> More information: <https://github.com/fortra/impacket>.
|
||||
|
||||
- Dump RPC endpoints using username and password:
|
||||
|
||||
`rpcdump.py {{domain}}/{{username}}:{{password}}@{{target}}`
|
||||
|
||||
- Dump RPC endpoints using NTLM hashes:
|
||||
|
||||
`rpcdump.py -hashes {{LMHASH}}:{{NTHASH}} {{domain}}/{{username}}:{{password}}@{{target}}`
|
||||
|
||||
- Specify a target IP address explicitly (useful if the target name is a NetBIOS name):
|
||||
|
||||
`rpcdump.py -target-ip {{target_ip}} {{domain}}/{{username}}:{{password}}@{{target}}`
|
||||
|
||||
- Connect to a specific port (default is 135 for RPC Endpoint Mapper):
|
||||
|
||||
`rpcdump.py -port {{port_number}} {{domain}}/{{username}}:{{password}}@{{target}}`
|
||||
|
||||
- Enable debug output:
|
||||
|
||||
`rpcdump.py -debug {{domain}}/{{username}}:{{password}}@{{target}}`
|
Loading…
Add table
Reference in a new issue