public static API_Nikto help(this API_Nikto nikto) { return(nikto.execute("")); }
public static API_Nikto scan(this API_Nikto nikto, string ip, int port) { var niktoCommands = "-host {0} -port {1}".format(ip, port); return(nikto.execute(niktoCommands)); }
public static API_Nikto waitForExit(this API_Nikto nikto) { return(nikto.waitForExecutionCompletion()); }
public static API_Nikto scan(this API_Nikto nikto, string ip) { return(nikto.scan(ip, 80)); }