-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathProgram.cs
More file actions
212 lines (196 loc) · 7.97 KB
/
Program.cs
File metadata and controls
212 lines (196 loc) · 7.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel.Design;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
namespace scout
{
class Program
{
static void PrintSectionHeader(string header)
{
Console.WriteLine($"[======== {header.ToUpper()} ========]");
}
static void PrintSectionFooter()
{
Console.WriteLine($"\n");
}
static void PrintItemHeader(string title)
{
Console.WriteLine($"\n[-------- {title} --------]");
}
static void PrintItemValue(string title, object value)
{
Console.WriteLine($"{title}: {value}");
}
static void GetProcesses()
{
PrintSectionHeader("PROCESSES");
var processes = Process.GetProcesses(Helpers.COMPUTERNAME);
Console.WriteLine("PID\t\tName");
foreach (Process process in processes)
{
if (Helpers.DefensiveProcesses.ContainsKey(process.ProcessName.ToLower()))
{
Console.WriteLine($"{process.Id}\t\t{process.ProcessName} [DEFENSIVE PROCESS]");
}
else
{
Console.WriteLine($"{process.Id}\t\t{process.ProcessName}");
}
}
PrintSectionFooter();
}
public static void ListAuditSettings()
{
PrintSectionHeader("Audit Settings");
Dictionary<string, object> settings = Helpers.GetRegValues("HKLM", "Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\Audit");
if ((settings != null) && (settings.Count != 0))
{
foreach (KeyValuePair<string, object> kvp in settings)
{
if (kvp.Value.GetType().IsArray && (kvp.Value.GetType().GetElementType().ToString() == "System.String"))
{
string result = string.Join(",", (string[])kvp.Value);
PrintItemValue(kvp.Key, result);
}
else
{
PrintItemValue(kvp.Key, kvp.Value);
}
}
}
else
{
Console.WriteLine("No Audit Settings Found");
}
PrintSectionFooter();
}
public static void ListWEFSettings()
{
PrintSectionHeader("WEF Settings");
Dictionary<string, object> settings = Helpers.GetRegValues("HKLM", "Software\\Policies\\Microsoft\\Windows\\EventLog\\EventForwarding\\SubscriptionManager");
if ((settings != null) && (settings.Count != 0))
{
foreach (KeyValuePair<string, object> kvp in settings)
{
if (kvp.Value.GetType().IsArray && (kvp.Value.GetType().GetElementType().ToString() == "System.String"))
{
string result = string.Join(",", (string[])kvp.Value);
PrintItemValue(kvp.Key, result);
}
else
{
PrintItemValue(kvp.Key, kvp.Value);
}
}
}
else
{
Console.WriteLine("No WEF Settings Found");
}
PrintSectionFooter();
}
static void GetPowerShellInformation()
{
PrintSectionHeader("PowerShell Settings");
string PowerShellVersion2 = Helpers.GetRegValue("HKLM", "SOFTWARE\\Microsoft\\PowerShell\\1\\PowerShellEngine", "PowerShellVersion");
PrintItemValue("PowerShell v2 Version", PowerShellVersion2);
string PowerShellVersion5 = Helpers.GetRegValue("HKLM", "SOFTWARE\\Microsoft\\PowerShell\\3\\PowerShellEngine", "PowerShellVersion");
PrintItemValue("PowerShell v5 Version", PowerShellVersion5);
Dictionary<string, object> transcriptionSettings = Helpers.GetRegValues("HKLM", "SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell\\Transcription");
PrintItemHeader("Transcription Settings");
if ((transcriptionSettings != null) && (transcriptionSettings.Count != 0))
{
foreach (KeyValuePair<string, object> kvp in transcriptionSettings)
{
PrintItemValue(kvp.Key, kvp.Value);
}
}
else
{
Console.WriteLine("No Transcription Settings Found.");
}
Dictionary<string, object> moduleLoggingSettings = Helpers.GetRegValues("HKLM", "SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell\\ModuleLogging");
PrintItemHeader("Module Logging Settings");
if ((moduleLoggingSettings != null) && (moduleLoggingSettings.Count != 0))
{
foreach (KeyValuePair<string, object> kvp in moduleLoggingSettings)
{
PrintItemValue(kvp.Key, kvp.Value);
}
}
else
{
Console.WriteLine("No Module Logging Settings Found.");
}
Dictionary<string, object> scriptBlockSettings = Helpers.GetRegValues("HKLM", "SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell\\ScriptBlockLogging");
PrintItemHeader("Scriptblock Logging Settings");
if ((scriptBlockSettings != null) && (scriptBlockSettings.Count != 0))
{
foreach (KeyValuePair<string, object> kvp in scriptBlockSettings)
{
PrintItemValue(kvp.Key, kvp.Value);
}
}
else
{
Console.WriteLine("No Script Block Settings Found.");
}
PrintSectionFooter();
}
static public void GetDotNetVersions()
{
PrintSectionHeader(".NET Versions");
List<string> dotnetVersions = new List<string>();
dotnetVersions.Add(Helpers.GetRegValue("HKLM", "SOFTWARE\\Microsoft\\NET Framework Setup\\NDP\\v3", "Version"));
dotnetVersions.Add(Helpers.GetRegValue("HKLM", "SOFTWARE\\Microsoft\\NET Framework Setup\\NDP\\v3.5", "Version"));
dotnetVersions.Add(Helpers.GetRegValue("HKLM", "SOFTWARE\\Microsoft\\NET Framework Setup\\NDP\\v4\\Full", "Version"));
dotnetVersions.Add(Helpers.GetRegValue("HKLM", "SOFTWARE\\Microsoft\\NET Framework Setup\\NDP\\v4\\Client", "Version"));
foreach (string version in dotnetVersions)
{
if (!String.IsNullOrEmpty(version))
{
Console.WriteLine($" {version}");
}
}
PrintSectionFooter();
}
static public void GetServices()
{
PrintSectionHeader("Services");
var services = ServiceController.GetServices(Helpers.COMPUTERNAME);
foreach (ServiceController service in services)
{
PrintItemValue(service.DisplayName, service.Status);
}
PrintSectionFooter();
}
static void Main(string[] args)
{
if (args == null || args.Length != 1)
{
Console.WriteLine("[!] Usage: scout.exe <COMPUTERNAME|IPADDRESS>");
Environment.Exit(1);
}
Helpers.COMPUTERNAME = args[0];
Console.WriteLine($"[i] Running Scout against {Helpers.COMPUTERNAME}..");
try
{
GetProcesses();
GetServices();
GetPowerShellInformation();
GetDotNetVersions();
ListAuditSettings();
ListWEFSettings();
}
catch (Exception e)
{
Console.WriteLine($"[!] Error running Scout:\n\n{e}");
}
}
}
}