-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMSClient.cs
442 lines (349 loc) · 14 KB
/
MSClient.cs
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
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.IO;
using System.Net;
using System.Text;
namespace MalShare.NET
{
public class MSClient
{
private string key;
public MSClient(string apiKey)
{
key = apiKey;
}
private static string GetResponse(string url)
{
string html = String.Empty;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.AutomaticDecompression = DecompressionMethods.GZip;
request.Timeout = 30000;
try
{
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
using (Stream stream = response.GetResponseStream())
using (StreamReader reader = new StreamReader(stream))
{
html = reader.ReadToEnd();
}
}
catch { }
return html;
}
public List<List<string>> Search(string searchQuery)
{
List<List<string>> searchResults = new List<List<string>>();
string html = String.Empty;
string url = $@"https://malshare.com/api.php?api_key={key}&action=search&query={searchQuery}";
html = GetResponse(url);
if (!String.IsNullOrEmpty(html))
{
var result = JsonConvert.DeserializeObject<List<Search>>(html);
foreach (var res in result)
{
StringBuilder yara = new StringBuilder("Yara Hits: ");
StringBuilder parentfiles = new StringBuilder("Parent Files: ");
StringBuilder subfiles = new StringBuilder("Sub Files: ");
if (res.yarahits.yara.Count == 0)
{
yara.Append("-");
}
else
{
yara.Append(String.Join(", ", res.yarahits.yara));
}
if (res.parentfiles.Count == 0)
{
parentfiles.Append("-");
}
else
{
parentfiles.Append(String.Join(", ", res.parentfiles));
}
if (res.subfiles.Count == 0)
{
subfiles.Append("-");
}
else
{
subfiles.Append(String.Join(", ", res.subfiles));
}
searchResults.Add(new List<string> { $"MD5: {res.md5}", $"SHA1: {res.sha1}", $"SHA256: {res.sha256}", $"Type: {res.type}", $"Added: {res.added}", $"Source: {res.source}", yara.ToString(), parentfiles.ToString(), subfiles.ToString() });
}
}
else
{
searchResults.Add(new List<string> { $"Results for {searchQuery}: Not found." });
}
return searchResults;
}
public List<string> SearchByType(string type)
{
List<string> searchResults = new List<string>();
string html = String.Empty;
string url = $@"https://malshare.com/api.php?api_key={key}&action=type&type={type}";
html = GetResponse(url);
if (html != "[]" && !String.IsNullOrWhiteSpace(html))
{
dynamic dynObj = JsonConvert.DeserializeObject(html);
foreach (var item in dynObj)
{
searchResults.Add("MD5: " + item.md5 + "/SHA1: " + item.sha1 + "/SHA256: " + item.sha256);
}
}
else
{
searchResults.Add($"Results for {type}: Not found.");
}
return searchResults;
}
public List<string> GetDetails(string hash)
{
List<string> searchResults = new List<string>();
string html = String.Empty;
string url = $@"https://malshare.com/api.php?api_key={key}&action=details&hash={hash}";
html = GetResponse(url);
if (!String.IsNullOrEmpty(html))
{
dynamic dynObj = JsonConvert.DeserializeObject(html);
searchResults.Add("MD5: " + dynObj.MD5);
searchResults.Add("SHA1: " + dynObj.SHA1);
searchResults.Add("SHA256: " + dynObj.SHA256);
searchResults.Add("SSDEEP: " + dynObj.SSDEEP);
searchResults.Add("Type: " + dynObj.F_TYPE);
foreach (var item in dynObj.SOURCES)
{
searchResults.Add("Source: " + Convert.ToString(item));
}
}
else
{
searchResults.Add($"Results for {hash}: Not found.");
}
return searchResults;
}
public List<string> GetTypeList()
{
List<string> types = new List<string>();
string html = String.Empty;
string url = $@"https://malshare.com/api.php?api_key={key}&action=gettypes";
html = GetResponse(url);
if (!String.IsNullOrWhiteSpace(html))
{
dynamic dynObj = JsonConvert.DeserializeObject(html);
foreach (var item in dynObj)
{
types.Add(Convert.ToString(item).Replace("\"", String.Empty));
}
types.RemoveAll(String.IsNullOrWhiteSpace);
}
else
{
types.Add("Failed to retreive list.");
}
return types;
}
public List<string> GetSources()
{
List<string> sources = new List<string>();
string html = String.Empty;
string url = $@"https://malshare.com/api.php?api_key={key}&action=getsources";
html = GetResponse(url);
if (!String.IsNullOrWhiteSpace(html))
{
dynamic dynObj = JsonConvert.DeserializeObject(html);
foreach (var item in dynObj)
{
sources.Add(Convert.ToString(item));
}
sources.RemoveAll(String.IsNullOrWhiteSpace);
}
else
{
sources.Add("Failed to retrieve sources.");
}
return sources;
}
public List<string> GetHashList()
{
List<string> hashList = new List<string>();
string html = String.Empty;
string url = $@"https://malshare.com/api.php?api_key={key}&action=getlist";
html = GetResponse(url);
if (!String.IsNullOrWhiteSpace(html))
{
dynamic dynObj = JsonConvert.DeserializeObject(html);
foreach (var item in dynObj)
{
hashList.Add("MD5: " + item.md5 + "/SHA1: " + item.sha1 + "/SHA256: " + item.sha256);
}
}
else
{
hashList.Add("Failed to retrive hash list.");
}
return hashList;
}
public List<string> GetRequestLimit()
{
List<string> limitList = new List<string>();
string html = String.Empty;
string url = $@"https://malshare.com/api.php?api_key={key}&action=getlimit";
html = GetResponse(url);
if (!String.IsNullOrWhiteSpace(html))
{
dynamic dynObj = JsonConvert.DeserializeObject(html);
limitList.Add("Limit: " + dynObj.LIMIT);
limitList.Add("Remaining: " + dynObj.REMAINING);
}
else
{
limitList.Add("Failed to retrieve request limit.");
}
return limitList;
}
public string Upload(string filePath)
{
WebClient wc = new WebClient();
string url = $@"https://malshare.com/api.php?api_key={key}&action=upload";
try
{
wc.UploadFile(url, filePath);
wc.Dispose();
}
catch
{
return $"{filePath} - Failed to upload file.";
}
return $"File {filePath} uploaded successfully.";
}
public string DownloadFile(string hash)
{
string url = $@"https://malshare.com/api.php?api_key={key}&action=getfile&hash={hash}";
Directory.CreateDirectory("DownloadedFiles");
WebClient client = new WebClient();
try
{
client.DownloadFile(new Uri(url), @"DownloadedFiles\" + hash);
}
catch
{
return $"File with hash {hash} not found.";
}
return $@"File with hash {hash} downloaded to DownloadedFiles\{hash}";
}
public string UrlToCollection(string urlToUpload, bool enableCrawling = false)
{
string url = $@"https://malshare.com/api.php?api_key={key}&action=download_url";
string responseStr = String.Empty;
using (WebClient wb = new WebClient())
{
try
{
NameValueCollection data = new NameValueCollection();
data["url"] = urlToUpload;
if(enableCrawling == true)
{
data["recursive"] = "1";
}
var response = wb.UploadValues(url, "POST", data);
string responseInString = Encoding.UTF8.GetString(response);
dynamic dynObj = JsonConvert.DeserializeObject(responseInString);
responseStr = $"GUID for {urlToUpload}: {dynObj.guid}";
}
catch (WebException ex)
{
if (ex.Response != null)
{
WebResponse response = ex.Response;
Stream dataStream = response.GetResponseStream();
StreamReader reader = new StreamReader(dataStream);
string details = reader.ReadToEnd();
if (details.Contains("error"))
{
dynamic dynObj = JsonConvert.DeserializeObject(details);
return $"Error for API key {key}: {dynObj.error}";
}
return details;
}
}
catch
{
return $"Failed to add {urlToUpload} to the sample collection.";
}
return responseStr;
}
}
public string CheckGUID(string guid)
{
string html = String.Empty;
string url = $@"https://malshare.com/api.php?api_key={key}&action=download_url_check&guid={guid}";
html = GetResponse(url);
if (String.IsNullOrWhiteSpace(html))
{
return $"Failed to retrieve status for {guid}";
}
dynamic dynObj = JsonConvert.DeserializeObject(html);
return $"Status for {guid}: {dynObj.status}";
}
public string HashLookup(string hash)
{
string url = $@"https://malshare.com/api.php?api_key={key}&action=hashlookup";
string responseStr = String.Empty;
using (WebClient wb = new WebClient())
{
try
{
var response = wb.UploadString(url, "POST", hash);
var result = JsonConvert.DeserializeObject<List<Hashes>>(response);
responseStr = $"MD5: {result[0].md5}/SHA1: {result[0].sha1}/SHA256: {result[0].sha256}";
}
catch (WebException ex)
{
if (ex.Response != null)
{
WebResponse response = ex.Response;
Stream dataStream = response.GetResponseStream();
StreamReader reader = new StreamReader(dataStream);
string details = reader.ReadToEnd();
if (details.Contains("error"))
{
dynamic dynObj = JsonConvert.DeserializeObject(details);
return $"Error for API key {key}: {dynObj.error}";
}
return details;
}
}
catch
{
return $"Failed to retrieve data for {hash}. Perhaps it doesn't exist in the database.";
}
return responseStr;
}
}
}
public class Hashes
{
public string md5 { get; set; }
public string sha1 { get; set; }
public string sha256 { get; set; }
}
public class Search
{
public string md5 { get; set; }
public string sha1 { get; set; }
public string sha256 { get; set; }
public string type { get; set; }
public string added { get; set; }
public string source { get; set; }
public Yarahits yarahits { get; set; }
public List<string> parentfiles { get; set; }
public List<string> subfiles { get; set; }
}
public class Yarahits
{
public List<string> yara { get; set; }
}
}