(&self)
| 22 | |
| 23 | impl SubdomainEnumTool { |
| 24 | pub fn call_tool(&self) -> std::process::Command { |
| 25 | let mut cmd = std::process::Command::new("enumrust"); |
| 26 | cmd.args(&["-d", &self.domain, "--subfinder"]); |
| 27 | cmd |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | //****************// |
no outgoing calls
no test coverage detected