forked from CERTCC/CVE-2021-44228_scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkjndi.ps1
128 lines (111 loc) · 3.6 KB
/
checkjndi.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
<#
.Description
Scans filesystem for .jar, war, and ear files that contains log4j code that may be vulnerable to CVE-2021-44228
Supply a top-level directory to begin searching, or default to the current directory.
.PARAMETER Toplevel
Top-level directory to begin search for jar files.
.EXAMPLE
PS> .\checkjindi.ps1
Scan the current directory and subdirectory for jar files.
.EXAMPLE
PS> .\checkjindi.ps1 c:\
Scan the entire c:\ drive for jar files.
.SYNOPSIS
Scans filesystem for .jar files that contains log4j code that may be vulnerable to CVE-2021-44228.
#>
param ([string]$toplevel = ".")
#Requires -Version 3.0
Add-Type -Assembly 'System.IO.Compression.FileSystem'
function Get-Files {
param (
[string]$topdir
)
$jars = @();
Get-ChildItem -Path $topdir -File -Recurse -Force -Include "*.jar","*.war","*.ear","*.zip","JndiLookup.class" -ErrorAction Ignore | % { $jars += $_ };
return $jars
}
function Process-JAR {
param (
[Object]$jarfile,
[String]$origfile = "",
[String]$subjarfile = ""
)
try {
$jar = [System.IO.Compression.ZipFile]::Open($jarfile, 'read');
}
catch {
return
}
[bool] $ispatched = 0;
[bool] $hasjndi = 0;
[string] $outputstring = "";
ForEach ($entry in $jar.Entries) {
#Write-Output $entry.Name;
if($entry.Name -like "*JndiLookup.class"){
if ($origfile -eq "")
{
$hasjndi = 1;
$outputstring = "$jarfile contains $entry";
}
else
{
$hasjndi = 1;
$outputstring = "$origfile contains $subjarfile contains $entry";
}
$TempFile = [System.IO.Path]::GetTempFileName()
try {
[System.IO.Compression.ZipFileExtensions]::ExtractToFile($entry, $TempFile, $true);
if (Select-String -Path $TempFile -Pattern "JNDI is not supported"){
$ispatched = 1;
}
}
catch {}
Remove-Item $TempFile;
}
elseif ($entry.Name -like "*MessagePatternConverter.class"){
$TempFile = [System.IO.Path]::GetTempFileName()
try {
[System.IO.Compression.ZipFileExtensions]::ExtractToFile($entry, $TempFile, $true);
if (Select-String -Path $TempFile -Pattern "Message Lookups are no longer supported"){
$ispatched = 1;
}
}
catch {}
Remove-Item $TempFile;
}
elseif (($entry.Name -like "*.jar") -or ($entry.Name -like "*.war") -or ($entry.Name -like "*.ear") -or ($entry.Name -like "*.zip")) {
if ($origfile -eq "")
{
$origfile = $jarfile.FullName
}
$TempFile = [System.IO.Path]::GetTempFileName()
try {
[System.IO.Compression.ZipFileExtensions]::ExtractToFile($entry, $TempFile, $true);
Process-JAR $TempFile $origfile $entry.FullName;
}
catch{}
Remove-Item $TempFile;
}
}
$jar.Dispose();
if ($ispatched){
$outputstring = $outputstring + " ** BUT APPEARS TO BE PATCHED **";
}
if ($hasjndi -and $ispatched){
Write-Host $outputstring;
}
elseif ($hasjndi){
Write-Warning $outputstring;
}
}
$checkfiles = Get-Files $toplevel;
ForEach ($checkfile In $checkfiles) {
if ($checkfile.Name -eq "JndiLookup.class")
{
Write-Warning "$checkfile *IS* JndiLookup.class"
}
else
{
Process-JAR $checkfile;
}
}