| 68 | )] |
| 69 | #[derive(Debug, ::serde::Deserialize, ::serde::Serialize, JsonSchema)] |
| 70 | pub struct IpScanTool { |
| 71 | /// Target IP address or CIDR range |
| 72 | ip: String, |
| 73 | /// Ports to scan (default: top 1000) |
| 74 | ports: Option<String>, |
| 75 | /// Custom wordlist path for fuzzing |
| 76 | wordlist: Option<String>, |
| 77 | } |
| 78 | |
| 79 | impl IpScanTool { |
| 80 | pub fn call_tool(&self) -> std::process::Command { |
nothing calls this directly
no outgoing calls
no test coverage detected