MCPcopy Create free account
hub / github.com/AutoRecon/AutoRecon / RPCClient

Class RPCClient

autorecon/default-plugins/rpcclient.py:3–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1from autorecon.plugins import ServiceScan
2
3class RPCClient(ServiceScan):
4
5 def __init__(self):
6 super().__init__()
7 self.name = "rpcclient"
8 self.tags = ['default', 'safe', 'rpc']
9
10 def configure(self):
11 self.match_service_name(['^msrpc', '^rpcbind', '^erpc'])
12
13 def manual(self, service, plugin_was_run):
14 service.add_manual_command('RPC Client:', 'rpcclient -p {port} -U "" {address}')

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected