using ReconNess.Core.Models;
var match = System.Text.RegularExpressions.Regex.Match(lineInput, @":(\d{1,5})");
Service = match.Groups[1].Value,
Port = int.Parse(match.Groups[1].Value),
HasHttpOpen = "80".Equals(match.Groups[1].Value) || "443".Equals(match.Groups[1].Value)
return new ScriptOutput();