check_options
Check available configuration options for a selected penetration testing module to configure security assessments properly.
Instructions
After selecting the right module call this to check what options that module presents
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prot | Yes | ||
| module | Yes |
Implementation Reference
- src/pentestmcp/server.py:324-324 (registration)Registration of the 'check_options' tool using the @mcp.tool decorator, specifying name and description.@mcp.tool(name='check_options',description='After selecting the right module call this to check what options that module presents')
- src/pentestmcp/server.py:325-326 (handler)Handler function that executes the tool logic by running the netexec command to display options for the given protocol and module.def check_options(prot:str,module:str): return run_command(["netexec",prot,'-M',module,'--options'])