/* * Yeni bir Hedef Port listesi tanımlanır ve ID değeri döndürülür. * */ public static string CreatePortList(OpenVASManager manager) { Console.WriteLine("Hedef Port adreslerini giriniz. -- 1-1000, 1005-1100 -- veya -- 1-65535 -- gibi."); //Parse tool can write... string portGUID = BLPort.CreatePort(manager, "T: " + Convert.ToString(Console.ReadLine())); if (portGUID == null) { Console.Write("Port List hatalı girildi...\n"); } else { return(portGUID); } return(null); }
/* * Target Port Listesinden seçilen target listin ID değerini döndürür. * */ public static string GetPortGUID(OpenVASManager manager) { BLPort.ListPorts(manager); return(BLPort.GetPortID(manager, Convert.ToInt32(SelectPort(manager)))); }