forked from geoffsmith82/VirusTotal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVirusTotal.pas
395 lines (357 loc) · 9.68 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
//API docs: https://developers.virustotal.com/v2.0/
unit VirusTotal;
interface
{ /$DEFINE vtDateTimeHelper }
uses
Windows,
{$IFDEF vtDateTimeHelper}
DateTimeHelper,
{$ENDIF}
XSuperObject;
{ TODO -oOwner -cGeneral : Translate time to TDateTime }
type
TvtFileSend = packed record
verbose_msg, resource, scan_id, permalink, sha256, sha1, md5: string;
end;
TvtURLSend = packed record
public
verbose_msg, resource, url, scan_id, permalink: string;
scan_date: string;
end;
TvtAntiVirusItemFile = packed record
detected: Boolean;
name, version, result, update: string;
end;
TvtAntiVirusItemURL = packed record
detected: Boolean;
name, result: string;
end;
TvtFileReport = packed record
scan_id, sha1, resource, scan_date, permalink, verbose_msg, sha256,
md5: string;
response_code, total, positives: Integer;
scans: TArray<TvtAntiVirusItemFile>;
end;
TvtIPreport = packed record
public
verbose_msg, resource, url, scan_id, scan_date, permalink,
filescan_id: string;
response_code, total, positives: Integer;
scans: TArray<TvtAntiVirusItemURL>;
end;
TvtURLReport = packed record
verbose_msg, url, scan_id, scan_date, permalink,
filescan_id: string;
response_code, total, positives: Integer;
scans: TArray<TvtAntiVirusItemURL>;
end;
{$M+}
TVirusTotalAPI = class
strict private
const
SERVER = 'https://www.virustotal.com/vtapi/v2/';
private
FApiKey: string;
public
function ScanFile(const FileName: string): TvtFileSend;
function RescanFile(const Hash: string): TvtFileSend; overload;
function RescanFile(const Hash: TArray<string>)
: TArray<TvtFileSend>; overload;
function reportFile(const Hash: TArray<string>)
: TArray<TvtFileReport>; overload;
function reportFile(const Hash: string): TvtFileReport; overload;
function scanURL(const URLs: TArray<string>): TArray<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)
: TArray<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
ApiKey := 'e2fd0cd961bdeaf2d054871299a6c2f056d7a5dbda813b93000a81a64087b341';
end;
destructor TVirusTotalAPI.Destroy;
begin
inherited;
end;
function TVirusTotalAPI.reportFile(const Hash: string): TvtFileReport;
var
List: TArray<TvtFileReport>;
begin
List := reportFile([Hash]);
if Length(List) > 0 then
Result := List[0]
else
ZeroMemory(@Result, SizeOf(TvtFileReport));
end;
function TVirusTotalAPI.reportURL(const url: string; scan: Boolean)
: TvtURLReport;
var
List: TArray<TvtURLReport>;
begin
List := reportURL([url], scan);
if Length(List) > 0 then
Result := List[0]
else
ZeroMemory(@Result, SizeOf(TvtURLReport));
end;
function TVirusTotalAPI.reportURL(const URLs: TArray<string>; scan: Boolean)
: TArray<TvtURLReport>;
function Get(S: string): TvtURLReport;
var
X: ISuperObject;
Y: IMember;
I: Integer;
begin
X := TSuperObject.Create(S);
ZeroMemory(@Result, SizeOf(Result));
with Result do begin
scan_id := X.S['scan_id'];
url := X.S['url'];
filescan_id := X.S['filescan_id'];
scan_date := X.S['scan_date'];
permalink := X.S['permalink'];
verbose_msg := X.S['verbose_msg'];
response_code := X.I['response_code'];
total := X.I['total'];
positives := X.I['positives'];
SetLength(scans, X.O['scans'].Count);
I := 0;
for Y in X.O['scans'] do begin
scans[I] := TSuperRecord<TvtAntiVirusItemURL>.FromJSON(Y.AsObject.AsJSON);
scans[I].name := Y.Name;
Inc(I);
end;
end;
end;
const
API = 'url/report';
var
HTTP: THTTPClient;
Part: TMultipartFormData;
I: Integer;
X: ISuperArray;
sContent: string;
begin
SetLength(Result, 0);
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
try
Part.AddField('resource', string.Join(#13#10, URLs));
if scan then
Part.AddField('scan', '1');
Part.AddField('apikey', ApiKey);
sContent := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.UTF8);
if sContent = '' then
Exit;
X := SA(sContent);
if X = nil then
Exit;
SetLength(Result, Length(URLs));
if Length(URLs) > 1 then
begin
for I := 0 to X.Length - 1 do
Result[I] := Get(X.O[I].AsJSON);
end
else
Result[0] := Get(X.AsJSON);
finally
Part.Free;
HTTP.Free;
end;
end;
function TVirusTotalAPI.reportFile(const Hash: TArray<string>)
: TArray<TvtFileReport>;
function Get(S: string): TvtFileReport;
var
X: ISuperObject;
Y: IMember;
I: Integer;
begin
X := TSuperObject.Create(S);
ZeroMemory(@Result, SizeOf(Result));
with Result do begin
scan_id := X.S['scan_id'];
sha1 := X.S['sha1'];
resource := X.S['resource'];
scan_date := X.S['scan_date'];
permalink := X.S['permalink'];
verbose_msg := X.S['verbose_msg'];
sha256 := X.S['sha256'];
md5 := X.S['md5'];
response_code := X.I['response_code'];
total := X.I['total'];
positives := X.I['positives'];
SetLength(scans, X.O['scans'].Count);
I := 0;
for Y in X.O['scans'] do begin
scans[I] := TSuperRecord<TvtAntiVirusItemFile>.FromJSON(Y.AsObject.AsJSON);
scans[I].name := Y.Name;
Inc(I);
end;
end;
end;
const
API = 'file/report';
var
HTTP: THTTPClient;
Part: TMultipartFormData;
I: Integer;
Y: ISuperArray;
sContent: string;
begin
SetLength(Result, 0);
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
try
Part.AddField('resource', string.Join(', ', Hash));
Part.AddField('apikey', ApiKey);
sContent := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.UTF8);
if sContent = '' then
Exit;
Y := SA(sContent);
if Y = nil then
Exit;
SetLength(Result, Length(Hash));
if Length(Hash) > 1 then
begin
for I := 0 to Y.Length - 1 do
Result[I] := Get(Y.O[I].AsJSON);
end
else
Result[0] := Get(Y.AsJSON);
finally
Part.Free;
HTTP.Free;
end;
end;
function TVirusTotalAPI.RescanFile(const Hash: TArray<string>)
: TArray<TvtFileSend>;
const
API = 'file/rescan';
var
HTTP: THTTPClient;
Part: TMultipartFormData;
I: Integer;
X: ISuperArray;
Y: ISuperObject;
sContent: string;
begin
SetLength(Result, 0);
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
try
Part.AddField('resource', string.Join(', ', Hash));
Part.AddField('apikey', ApiKey);
sContent := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.UTF8);
if sContent = '' then
Exit;
if Length(Hash) > 1 then begin
X := SA(sContent);
if X = nil then
Exit;
SetLength(Result, X.Length);
for I := 0 to X.Length - 1 do
Result[I] := TSuperRecord<TvtFileSend>.FromJSON(X.O[I]);
end
else begin
Y := SO(sContent);
if Y = nil then
Exit;
SetLength(Result, 1);
Result[0] := TSuperRecord<TvtFileSend>.FromJSON(Y);
end;
finally
Part.Free;
HTTP.Free;
end;
end;
function TVirusTotalAPI.RescanFile(const Hash: string): TvtFileSend;
var
List: TArray<TvtFileSend>;
begin
List := RescanFile([Hash]);
if Length(List) > 0 then
Result := List[0]
else
ZeroMemory(@Result, SizeOf(TvtFileSend));
end;
function TVirusTotalAPI.ScanFile(const FileName: string): TvtFileSend;
const
API = 'file/scan';
var
HTTP: THTTPClient;
Part: TMultipartFormData;
sContent: string;
begin
ZeroMemory(@Result, SizeOf(TvtFileSend));
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
try
Part.AddFile('file', FileName);
Part.AddField('apikey', ApiKey);
sContent := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.UTF8);
if sContent = '' then
Exit;
Result := TSuperRecord<TvtFileSend>.FromJSON(sContent);
finally
Part.Free;
HTTP.Free;
end;
end;
function TVirusTotalAPI.scanURL(const url: string): TvtURLSend;
var
List: TArray<TvtURLSend>;
begin
List := scanURL([url]);
if Length(List) > 0 then
Result := List[0]
else
ZeroMemory(@Result, SizeOf(TvtURLSend));
end;
function TVirusTotalAPI.scanURL(const URLs: TArray<string>): TArray<TvtURLSend>;
const
API = 'url/scan';
var
HTTP: THTTPClient;
Part: TMultipartFormData;
I: Integer;
X: ISuperArray;
sContent: string;
begin
SetLength(Result, 0);
HTTP := THTTPClient.Create;
Part := TMultipartFormData.Create;
try
Part.AddField('url', string.Join(#13#10, URLs));
Part.AddField('apikey', ApiKey);
sContent := HTTP.Post(SERVER + API, Part).ContentAsString(TEncoding.UTF8);
if sContent = '' then
Exit;
X := SA(sContent);
if X = nil then
Exit;
SetLength(Result, Length(URLs));
if Length(URLs) > 1 then
begin
for I := 0 to X.Length - 1 do
Result[I] := TSuperRecord<TvtURLSend>.FromJSON(X.O[I]);
end
else
Result[0] := TSuperRecord<TvtURLSend>.FromJSON(X.AsJSON);
finally
Part.Free;
HTTP.Free;
end;
end;
end.