mirror of
https://github.com/peass-ng/PEASS-ng.git
synced 2026-07-30 23:50:27 -07:00
Winpeasv1.1
This commit is contained in:
@@ -10,7 +10,7 @@ namespace winPEAS
|
|||||||
{
|
{
|
||||||
class Program
|
class Program
|
||||||
{
|
{
|
||||||
public static string version = "v1";
|
public static string version = "v1.1";
|
||||||
public static string advisory = "winpeas should be used for authorized penetration testing and/or educational purposes only.Any misuse of this software will not be the responsibility of the author or of any other collaborator. Use it at your own networks and/or with the network owner's permission.";
|
public static string advisory = "winpeas should be used for authorized penetration testing and/or educational purposes only.Any misuse of this software will not be the responsibility of the author or of any other collaborator. Use it at your own networks and/or with the network owner's permission.";
|
||||||
public static bool banner = true;
|
public static bool banner = true;
|
||||||
public static bool search_fast = true;
|
public static bool search_fast = true;
|
||||||
@@ -1161,12 +1161,32 @@ namespace winPEAS
|
|||||||
{
|
{
|
||||||
Beaprint.MainPrint("Device Drivers --Non Microsoft--");
|
Beaprint.MainPrint("Device Drivers --Non Microsoft--");
|
||||||
// this link is not very specific, but its the best on hacktricks
|
// this link is not very specific, but its the best on hacktricks
|
||||||
Beaprint.LinkPrint("https://book.hacktricks.xyz/windows/basic-cmd-for-pentesters", "Check 3rd party drivers for known vulnerabilities/rootkits.");
|
Beaprint.LinkPrint("https://book.hacktricks.xyz/windows/windows-local-privilege-escalation#vulnerable-drivers", "Check 3rd party drivers for known vulnerabilities/rootkits.");
|
||||||
|
|
||||||
foreach (var driver in ApplicationInfo.GetDeviceDriversNoMicrosoft())
|
foreach (var driver in ApplicationInfo.GetDeviceDriversNoMicrosoft())
|
||||||
{
|
{
|
||||||
System.Console.WriteLine(String.Format(" {0}\n {1} [{2}]", driver.Key, driver.Value.ProductName, driver.Value.ProductVersion));
|
string path_driver = driver.Key;
|
||||||
Beaprint.PrintLineSeparator();
|
List<string> file_rights = MyUtils.GetPermissionsFile(path_driver, currentUserSIDs);
|
||||||
|
List<string> dir_rights = MyUtils.GetPermissionsFolder(path_driver, currentUserSIDs);
|
||||||
|
|
||||||
|
Dictionary<string, string> colorsD = new Dictionary<string, string>()
|
||||||
|
{
|
||||||
|
{ "Permissions.*", Beaprint.ansi_color_bad },
|
||||||
|
{ path_driver.Replace("\\", "\\\\").Replace("(", "\\(").Replace(")", "\\)").Replace("]", "\\]").Replace("[", "\\[").Replace("?", "\\?").Replace("+","\\+"), (file_rights.Count > 0 || dir_rights.Count > 0) ? Beaprint.ansi_color_bad : Beaprint.ansi_color_good },
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
string formString = " {0} - {1} [{2}]: {3}";
|
||||||
|
if (file_rights.Count > 0)
|
||||||
|
formString += "\n Permissions file: {4}";
|
||||||
|
if (dir_rights.Count > 0)
|
||||||
|
formString += "\n Permissions folder(DLL Hijacking): {5}";
|
||||||
|
|
||||||
|
Beaprint.AnsiPrint(String.Format(formString, driver.Value.ProductName, driver.Value.ProductVersion, driver.Value.CompanyName, path_driver, String.Join(", ", file_rights), String.Join(", ", dir_rights)), colorsD);
|
||||||
|
|
||||||
|
//If vuln, end with separator
|
||||||
|
if ((file_rights.Count > 0) || (dir_rights.Count > 0))
|
||||||
|
Beaprint.PrintLineSeparator();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1179,7 +1199,7 @@ namespace winPEAS
|
|||||||
|
|
||||||
Beaprint.GreatPrint("Applications Information");
|
Beaprint.GreatPrint("Applications Information");
|
||||||
PrintActiveWindow();
|
PrintActiveWindow();
|
||||||
//PrintInstalledApps();
|
PrintInstalledApps();
|
||||||
PrintAutoRuns();
|
PrintAutoRuns();
|
||||||
PrintScheduled();
|
PrintScheduled();
|
||||||
PrintDeviceDrivers();
|
PrintDeviceDrivers();
|
||||||
@@ -1967,8 +1987,8 @@ namespace winPEAS
|
|||||||
{
|
{
|
||||||
foreach (Dictionary<string, string> cc in could_creds)
|
foreach (Dictionary<string, string> cc in could_creds)
|
||||||
{
|
{
|
||||||
string formString = " {0}[{1}]\n Accessed:{2} -- Size:{3}";
|
string formString = " {0} ({1})\n Accessed:{2} -- Size:{3}";
|
||||||
System.Console.WriteLine(String.Format(formString, cc));
|
Beaprint.BadPrint(String.Format(formString, cc["file"], cc["Description"], cc["Accessed"], cc["Size"] ));
|
||||||
System.Console.WriteLine("");
|
System.Console.WriteLine("");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2447,7 +2467,7 @@ namespace winPEAS
|
|||||||
* Wifi (passwords?)
|
* Wifi (passwords?)
|
||||||
* Keylogger?
|
* Keylogger?
|
||||||
* Input prompt ==> Better in PS
|
* Input prompt ==> Better in PS
|
||||||
* List Drivers ==> but how do I know if a driver is malicious?
|
* Cretae list of malicious drives that could allow to privesc?
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//System.Console.ReadLine(); //For debugging
|
//System.Console.ReadLine(); //For debugging
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@
|
|||||||
<!DOCTYPE dotfuscatorMap SYSTEM "http://www.preemptive.com/dotfuscator/dtd/dotfuscatorMap_v1.2.dtd">
|
<!DOCTYPE dotfuscatorMap SYSTEM "http://www.preemptive.com/dotfuscator/dtd/dotfuscatorMap_v1.2.dtd">
|
||||||
<dotfuscatorMap version="1.1">
|
<dotfuscatorMap version="1.1">
|
||||||
<header>
|
<header>
|
||||||
<timestamp>2020-08-06T00:06:30</timestamp>
|
<timestamp>2020-08-16T15:36:41</timestamp>
|
||||||
<product version="5.44.0.10087" user="rhalyc gar" serial="297344-391">Dotfuscator Community</product>
|
<product version="5.44.0.10087" user="rhalyc gar" serial="297344-391">Dotfuscator Community</product>
|
||||||
</header>
|
</header>
|
||||||
<mapping>
|
<mapping>
|
||||||
@@ -14614,7 +14614,7 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>string()</signature>
|
<signature>string()</signature>
|
||||||
<name>GetActiveWindowTitle</name>
|
<name>GetActiveWindowTitle</name>
|
||||||
<newname>e</newname>
|
<newname>f</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<string,string>>(System.Collections.Generic.Dictionary`2<string,string>)</signature>
|
<signature>System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<string,string>>(System.Collections.Generic.Dictionary`2<string,string>)</signature>
|
||||||
@@ -14624,12 +14624,17 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<string,string>>()</signature>
|
<signature>System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<string,string>>()</signature>
|
||||||
<name>GetAutoRunsFolder</name>
|
<name>GetAutoRunsFolder</name>
|
||||||
<newname>c</newname>
|
<newname>d</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<string,string>>()</signature>
|
<signature>System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<string,string>>()</signature>
|
||||||
<name>GetAutoRunsWMIC</name>
|
<name>GetAutoRunsWMIC</name>
|
||||||
<newname>b</newname>
|
<newname>c</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>System.Collections.Generic.Dictionary`2<string,System.Diagnostics.FileVersionInfo>()</signature>
|
||||||
|
<name>GetDeviceDriversNoMicrosoft</name>
|
||||||
|
<newname>a</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>native int()</signature>
|
<signature>native int()</signature>
|
||||||
@@ -14638,7 +14643,7 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>System.Collections.Generic.SortedDictionary`2<string,System.Collections.Generic.Dictionary`2<string,string>>()</signature>
|
<signature>System.Collections.Generic.SortedDictionary`2<string,System.Collections.Generic.Dictionary`2<string,string>>()</signature>
|
||||||
<name>GetInstalledAppsPerms</name>
|
<name>GetInstalledAppsPerms</name>
|
||||||
<newname>d</newname>
|
<newname>e</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>System.Collections.Generic.SortedDictionary`2<string,System.Collections.Generic.Dictionary`2<string,string>>(string)</signature>
|
<signature>System.Collections.Generic.SortedDictionary`2<string,System.Collections.Generic.Dictionary`2<string,string>>(string)</signature>
|
||||||
@@ -14653,7 +14658,7 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<string,string>>()</signature>
|
<signature>System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<string,string>>()</signature>
|
||||||
<name>GetScheduledAppsNoMicrosoft</name>
|
<name>GetScheduledAppsNoMicrosoft</name>
|
||||||
<newname>a</newname>
|
<newname>b</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>int32(native int, System.Text.StringBuilder, int32)</signature>
|
<signature>int32(native int, System.Text.StringBuilder, int32)</signature>
|
||||||
@@ -14706,7 +14711,7 @@
|
|||||||
</type>
|
</type>
|
||||||
<type>
|
<type>
|
||||||
<name>winPEAS.ApplicationInfo/<>c__DisplayClass9_0</name>
|
<name>winPEAS.ApplicationInfo/<>c__DisplayClass9_0</name>
|
||||||
<newname>b2/a</newname>
|
<newname>b2/b</newname>
|
||||||
<methodlist />
|
<methodlist />
|
||||||
<fieldlist>
|
<fieldlist>
|
||||||
<field>
|
<field>
|
||||||
@@ -14718,6 +14723,31 @@
|
|||||||
<propertylist />
|
<propertylist />
|
||||||
<eventlist />
|
<eventlist />
|
||||||
</type>
|
</type>
|
||||||
|
<type>
|
||||||
|
<name>winPEAS.ApplicationInfo/EnumAPI</name>
|
||||||
|
<newname>b2/a</newname>
|
||||||
|
<methodlist>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name>.ctor</name>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>bool(native unsigned int[], unsigned int32, unsigned int32&)</signature>
|
||||||
|
<name>EnumDeviceDrivers</name>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>int32(native unsigned int, System.Text.StringBuilder, unsigned int32)</signature>
|
||||||
|
<name>GetDeviceDriverBaseName</name>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>int32(native unsigned int, System.Text.StringBuilder, unsigned int32)</signature>
|
||||||
|
<name>GetDeviceDriverFileName</name>
|
||||||
|
</method>
|
||||||
|
</methodlist>
|
||||||
|
<fieldlist />
|
||||||
|
<propertylist />
|
||||||
|
<eventlist />
|
||||||
|
</type>
|
||||||
<type>
|
<type>
|
||||||
<name>winPEAS.Beaprint</name>
|
<name>winPEAS.Beaprint</name>
|
||||||
<newname>b3</newname>
|
<newname>b3</newname>
|
||||||
@@ -17274,23 +17304,28 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoApplications>g__PrintActiveWindow|44_0</name>
|
<name><PrintInfoApplications>g__PrintActiveWindow|44_0</name>
|
||||||
<newname>at</newname>
|
<newname>au</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoApplications>g__PrintAutoRuns|44_2</name>
|
<name><PrintInfoApplications>g__PrintAutoRuns|44_2</name>
|
||||||
<newname>ar</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintInfoApplications>g__PrintInstalledApps|44_1</name>
|
|
||||||
<newname>as</newname>
|
<newname>as</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoApplications>g__PrintScheduled|44_3</name>
|
<name><PrintInfoApplications>g__PrintDeviceDrivers|44_4</name>
|
||||||
<newname>aq</newname>
|
<newname>aq</newname>
|
||||||
</method>
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintInfoApplications>g__PrintInstalledApps|44_1</name>
|
||||||
|
<newname>at</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintInfoApplications>g__PrintScheduled|44_3</name>
|
||||||
|
<newname>ar</newname>
|
||||||
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoNetwork>g__PrintDNSCache|45_5</name>
|
<name><PrintInfoNetwork>g__PrintDNSCache|45_5</name>
|
||||||
@@ -17324,7 +17359,7 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoProcesses>g__PrintInterestingProcesses|42_0</name>
|
<name><PrintInfoProcesses>g__PrintInterestingProcesses|42_0</name>
|
||||||
<newname>aw</newname>
|
<newname>ax</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void(winPEAS.Program/<>c__DisplayClass43_0&)</signature>
|
<signature>void(winPEAS.Program/<>c__DisplayClass43_0&)</signature>
|
||||||
@@ -17339,62 +17374,62 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoServices>g__PrintPathDLLHijacking|43_3</name>
|
<name><PrintInfoServices>g__PrintPathDLLHijacking|43_3</name>
|
||||||
<newname>au</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintInfoServices>g__PrintWritableRegServices|43_2</name>
|
|
||||||
<newname>av</newname>
|
<newname>av</newname>
|
||||||
</method>
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintInfoServices>g__PrintWritableRegServices|43_2</name>
|
||||||
|
<newname>aw</newname>
|
||||||
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoUsers>g__PrintAutoLogin|41_7</name>
|
<name><PrintInfoUsers>g__PrintAutoLogin|41_7</name>
|
||||||
<newname>az</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintInfoUsers>g__PrintCU|41_1</name>
|
|
||||||
<newname>a5</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintInfoUsers>g__PrintClipboardText|41_3</name>
|
|
||||||
<newname>a3</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintInfoUsers>g__PrintEverLoggedUsers|41_6</name>
|
|
||||||
<newname>a0</newname>
|
<newname>a0</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoUsers>g__PrintHomeFolders|41_8</name>
|
<name><PrintInfoUsers>g__PrintCU|41_1</name>
|
||||||
<newname>ay</newname>
|
<newname>a6</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoUsers>g__PrintLoggedUsers|41_4</name>
|
<name><PrintInfoUsers>g__PrintClipboardText|41_3</name>
|
||||||
<newname>a2</newname>
|
<newname>a4</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoUsers>g__PrintPasswordPolicies|41_9</name>
|
<name><PrintInfoUsers>g__PrintEverLoggedUsers|41_6</name>
|
||||||
<newname>ax</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintInfoUsers>g__PrintRdpSessions|41_5</name>
|
|
||||||
<newname>a1</newname>
|
<newname>a1</newname>
|
||||||
</method>
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintInfoUsers>g__PrintHomeFolders|41_8</name>
|
||||||
|
<newname>az</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintInfoUsers>g__PrintLoggedUsers|41_4</name>
|
||||||
|
<newname>a3</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintInfoUsers>g__PrintPasswordPolicies|41_9</name>
|
||||||
|
<newname>ay</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintInfoUsers>g__PrintRdpSessions|41_5</name>
|
||||||
|
<newname>a2</newname>
|
||||||
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintInfoUsers>g__PrintTokenP|41_2</name>
|
<name><PrintInfoUsers>g__PrintTokenP|41_2</name>
|
||||||
<newname>a4</newname>
|
<newname>a5</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>System.Collections.Generic.Dictionary`2<string,string>()</signature>
|
<signature>System.Collections.Generic.Dictionary`2<string,string>()</signature>
|
||||||
<name><PrintInfoUsers>g__colorsU|41_0</name>
|
<name><PrintInfoUsers>g__colorsU|41_0</name>
|
||||||
<newname>a6</newname>
|
<newname>a7</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
@@ -17474,78 +17509,78 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintSystemInfo>g__PrintAVInfo|40_13</name>
|
<name><PrintSystemInfo>g__PrintAVInfo|40_13</name>
|
||||||
<newname>a8</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintAuditInfo|40_2</name>
|
|
||||||
<newname>bj</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintBasicSystemInfo|40_0</name>
|
|
||||||
<newname>bl</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintCachedCreds|40_8</name>
|
|
||||||
<newname>bd</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintCredentialGuard|40_7</name>
|
|
||||||
<newname>be</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintDrivesInfo|40_12</name>
|
|
||||||
<newname>a9</newname>
|
<newname>a9</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintSystemInfo>g__PrintInetInfo|40_11</name>
|
<name><PrintSystemInfo>g__PrintAuditInfo|40_2</name>
|
||||||
<newname>ba</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintLAPSInfo|40_4</name>
|
|
||||||
<newname>bh</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintLSAProtection|40_6</name>
|
|
||||||
<newname>bf</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintPSInfo|40_1</name>
|
|
||||||
<newname>bk</newname>
|
<newname>bk</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintSystemInfo>g__PrintSystemEV|40_10</name>
|
<name><PrintSystemInfo>g__PrintBasicSystemInfo|40_0</name>
|
||||||
|
<newname>bm</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintCachedCreds|40_8</name>
|
||||||
|
<newname>be</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintCredentialGuard|40_7</name>
|
||||||
|
<newname>bf</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintDrivesInfo|40_12</name>
|
||||||
|
<newname>ba</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintInetInfo|40_11</name>
|
||||||
<newname>bb</newname>
|
<newname>bb</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintSystemInfo>g__PrintUACInfo|40_14</name>
|
<name><PrintSystemInfo>g__PrintLAPSInfo|40_4</name>
|
||||||
<newname>a7</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintUserEV|40_9</name>
|
|
||||||
<newname>bc</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name><PrintSystemInfo>g__PrintWEFInfo|40_3</name>
|
|
||||||
<newname>bi</newname>
|
<newname>bi</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintSystemInfo>g__PrintWdigest|40_5</name>
|
<name><PrintSystemInfo>g__PrintLSAProtection|40_6</name>
|
||||||
<newname>bg</newname>
|
<newname>bg</newname>
|
||||||
</method>
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintPSInfo|40_1</name>
|
||||||
|
<newname>bl</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintSystemEV|40_10</name>
|
||||||
|
<newname>bc</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintUACInfo|40_14</name>
|
||||||
|
<newname>a8</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintUserEV|40_9</name>
|
||||||
|
<newname>bd</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintWEFInfo|40_3</name>
|
||||||
|
<newname>bj</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name><PrintSystemInfo>g__PrintWdigest|40_5</name>
|
||||||
|
<newname>bh</newname>
|
||||||
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name><PrintWindowsCreds>g__PrintAlwaysInstallElevated|46_13</name>
|
<name><PrintWindowsCreds>g__PrintAlwaysInstallElevated|46_13</name>
|
||||||
@@ -17624,12 +17659,12 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name>CheckRegANSI</name>
|
<name>CheckRegANSI</name>
|
||||||
<newname>bw</newname>
|
<newname>bx</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name>CreateDynamicLists</name>
|
<name>CreateDynamicLists</name>
|
||||||
<newname>bx</newname>
|
<newname>by</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void(string[])</signature>
|
<signature>void(string[])</signature>
|
||||||
@@ -17639,53 +17674,53 @@
|
|||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name>PrintBrowserInfo</name>
|
<name>PrintBrowserInfo</name>
|
||||||
<newname>bn</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name>PrintInfoApplications</name>
|
|
||||||
<newname>bq</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name>PrintInfoNetwork</name>
|
|
||||||
<newname>bp</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name>PrintInfoProcesses</name>
|
|
||||||
<newname>bs</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name>PrintInfoServices</name>
|
|
||||||
<newname>br</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name>PrintInfoUsers</name>
|
|
||||||
<newname>bt</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name>PrintInterestingFiles</name>
|
|
||||||
<newname>bm</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name>PrintSystemInfo</name>
|
|
||||||
<newname>bu</newname>
|
|
||||||
</method>
|
|
||||||
<method>
|
|
||||||
<signature>void()</signature>
|
|
||||||
<name>PrintWindowsCreds</name>
|
|
||||||
<newname>bo</newname>
|
<newname>bo</newname>
|
||||||
</method>
|
</method>
|
||||||
<method>
|
<method>
|
||||||
<signature>void()</signature>
|
<signature>void()</signature>
|
||||||
<name>waitInput</name>
|
<name>PrintInfoApplications</name>
|
||||||
|
<newname>br</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name>PrintInfoNetwork</name>
|
||||||
|
<newname>bq</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name>PrintInfoProcesses</name>
|
||||||
|
<newname>bt</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name>PrintInfoServices</name>
|
||||||
|
<newname>bs</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name>PrintInfoUsers</name>
|
||||||
|
<newname>bu</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name>PrintInterestingFiles</name>
|
||||||
|
<newname>bn</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name>PrintSystemInfo</name>
|
||||||
<newname>bv</newname>
|
<newname>bv</newname>
|
||||||
</method>
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name>PrintWindowsCreds</name>
|
||||||
|
<newname>bp</newname>
|
||||||
|
</method>
|
||||||
|
<method>
|
||||||
|
<signature>void()</signature>
|
||||||
|
<name>waitInput</name>
|
||||||
|
<newname>bw</newname>
|
||||||
|
</method>
|
||||||
</methodlist>
|
</methodlist>
|
||||||
<fieldlist>
|
<fieldlist>
|
||||||
<field>
|
<field>
|
||||||
@@ -20029,11 +20064,11 @@
|
|||||||
<statistics>
|
<statistics>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Total Classes</description>
|
<description>Total Classes</description>
|
||||||
<statistic>304</statistic>
|
<statistic>305</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Total Methods</description>
|
<description>Total Methods</description>
|
||||||
<statistic>2204</statistic>
|
<statistic>2210</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Total Fields</description>
|
<description>Total Fields</description>
|
||||||
@@ -20049,13 +20084,13 @@
|
|||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Total Classes Renamed</description>
|
<description>Total Classes Renamed</description>
|
||||||
<statistic>206</statistic>
|
<statistic>207</statistic>
|
||||||
<statistic>67.76 %</statistic>
|
<statistic>67.87 %</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Total Methods Renamed</description>
|
<description>Total Methods Renamed</description>
|
||||||
<statistic>1206</statistic>
|
<statistic>1208</statistic>
|
||||||
<statistic>54.72 %</statistic>
|
<statistic>54.66 %</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Total Fields Renamed</description>
|
<description>Total Fields Renamed</description>
|
||||||
@@ -20075,32 +20110,32 @@
|
|||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Methods Renamed to 'a'</description>
|
<description>Methods Renamed to 'a'</description>
|
||||||
<statistic>270</statistic>
|
<statistic>270</statistic>
|
||||||
<statistic>12.25 %</statistic>
|
<statistic>12.22 %</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Methods Renamed to 'b'</description>
|
<description>Methods Renamed to 'b'</description>
|
||||||
<statistic>93</statistic>
|
<statistic>93</statistic>
|
||||||
<statistic>4.22 %</statistic>
|
<statistic>4.21 %</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Methods Renamed to 'c'</description>
|
<description>Methods Renamed to 'c'</description>
|
||||||
<statistic>92</statistic>
|
<statistic>92</statistic>
|
||||||
<statistic>4.17 %</statistic>
|
<statistic>4.16 %</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Methods Renamed to 'd'</description>
|
<description>Methods Renamed to 'd'</description>
|
||||||
<statistic>79</statistic>
|
<statistic>79</statistic>
|
||||||
<statistic>3.58 %</statistic>
|
<statistic>3.57 %</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Methods Renamed to 'e'</description>
|
<description>Methods Renamed to 'e'</description>
|
||||||
<statistic>55</statistic>
|
<statistic>55</statistic>
|
||||||
<statistic>2.50 %</statistic>
|
<statistic>2.49 %</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Methods Renamed to 'f'</description>
|
<description>Methods Renamed to 'f'</description>
|
||||||
<statistic>46</statistic>
|
<statistic>47</statistic>
|
||||||
<statistic>2.09 %</statistic>
|
<statistic>2.13 %</statistic>
|
||||||
</statisticline>
|
</statisticline>
|
||||||
<statisticline>
|
<statisticline>
|
||||||
<description>Methods Renamed to 'h'</description>
|
<description>Methods Renamed to 'h'</description>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -8,12 +8,12 @@
|
|||||||
<input>
|
<input>
|
||||||
<loadpaths />
|
<loadpaths />
|
||||||
<asmlist>
|
<asmlist>
|
||||||
<inputassembly refid="3405f3ce-f41d-4c64-bcb7-fed2e75c472a">
|
<inputassembly refid="03432875-3f82-445c-a3fe-d9777df92e30">
|
||||||
<option>honoroas</option>
|
<option>honoroas</option>
|
||||||
<option>stripoa</option>
|
<option>stripoa</option>
|
||||||
<option>library</option>
|
<option>library</option>
|
||||||
<option>transformxaml</option>
|
<option>transformxaml</option>
|
||||||
<file dir="D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\bin\x86\Release" name="winPEAS.exe" />
|
<file dir="D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x86\Release" name="winPEAS.exe" />
|
||||||
</inputassembly>
|
</inputassembly>
|
||||||
</asmlist>
|
</asmlist>
|
||||||
</input>
|
</input>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -87,3 +87,32 @@ D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) -
|
|||||||
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Debug\pl\winPEAS.resources.dll
|
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Debug\pl\winPEAS.resources.dll
|
||||||
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Debug\ru\winPEAS.resources.dll
|
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Debug\ru\winPEAS.resources.dll
|
||||||
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Debug\zh-CN\winPEAS.resources.dll
|
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Debug\zh-CN\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\winPEAS.exe.config
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\winPEAS.exe
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\winPEAS.pdb
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\de\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\es\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\fr\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\it\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\pl\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\ru\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Debug\zh-CN\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.csprojAssemblyReference.cache
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.Properties.Resources.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.Properties.Resources.de.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.Properties.Resources.es.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.Properties.Resources.fr.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.Properties.Resources.it.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.Properties.Resources.pl.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.Properties.Resources.ru.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.Properties.Resources.zh-CN.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.csproj.GenerateResource.cache
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\de\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\es\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\fr\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\it\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\pl\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\ru\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\zh-CN\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.exe
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Debug\winPEAS.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -143,3 +143,32 @@ D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) -
|
|||||||
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Release\pl\winPEAS.resources.dll
|
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Release\pl\winPEAS.resources.dll
|
||||||
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Release\ru\winPEAS.resources.dll
|
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Release\ru\winPEAS.resources.dll
|
||||||
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Release\zh-CN\winPEAS.resources.dll
|
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\Release\zh-CN\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\winPEAS.exe.config
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\winPEAS.exe
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\winPEAS.pdb
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\de\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\es\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\fr\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\it\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\pl\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\ru\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\Release\zh-CN\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.csprojAssemblyReference.cache
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.Properties.Resources.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.Properties.Resources.de.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.Properties.Resources.es.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.Properties.Resources.fr.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.Properties.Resources.it.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.Properties.Resources.pl.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.Properties.Resources.ru.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.Properties.Resources.zh-CN.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.csproj.GenerateResource.cache
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\de\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\es\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\fr\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\it\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\pl\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\ru\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\zh-CN\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.exe
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\Release\winPEAS.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -90,3 +90,31 @@ D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) -
|
|||||||
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\x64\Release\zh-CN\winPEAS.resources.dll
|
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\x64\Release\zh-CN\winPEAS.resources.dll
|
||||||
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.exe
|
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.exe
|
||||||
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.pdb
|
D:\Users\cpolo\Downloads\privilege-escalation-awesome-scripts-suite-master (1) - cambiado\privilege-escalation-awesome-scripts-suite-master\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.pdb
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\winPEAS.exe.config
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\winPEAS.exe
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\winPEAS.pdb
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\de\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\es\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\fr\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\it\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\pl\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\ru\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\bin\x64\Release\zh-CN\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.Properties.Resources.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.Properties.Resources.de.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.Properties.Resources.es.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.Properties.Resources.fr.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.Properties.Resources.it.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.Properties.Resources.pl.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.Properties.Resources.ru.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.Properties.Resources.zh-CN.resources
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.csproj.GenerateResource.cache
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\de\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\es\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\fr\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\it\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\pl\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\ru\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\zh-CN\winPEAS.resources.dll
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.exe
|
||||||
|
D:\Users\cpolo\Downloads\peass\privilege-escalation-awesome-scripts-suite\winPEAS\winPEASexe\winPEAS\obj\x64\Release\winPEAS.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Executable → Regular
BIN
Binary file not shown.
Executable → Regular
BIN
Binary file not shown.
Executable → Regular
BIN
Binary file not shown.
Executable → Regular
BIN
Binary file not shown.
Executable → Regular
BIN
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user