-
Notifications
You must be signed in to change notification settings - Fork 9
/
VirusTotal.pas
481 lines (439 loc) · 14 KB
/
VirusTotal.pas
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
unit VirusTotal;
interface
uses System.Generics.Collections,
system.JSON
;
type
TvtFileSend = class
verbose_msg, resource, scan_id, permalink, sha256, sha1, md5: String;
end;
TvtURLSend = class
public
verbose_msg, resource, url, scan_id, permalink: String;
scan_date: String;
end;
TvtAntiVirusItemFile = class
scanner : string;
detected: Boolean;
version, result, update: String;
end;
TvtAntiVirusItemURL = class
scanner : string;
detected: Boolean;
result: String;
end;
TvtFileReport = class
private
procedure handleFileScans(inScans: TJsonObject);
public
scan_id, sha1, resource, scan_date, permalink, verbose_msg, sha256, md5: String;
response_code, total, positives: Integer;
scans: TObjectList<TvtAntiVirusItemFile>;
constructor Create;
destructor Destroy; override;
end;
TvtIPreport = Packed Record
Public
verbose_msg, resource, url, scan_id, scan_date, permalink, filescan_id: String;
response_code, total, positives: Integer;
scans: array of TvtAntiVirusItemURL;
End;
TvtURLReport = class
private
procedure handleURLScans(inScans : TJsonObject);
public
verbose_msg, resource, url, scan_id, scan_date, permalink, filescan_id: String;
response_code, total, positives: Integer;
scans: TObjectList<TvtAntiVirusItemURL>;
constructor Create;
destructor Destroy; override;
end;
{$M+}
TVirusTotalAPI = class
strict private
const
SERVER = 'https://www.virustotal.com/vtapi/v2/';
strict private
FApiKey: string;
procedure HandleURLReport(var Result: System.Generics.Collections.TObjectList<TvtURLReport>; jsonsingle: TJSONObject);
procedure HandleFileReport(var Result: System.Generics.Collections.TObjectList<TvtFileReport>; jsonsingle: TJSONObject);
public
function ScanFile(const FileName: string): TvtFileSend;
function RescanFile(const Hash: string): TvtFileSend; overload;
function RescanFile(const Hash: TArray<string>): TObjectList<TvtFileSend>; overload;
function ReportFile(const Hash: TArray<string>): TObjectList<TvtFileReport>; overload;
function ReportFile(const Hash: string): TvtFileReport; overload;
function ScanURL(const URLs: TArray<string>): TObjectList<TvtURLSend>; overload;
function ScanURL(const url: string): TvtURLSend; overload;
function ReportURL(const url: string; scan: Boolean = False): TvtURLReport; overload;
function ReportURL(const URLs: TArray<string>; scan: Boolean = False): TObjectList<TvtURLReport>; overload;
// function reportIpAddress(Const IP: String): TArray<TvtURLReport>; overload;
constructor Create;
destructor Destroy; override;
published
property ApiKey: string read FApiKey write FApiKey;
end;
implementation
uses
System.SysUtils,
System.Net.HttpClient,
System.Net.Mime;
{ TVirusTotalAPI }
constructor TVirusTotalAPI.Create;
begin
end;
destructor TVirusTotalAPI.Destroy;
begin
inherited;
end;
procedure TVirusTotalAPI.handleFileReport(var Result: System.Generics.Collections.TObjectList<TvtFileReport>; jsonsingle: TJSONObject);
var
scans: TJSONObject;
itemReport: TvtFileReport;
begin
itemReport := TvtFileReport.Create;
itemReport.scan_id := jsonsingle.Values['scan_id'].Value;
itemReport.sha1 := jsonsingle.Values['sha1'].Value;
itemReport.resource := jsonsingle.Values['resource'].Value;
itemReport.scan_date := jsonsingle.Values['scan_date'].Value;
itemReport.permalink := jsonsingle.Values['permalink'].Value;
itemReport.verbose_msg := jsonsingle.Values['verbose_msg'].Value;
itemReport.sha256 := jsonsingle.Values['sha256'].Value;
itemReport.md5 := jsonsingle.Values['md5'].Value;
itemReport.response_code := StrToInt(jsonsingle.Values['response_code'].Value);
itemReport.total := StrToInt(jsonsingle.Values['total'].Value);
itemReport.positives := StrToInt(jsonsingle.Values['positives'].Value);
scans := (jsonsingle.Values['scans'] as TJsonObject);
itemReport.handleFileScans(scans);
Result.Add(itemReport);
end;
procedure TVirusTotalAPI.HandleURLReport(var Result: System.Generics.Collections.TObjectList<TvtURLReport>; jsonsingle: TJSONObject);
var
itemReport : TvtURLReport;
scans : TJsonObject;
begin
itemReport := TvtURLReport.Create;
itemReport.scan_id := jsonsingle.Values['scan_id'].Value;
itemReport.verbose_msg := jsonsingle.Values['verbose_msg'].Value;
itemReport.resource := jsonsingle.Values['resource'].Value;
itemReport.url := jsonsingle.Values['url'].Value;
itemReport.scan_date := jsonsingle.Values['scan_date'].Value;
itemReport.permalink := jsonsingle.Values['permalink'].Value;
itemReport.filescan_id := jsonsingle.Values['filescan_id'].Value;
itemReport.response_code := StrToInt(jsonsingle.Values['response_code'].Value);
itemReport.total := StrToInt(jsonsingle.Values['total'].Value);
itemReport.positives := StrToInt(jsonsingle.Values['positives'].Value);
scans := (jsonsingle.Values['scans'] as TJsonObject);
itemReport.handleURLScans(scans);
Result.Add(itemReport);
end;
procedure TvtFileReport.handleFileScans(inScans: TJsonObject);
var
i : Integer;
scanItem : TvtAntiVirusItemFile;
scanner : TJsonObject;
begin
for i := 0 to scans.Count-1 do
begin
scanner := inScans.Pairs[i].JsonValue as TJSONObject;
scanItem := TvtAntiVirusItemFile.Create;
scanItem.scanner := inScans.Pairs[i].JsonString.Value;
if((scanner.Values['detected'] as TJSONBool).AsBoolean) then
begin
scanItem.detected := True;
end
else
begin
scanItem.detected := false;
end;
scanItem.result := scanner.Values['result'].Value;
scans.Add(scanItem);
end;
end;
procedure TvtURLReport.handleURLScans(inScans : TJsonObject);
var
i: Integer;
scanner : TJsonObject;
scanItem : TvtAntiVirusItemURL;
begin
for i := 0 to inScans.Count-1 do
begin
scanner := inScans.Pairs[i].JsonValue as TJSONObject;
scanItem := TvtAntiVirusItemURL.Create;
scanItem.scanner := inScans.Pairs[i].JsonString.Value;
if((scanner.Values['detected'] as TJSONBool).AsBoolean) then
begin
scanItem.detected := True;
end
else
begin
scanItem.detected := false;
end;
scanItem.result := scanner.Values['result'].Value;
scans.Add(scanItem);
end;
end;
function TVirusTotalAPI.reportFile(const Hash: String): TvtFileReport;
begin
result := reportFile([Hash])[0];
end;
function TVirusTotalAPI.reportURL(const url: String; scan: Boolean): TvtURLReport;
begin
result := reportURL([url], scan)[0];
end;
function TVirusTotalAPI.reportURL(const URLs: TArray<string>; scan: Boolean): TObjectList<TvtURLReport>;
const
API = 'url/report';
var
HTTP : THTTPClient;
Part : TMultipartFormData;
requestResult : string;
I : Integer;
jsonx : TJSonArray;
jsonval : TJSONValue;
item : TJsonObject;
begin
HTTP := nil;
Part := nil;
Result := nil;
try
Result := TObjectList<TvtURLReport>.Create;
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
Part.AddField('resource', string.Join(#13#10, URLs));
if scan then
begin
Part.AddField('scan', '1');
end;
Part.AddField('apikey', ApiKey);
requestResult := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.ASCII);
jsonval := TJSONObject.ParseJSONValue(requestResult);
if Length(URLs) > 1 then
begin
jsonx := jsonval as TJSONArray;
for I := 0 to jsonx.Count - 1 do
begin
item := jsonx.Items[i] as TJSONObject;
HandleURLReport(Result, item);
end;
end
else
begin
item := jsonval as TJSONObject;
HandleURLReport(Result, item);
end;
finally
FreeAndNil(Part);
FreeAndNil(HTTP);
FreeAndNil(jsonx);
end;
end;
function TVirusTotalAPI.reportFile(const Hash: TArray<String>): TObjectList<TvtFileReport>;
const
API = 'file/report';
var
HTTP : THTTPClient;
Part : TMultipartFormData;
requestResult : String;
I : Integer;
jsonx : TJSonArray;
jsoninitial : TJSONValue;
item : TJsonObject;
begin
HTTP := nil;
Part := nil;
try
Result := TObjectList<TvtFileReport>.Create;
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
Part.AddField('resource', String.Join(', ', Hash));
Part.AddField('apikey', ApiKey);
requestResult := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.UTF8);
jsoninitial := TJSONObject.ParseJSONValue(requestResult);
if Length(Hash) > 1 then
begin
jsonx := jsoninitial as TJSONArray;
for I := 0 to (jsonx as TJSonArray).Count - 1 do
begin
item := (jsonx.Items[i] as TJSONOBject);
handleFileReport(Result, item);
end;
end
else
begin
item := jsoninitial as TJSONObject;
handleFileReport(Result, item);
end;
finally
FreeAndNil(Part);
FreeAndNil(HTTP);
FreeAndNil(jsoninitial);
end;
end;
function TVirusTotalAPI.RescanFile(const Hash: TArray<String>): TObjectList<TvtFileSend>;
const
API = 'file/rescan';
var
HTTP : THTTPClient;
Part : TMultipartFormData;
I : Integer;
requestResult : String;
jsonx : TJSonArray;
item : TJsonObject;
ItemFile : TvtFileSend;
begin
HTTP := nil;
Part := nil;
try
Result := TObjectList<TvtFileSend>.Create;
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
Part.AddField('resource', String.Join(', ', Hash));
Part.AddField('apikey', ApiKey);
requestResult := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.UTF8);
jsonx := (TJSONObject.ParseJSONValue(requestResult) as TJSONArray);
for I := 0 to jsonx.Count - 1 do
begin
item := jsonx.Items[i] as TJSONOBject;
ItemFile := TvtFileSend.Create;
ItemFile.verbose_msg := item.Values['verbose_msg'].Value;
ItemFile.resource := item.Values['resource'].Value;
ItemFile.scan_id := item.Values['scan_id'].Value;
ItemFile.permalink := item.Values['permalink'].Value;
ItemFile.sha256 := item.Values['sha256'].Value;
ItemFile.sha1 := item.Values['sha1'].Value;
ItemFile.md5 := item.Values['md5'].Value;
Result.Add(ItemFile);
end;
finally
FreeAndNil(Part);
FreeAndNil(HTTP);
FreeAndNil(jsonx);
end;
end;
function TVirusTotalAPI.RescanFile(const Hash: String): TvtFileSend;
begin
result := RescanFile([Hash])[0];
end;
function TVirusTotalAPI.ScanFile(const FileName: String): TvtFileSend;
const
API = 'file/scan';
var
HTTP : THTTPClient;
Part : TMultipartFormData;
requestResult : String;
jsonx : TJSONObject;
begin
HTTP := nil;
Part := nil;
jsonx := nil;
Result := TvtFileSend.Create;
try
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
jsonx := TJSONObject.Create;
Part.AddFile('file', FileName);
Part.AddField('apikey', ApiKey);
requestResult := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.UTF8);
jsonx := TJSONObject.ParseJSONValue(requestResult) as TJSONObject;
Result.verbose_msg := jsonx.Values['verbose_msg'].Value;
Result.resource := jsonx.Values['resource'].Value;
Result.scan_id := jsonx.Values['scan_id'].Value;
Result.permalink := jsonx.Values['permalink'].Value;
Result.sha256 := jsonx.Values['sha256'].Value;
Result.sha1 := jsonx.Values['sha1'].Value;
Result.md5 := jsonx.Values['md5'].Value;
finally
FreeAndNil(Part);
FreeAndNil(HTTP);
FreeAndNil(jsonx);
end;
end;
function TVirusTotalAPI.scanURL(const url: String): TvtURLSend;
var
urlResultList : TObjectList<TvtURLSend>;
begin
Result := nil;
urlResultList := scanURL([url]);
try
Result := urlResultList[0];
urlResultList.Extract(result);
finally
FreeAndNil(urlResultList);
end;
end;
function TVirusTotalAPI.scanURL(const URLs: TArray<String>): TObjectList<TvtURLSend>;
const
API = 'url/scan';
var
HTTP : THTTPClient;
Part : TMultipartFormData;
I : Integer;
requestResult : String;
jsonX : TJSonObject;
item : TJSONObject;
URLReport : TvtURLSend;
begin
HTTP := nil;
Part := nil;
try
Result := TObjectList<TvtURLSend>.Create;
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
Part.AddField('url', String.Join(#13#10, URLs));
Part.AddField('apikey', ApiKey);
requestResult := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.UTF8);
jsonx := jsonx.ParseJSONValue(requestResult) as TJSONObject;
if Length(URLs) > 1 then
begin
for I := 0 to TJSONOBject(system.JSON.TJSonArray(jsonx)).Count-1 do
begin
item := TJSONObject(system.JSON.TJSonArray(jsonx).Items[i]);
URLReport := TvtURLSend.Create;
URLReport.verbose_msg := item.Values['verbose_msg'].Value;
URLReport.resource := item.Values['resource'].Value;
URLReport.url := item.Values['url'].Value;
URLReport.scan_id := item.Values['scan_id'].Value;
URLReport.permalink := item.Values['permalink'].Value;
URLReport.scan_date := item.Values['scan_date'].Value;
Result.Add(URLReport);
end;
end
else
begin
URLReport := TvtURLSend.Create;
URLReport.verbose_msg := jsonx.Values['verbose_msg'].Value;
URLReport.resource := jsonx.Values['resource'].Value;
URLReport.url := jsonx.Values['url'].Value;
URLReport.scan_id := jsonx.Values['scan_id'].Value;
URLReport.permalink := jsonx.Values['permalink'].Value;
URLReport.scan_date := jsonx.Values['scan_date'].Value;
Result.Add(URLReport);
end;
finally
FreeAndNil(Part);
FreeAndNil(HTTP);
FreeAndNil(jsonx);
end;
end;
{ TvtURLReport }
constructor TvtURLReport.Create;
begin
scans := TObjectList<TvtAntiVirusItemURL>.Create;
end;
destructor TvtURLReport.Destroy;
begin
FreeAndNil(scans);
inherited;
end;
{ TvtFileReport }
constructor TvtFileReport.Create;
begin
scans := TObjectList<TvtAntiVirusItemFile>.Create;
end;
destructor TvtFileReport.Destroy;
begin
FreeAndNil(scans);
inherited;
end;
end.