( Target target, boolean resolve, TraceReceiver receiver )
| 122 | } |
| 123 | |
| 124 | public Child trace( Target target, boolean resolve, TraceReceiver receiver ) throws ChildManager.ChildNotStartedException { |
| 125 | |
| 126 | String cmd = String.format("-sn --traceroute --privileged --send-ip --system-dns -%c %s", |
| 127 | (resolve ? 'R' : 'n'), target.getCommandLineRepresentation()); |
| 128 | |
| 129 | return super.async(cmd, receiver ); |
| 130 | } |
| 131 | |
| 132 | public Child synScan( Target target, SynScanReceiver receiver, String custom ) throws ChildManager.ChildNotStartedException { |
| 133 | String command = "-sS -P0 --privileged --send-ip --system-dns -vvv "; |
no test coverage detected