( Target target, SynScanReceiver receiver, String custom )
| 147 | } |
| 148 | |
| 149 | public Child customScan( Target target, SynScanReceiver receiver, String custom ) throws ChildManager.ChildNotStartedException { |
| 150 | String command = "-vvv "; |
| 151 | |
| 152 | if( custom != null ) |
| 153 | command += custom + " "; |
| 154 | |
| 155 | command += target.getCommandLineRepresentation(); |
| 156 | |
| 157 | Logger.debug( "customScan - " + command ); |
| 158 | |
| 159 | return super.async( command, receiver ); |
| 160 | } |
| 161 | |
| 162 | public Child inpsect( Target target, InspectionReceiver receiver, boolean focusedScan ) throws ChildManager.ChildNotStartedException { |
| 163 | String cmd; |
no test coverage detected