diff options
Diffstat (limited to 'Inveigh/Program.cs')
-rw-r--r-- | Inveigh/Program.cs | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Inveigh/Program.cs b/Inveigh/Program.cs index 97fe911..ebb3a78 100644 --- a/Inveigh/Program.cs +++ b/Inveigh/Program.cs @@ -74,10 +74,10 @@ namespace Inveigh public static string[] argIgnoreAgents = { "Firefox" }; public static string[] argIgnoreDomains; public static string[] argIgnoreIPs; - public static string[] argIgnoreHosts; + public static string[] argIgnoreQueries; public static string[] argIgnoreMACs; public static string[] argReplyToDomains; - public static string[] argReplyToHosts; + public static string[] argReplyToQueries; public static string[] argReplyToIPs; public static string[] argReplyToMACs; public static string argSpooferIP = ""; @@ -174,7 +174,7 @@ namespace Inveigh public static string netbiosDomain = Environment.UserDomainName; public static string dnsDomain = ""; public static ulong smb2Session = 5548434740922023936; // todo check - public static string version = "2.0.6"; + public static string version = "2.0.8"; static void Main(string[] arguments) { @@ -355,11 +355,6 @@ namespace Inveigh argIgnoreDomains = arguments[entry.index + 1].ToUpper().Split(','); break; - case "-IGNOREHOSTS": - case "/IGNOREHOSTS": - argIgnoreHosts = arguments[entry.index + 1].ToUpper().Split(','); - break; - case "-IGNOREIPS": case "/IGNOREIPS": argIgnoreIPs = arguments[entry.index + 1].ToUpper().Split(','); @@ -370,6 +365,11 @@ namespace Inveigh argIgnoreMACs = arguments[entry.index + 1].ToUpper().Replace(":", "").Replace("-", "").Split(','); break; + case "-IGNOREQUERIES": + case "/IGNOREQUERIES": + argIgnoreQueries = arguments[entry.index + 1].ToUpper().Split(','); + break; + case "-INSPECT": case "/INSPECT": argInspect = arguments[entry.index + 1].ToUpper(); @@ -545,11 +545,6 @@ namespace Inveigh argReplyToDomains = arguments[entry.index + 1].ToUpper().Split(','); break; - case "-REPLYTOHOSTS": - case "/REPLYTOHOSTS": - argReplyToHosts = arguments[entry.index + 1].ToUpper().Split(','); - break; - case "-REPLYTOIPS": case "/REPLYTOIPS": argReplyToIPs = arguments[entry.index + 1].ToUpper().Split(','); @@ -558,7 +553,12 @@ namespace Inveigh case "-REPLYTOMACS": case "/REPLYTOMACS": argReplyToMACs = arguments[entry.index + 1].ToUpper().Replace(":", "").Replace("-", "").Split(','); - break; + break; + + case "-REPLYTOQUERIES": + case "/REPLYTOQUERIES": + argReplyToQueries = arguments[entry.index + 1].ToUpper().Split(','); + break; case "-WEBDAV": case "/WEBDAV": |