-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJuvenal.ps1
218 lines (197 loc) · 6.81 KB
/
Juvenal.ps1
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
213
214
215
216
217
218
# OSG
# ⌨ >= ⚔
# Juvenal.ps1
# Powershell V 7/5/2
# This script tests for Powershell execution policy, transcription, scriptblock and module logging, and version 2.
# One man
# gets a cross
# for his crime
# / , the other
# ) (> a Crown.
# / , /
# L, /
# (__ |
# ( |
# ---\ |
# | |
$HKLM_Read = 1
$HKCU_Read = 1
$Path = "HKLM"
$HistoryPath = (Get-PSReadLineOption).HistorySavePath
$whoami = whoami
# Test to see if script block logging is enabled:
for ($i = 0; $i -lt 2; $i++) {
if($i -eq 1){
$Path="HKCU"
}
try {
if (Test-Path Registry::$Path\SOFTWARE\Policies\Microsoft\Windows\PowerShell\ScriptBlockLogging){
# true
if ((Get-ItemProperty Registry::$Path\SOFTWARE\Policies\Microsoft\Windows\PowerShell\ScriptBlockLogging -ErrorAction Stop).EnableScriptBlockLogging){
Write-Host "Script Block Enabled -$Path" -ForegroundColor Green
}
else{
Write-Host "Script Block Disabled -$Path" -ForegroundColor Red
}
}
else{
Write-Host "Script Block not configured (off) -$Path" -ForegroundColor Red;
}
}
catch [System.UnauthorizedAccessException]{
Write-Host "$Path Read unauthorized (Script Block)" -ForegroundColor Green
if($i -eq 0){
$HKLM_Read=0
}
else{
$HKCU_Read=0
}
}
catch [System.Security.SecurityException]{
Write-Host "$Path Read unauthorized (Script Block)" -ForegroundColor Green
if($i -eq 0){
$HKLM_Read=0
}
else{
$HKCU_Read=0
}
}
catch [System.Management.Automation.PSArgumentException]{
Write-Host "Script Block registry key property missing! ($Path)" -ForegroundColor Yellow
}
}
$Path="HKLM"
# Test to see if module logging is enabled:
for ($i = 0; $i -lt 2; $i++) {
if($i -eq 1){
$Path="HKCU"
}
try{
if (Test-Path Registry::$Path\SOFTWARE\Policies\Microsoft\Windows\PowerShell\ModuleLogging) {
#true
if ((Get-ItemProperty Registry::$Path\SOFTWARE\Policies\Microsoft\Windows\PowerShell\ModuleLogging -ErrorAction Stop).EnableModuleLogging){
Write-Host "Module Logging Enabled -$Path" -ForegroundColor Green
}
else{
Write-Host "Module Logging disabled -$Path" -ForegroundColor Red
}
}
else{
Write-Host "Module Logging not configured (off) -$Path" -ForegroundColor Red
}
}
catch [System.UnauthorizedAccessException]{
Write-Host "$Path Read unauthorized (Script Block)" -ForegroundColor Green
if($i -eq 0){
$HKLM_Read=0
}
else{
$HKCU_Read=0
}
}
catch [System.Security.SecurityException]{
Write-Host "$Path Read unauthorized (Module Logging)" -ForegroundColor Green
if($i -eq 0){
$HKLM_Read=0
}
else{
$HKCU_Read=0
}
}
catch [System.Management.Automation.PSArgumentException]{
Write-Host "Module Logging registry key property missing! ($Path)" -ForegroundColor Yellow
}
}
$Path = "HKLM"
# Test to see if transcription is enabled:
for ($i = 0; $i -lt 2; $i++) {
if($i -eq 1){
$Path="HKCU"
}
try{
if(Test-Path Registry::$Path\SOFTWARE\Policies\Microsoft\Windows\PowerShell\Transcription){
#true
if( (Get-ItemProperty Registry::$Path\SOFTWARE\Policies\Microsoft\Windows\PowerShell\Transcription -ErrorAction Stop).EnableTranscripting) {
Write-Host "Transcription Enabled -$Path" -ForegroundColor Green
}
else{
Write-Host "Transcription off -$Path" -ForegroundColor Red
}
}
else{
Write-Host "Transcription not configured (off) -$Path" -ForegroundColor Red
}
}
catch [System.UnauthorizedAccessException]{
Write-Host "$Path Read unauthorized (Transcription)" -ForegroundColor Green
if($i -eq 0){
$HKLM_Read=0
}
else{
$HKCU_Read=0
}
}
catch [System.Security.SecurityException]{
Write-Host "$Path Read unauthorized (Transcription)" -ForegroundColor Green
if($i -eq 0){
$HKLM_Read=0
}
else{
$HKCU_Read=0
}
}
catch [System.Management.Automation.PSArgumentException]{
Write-Host "Transcription registry key property missing! ($Path)" -ForegroundColor Yellow
}
}
# Test to see if logs are retained:
try{
if ( (Get-ItemProperty 'Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventLog\Windows Powershell' -ErrorAction Stop).Retention){
Write-Host "Logs Retained" -ForegroundColor Green
}
else {
Write-Host "Logs may not be retained" -ForegroundColor Yellow
}
}
catch [System.Management.Automation.PSArgumentException]{
Write-Host "Log Retention registry key property missing!" -ForegroundColor Yellow
}
catch [System.UnauthorizedAccessException]{
Write-Host "Registry Read Unauthorized!" -ForegroundColor Green
}
# Test to see if log files are configured to be auto-exported:
try {
if( ((Get-ItemProperty 'Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventLog\Windows Powershell' -ErrorAction Stop).AutoBackupLogFiles) ){
Write-Host "Logs auto-exported" -ForegroundColor Green
}
else {
Write-Host "Logs may not be auto-exported" -ForegroundColor Yellow
}
}
catch [System.Management.Automation.PSArgumentException]{
Write-Host "Log export registry key property missing" -ForegroundColor Yellow
}
catch [System.UnauthorizedAccessException]{
Write-Host "Registry Read Unauthorized! (Log Files)" -ForegroundColor Green
}
# if powershell version 2
try{
if ( ((Get-ItemProperty Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\PowerShellEngine -ErrorAction Stop).PowerShellVersion ) -eq '2.0'){
Write-Host "`nPowershell V 2 installed`n" -ForegroundColor Red
}
}
catch{
Write-Host "`nCould not locate V 2`n" -ForegroundColor Yellow
}
finally{
Write-Host " ##### History permissions #####" -NoNewline
(Get-Acl -Path "$HistoryPath").Access | Where-Object {$_.IdentityReference -like $whoami} | Format-Table -AutoSize FileSystemRights,AccessControlType
Write-Host "`n"
Write-Host "Execution Policy: " -NoNewline
Get-executionPolicy
Write-Host "Language Mode: " -NoNewline
$ExecutionContext.SessionState.LanguageMode
Write-Host "Whoami: $whoami"
whoami /priv
}
# All wish to possess knowledge, but few, comparatively speaking, are willing to pay the price.