-
Notifications
You must be signed in to change notification settings - Fork 0
/
MalwareScanner.java
155 lines (138 loc) · 4.24 KB
/
MalwareScanner.java
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
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.DigestInputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.List;
public class MalwareScanner
{
public static void main(String[] args)
{
if (args.length != 2)
{
System.err.println("Usage: java MalwareScanner <malware_signatures_file> <target_file/folder(directory)>");
System.exit(1);
}
String malSigsFile = args[0];
String target = args[1];
List<String> malSigs = loadMalSigs(malSigsFile);
File targetFile = new File(target);
if (targetFile.isFile())
{
scanFile(targetFile, malSigs);
}
else if (targetFile.isDirectory())
{
scanDirectory(targetFile, malSigs);
}
else
{
System.err.println("Invalid target: " + target);
System.exit(1);
}
}
private static void scanDirectory(File directory, List<String> malSigs)
{
File[] files = directory.listFiles();
if (files != null)
{
int fileCount = files.length;
int fileIndex = 0;
for (File file : files)
{
fileIndex++;
System.out.print("Scanning " + file.getAbsolutePath() + " (" + fileIndex + "/" + fileCount + ")... ");
if (file.isFile())
{
String fileHash = calFileHash(file);
if (malSigs.contains(fileHash))
{
System.out.println("Malware detected: " + file.getAbsolutePath());
saveScanDetected("Detected.txt", file.getAbsolutePath());
}
else
{
System.out.println("Clean");
}
}
else if (file.isDirectory())
{
scanDirectory(file, malSigs);
}
System.out.println("Progress: " + (fileIndex * 100 / fileCount) + "%");
}
}
}
private static void scanFile(File file, List<String> malSigs)
{
System.out.print("Scanning " + file.getAbsolutePath()+" ");
String fileHash = calFileHash(file);
if (malSigs.contains(fileHash))
{
System.out.println("Malware detected: " + file.getAbsolutePath());
saveScanDetected("Detected.txt", file.getAbsolutePath());
}
else
{
System.out.println("Clean");
}
System.out.println("Progress: 100%");
}
private static List<String> loadMalSigs(String fileName)
{
List<String> malSigs = new ArrayList<>();
try
{
Files.lines(Paths.get(fileName))
.forEach(line -> malSigs.add(line.trim()));
}
catch (IOException e)
{
System.err.println("Error loading malware signatures: " + e.getMessage());
}
return malSigs;
}
private static String calFileHash(File file)
{
try
{
MessageDigest md = MessageDigest.getInstance("SHA-256");
try (DigestInputStream dis = new DigestInputStream(new FileInputStream(file), md))
{
byte[] buffer = new byte[8192];
while (dis.read(buffer) != -1) {}
}
byte[] hashBytes = md.digest();
return bytesToHex(hashBytes);
}
catch (NoSuchAlgorithmException | IOException e)
{
System.err.println("Error calculating file hash: " + e.getMessage());
return null;
}
}
private static String bytesToHex(byte[] bytes)
{
StringBuilder hexString = new StringBuilder();
for (byte b : bytes)
{
hexString.append(String.format("%02x", b));
}
return hexString.toString();
}
private static void saveScanDetected(String fileName, String results)
{
try
{
Files.write(Paths.get(fileName), results.getBytes());
}
catch (IOException e)
{
System.err.println("Error saving scan results: " + e.getMessage());
}
}
}