( Target target, SynScanReceiver receiver, String custom )
| 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 "; |
| 134 | |
| 135 | if( custom != null ) |
| 136 | command += "-p " + custom + " "; |
| 137 | |
| 138 | command += target.getCommandLineRepresentation(); |
| 139 | |
| 140 | Logger.debug( "synScan - " + command ); |
| 141 | |
| 142 | return super.async( command, receiver ); |
| 143 | } |
| 144 | |
| 145 | public Child synScan( Target target, SynScanReceiver receiver) throws ChildManager.ChildNotStartedException { |
| 146 | return synScan(target, receiver, null); |
no test coverage detected