forked from mertdas/PrivKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
189 lines (189 loc) · 7.48 KB
/
Copy pathextension.json
File metadata and controls
189 lines (189 loc) · 7.48 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
{
"name": "privkit",
"version": "0.0.1",
"extension_author": "aredspy",
"original_author": "mertdas",
"repo_url": "https://github.com/mertdas/PrivKit",
"commands": [
{
"command_name": "privkit-always-install-elevated-check",
"help": "Check for AlwaysInstallElevated privilege escalation vulnerability.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "AlwaysInstallElevatedCheck/AlwaysInstallElevatedCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "AlwaysInstallElevatedCheck/AlwaysInstallElevatedCheck.x86.o"
}
]
},
{
"command_name": "privkit-auto-logon-check",
"help": "Checks the Winlogon registry key for stored autologon credentials. If AutoAdminLogon=1 and DefaultPassword is set, credentials are exposed.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "AutoLogonCheck/AutoLogonCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "AutoLogonCheck/AutoLogonCheck.x86.o"
}
]
},
{
"command_name": "privkit-credential-manager-check",
"help": "Enumerates all stored credentials in Windows Credential Manager for the current user context. Shows target, username, and password.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "CredentialManagerCheck/CredentialManagerCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "CredentialManagerCheck/CredentialManagerCheck.x86.o"
}
]
},
{
"command_name": "privkit-hijackable-path-check",
"help": "Enumerates the system PATH environment variable and checks each directory for write permissions. Writable directories in PATH can be abused for DLL hijacking or binary planting.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "HijackablePathCheck/HijackablePathCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "HijackablePathCheck/HijackablePathCheck.x86.o"
}
]
},
{
"command_name": "privkit-modifiable-autorun-check",
"help": "Enumerates autorun registry keys and checks if the referenced executables are writable by current user.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "ModifiableAutorunCheck/ModifiableAutorunCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "ModifiableAutorunCheck/ModifiableAutorunCheck.x86.o"
}
]
},
{
"command_name": "privkit-modifiable-svc-check",
"help": " Enumerates all Windows services and checks their security descriptors to find services that the current user can modify.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "ModifiableSVCCheck/ModifiableSVCCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "ModifiableSVCCheck/ModifiableSVCCheck.x86.o"
}
]
},
{
"command_name": "privkit-power-shell-history-check",
"help": "Checks if the PowerShell PSReadLine history file exists. This file may contain sensitive commands, credentials, or secrets.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "PowerShellHistoryCheck/PowerShellHistoryCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "PowerShellHistoryCheck/PowerShellHistoryCheck.x86.o"
}
]
},
{
"command_name": "privkit-token-privileges-check",
"help": "Enumerates all privileges for the current process token and shows their enabled/disabled status.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "TokenPrivilegesCheck/TokenPrivilegesCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "TokenPrivilegesCheck/TokenPrivilegesCheck.x86.o"
}
]
},
{
"command_name": "privkit-uac-status-check",
"help": "Checks UAC registry settings, current process integrity level, and local administrator group membership.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "UACStatusCheck/UACStatusCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "UACStatusCheck/UACStatusCheck.x86.o"
}
]
},
{
"command_name": "privkit-unquoted-svc-path-check",
"help": "Enumerates Windows services and checks for unquoted paths containing spaces. These can be exploited for privilege escalation.",
"entrypoint": "go",
"depends_on": "coff-loader",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "UnquotedSVCPathCheck/UnquotedSVCPathCheck.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "UnquotedSVCPathCheck/UnquotedSVCPathCheck.x86.o"
}
]
}
]
}