check_SMB_signing
Check SMB signing configuration on IP addresses to identify potential security vulnerabilities in network communication protocols.
Instructions
used to check smb signgings of an ip address or some range of ip addresses with the needed options
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ips | Yes |
Implementation Reference
- src/pentestmcp/server.py:184-185 (handler)The handler function for the 'check_SMB_signing' tool. It takes a list of IP addresses and runs the 'netexec smb' command on them to check SMB signing status.def check_SMB_signing(ips:List[str]): return run_command(["netexec","smb"]+ips)
- src/pentestmcp/server.py:183-183 (registration)Registers the 'check_SMB_signing' tool in the MCP server using the @mcp.tool decorator.@mcp.tool(name="check_SMB_signing",description="used to check smb signgings of an ip address or some range of ip addresses with the needed options")