-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathProgram.cs
More file actions
514 lines (462 loc) · 19.2 KB
/
Program.cs
File metadata and controls
514 lines (462 loc) · 19.2 KB
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Text.RegularExpressions;
using System.Threading;
namespace SharpSearch
{
class Program
{
public static string HumanBytes(double len)
{
string[] sizes = { "B", "KB", "MB", "GB", "TB" };
int order = 0;
while (len >= 1024 && order < sizes.Length - 1)
{
order++;
len = len / 1024;
}
// Adjust the format string to your preferences. For example "{0:0.#}{1}" would
// show a single decimal place, and no space.
string result = String.Format("{0:0.##} {1}", len, sizes[order]);
return result;
}
public static void PrintResults(ref int allFilesCount,
ref double allFileSizes,
ref int allDirectoryCount,
ref string lastDir,
FileInfo fileInfo,
ref double dirFileSizes,
ref int dirFileCount,
string fileStatusLine)
{
allFilesCount += 1;
allFileSizes += fileInfo.Length;
if (lastDir == fileInfo.Directory.ToString())
{
dirFileSizes += fileInfo.Length;
dirFileCount += 1;
Console.WriteLine(fileStatusLine);
}
else
{
if (dirFileCount > 0)
{
Console.WriteLine();
string statusString = GetDirectoryStatusString(dirFileCount, dirFileSizes);
Console.WriteLine(statusString);
dirFileSizes = 0;
dirFileCount = 0;
}
allDirectoryCount += 1;
dirFileCount += 1;
dirFileSizes += fileInfo.Length;
lastDir = fileInfo.Directory.ToString();
//Console.WriteLine();
Console.WriteLine("Directory of {0}", fileInfo.Directory);
Console.WriteLine(fileStatusLine + "\r\n");
}
}
public static string GetSpaces(object item)
{
int numSpaces = 16;
//string result = String.Concat(Enumerable.Repeat(" ", numSpaces - item.ToString().Length));
string result = "";
for(int i = 0; i < (numSpaces - item.ToString().Length); i++)
{
result += " ";
}
return result;
}
public static string GetFileStatusString(FileInfo fileInfo)
{
string size = HumanBytes(fileInfo.Length);
string lastWrite = File.GetLastWriteTime(fileInfo.FullName).Date.ToString();
string result = String.Format("\t{0}" + GetSpaces(size) + "{1} {2}", lastWrite, size, fileInfo.Name);
return result;
}
public static string GetDirectoryStatusString(int totalCount, double totalSizes)
{
string bytes = HumanBytes(totalSizes);
string result = GetSpaces(totalCount) + totalCount.ToString() + " Files(s)";
result += GetSpaces(bytes) + bytes;
return result;
}
static void Usage()
{
string usageString = @"
Usage:
Arguments:
Required:
path - Path to search for files. Note: If using quoted paths, ensure you
escape backslashes properly.
Optional:
patttern - Type of files to search for, e.g. ""*.txt"" (Optional)
searchterm - Term to search for within files. (Optional)
-V - Verbose: Print lines contraining matches (Optional)
year - Filter by year e.g. year:2019 (Optional)
ext_whitelist - Specify file extension whitelist: (Optional)
- This should speed up performance
InputFile: ext.txt:
__________
|.txt |
|.aspx |
|________|
e.g. whitelist:""path\\to\\ext.txt""
ext_blacklist - Specify file extension blacklist: (Optional)
e.g. blacklist:""path\\to\\ext.txt""
search_whitelist - Specify a list of searchterms in a file: (Optional)
e.g. search_whitelist:""path\\to\\searchterms.txt""
searchterms - Specify a comma deliminated list of searchterms (Optional)
e.g. searchterms:foo,bar,asdf
Examples:
Find all files that have the phrase ""password"" in them.
SharpSearch.exe path:""C:\\Users\\User\\My Documents\\"" searchterm:password
Search for all batch files on a remote share that contain the word ""Administrator""
SharpSearch.exe path:""\\\\server01\\SYSVOL\\domain\\scripts\\"" pattern:*.bat searchTerm:Administrator
";
Console.WriteLine(usageString);
}
static string[] GetAllFiles(string path, string pattern="")
{
List<string> results = new List<string>();
string[] files = null;
string[] directories = null;
// Fetch files for current path
try
{
if (pattern != "" && pattern != null)
{
files = Directory.GetFiles(path, pattern);
}
else
{
files = Directory.GetFiles(path);
}
if (files.Length > 0)
{
foreach(string f in files)
{
results.Add(f);
}
}
}
catch (UnauthorizedAccessException ex)
{
Console.WriteLine("[-] Could not list files in {0}: {1}", path, ex.Message);
}
catch (Exception ex)
{
Console.WriteLine("[-] Unhandled Exception encountered while listing files:");
Console.WriteLine(ex);
}
// Fetch files in other directoriees
try
{
// Attempt to get directories
directories = Directory.GetDirectories(path);
if (directories != null && directories.Length > 0)
{
foreach (string dir in directories)
{
string[] dirFiles = GetAllFiles(dir, pattern);
if (dirFiles != null && dirFiles.Length > 0)
{
foreach(string f in dirFiles)
{
results.Add(f);
}
}
}
}
}
catch (UnauthorizedAccessException ex)
{
Console.WriteLine("[-] Could not list directories in {0}: {1}", path, ex.Message);
}
catch (Exception ex)
{
Console.WriteLine("[-] Unhandled Exception encountered while listing directories:");
Console.WriteLine(ex);
}
return results.ToArray();
}
static bool FileContainsString(string path, string searchTerm)
{
try
{
var data = File.ReadAllLines(path);
var isEmpty = true;
foreach (var s in data)
{
// make sure its not null doesn't start with an empty line or something.
if (s != null && !string.IsNullOrEmpty(s) && !s.StartsWith(" ") && s.Length > 0 && searchTerm != null && searchTerm != "")
{
string line = s.ToLower().Trim();
// use regex to find some key in your case the "ID".
// look into regex and word boundry find only lines with ID
// double check the below regex below going off memory. \B is for boundry
var regex = new Regex(searchTerm);
var isMatch = regex.Match(s.ToLower());
if (isMatch.Success)
{
isEmpty = false;
//return s;
if (grepGlobal)
{
Console.WriteLine(s);
}
}
}
}
return !isEmpty;
}
catch (IOException ex)
{
}
return false;
}
static bool grepGlobal = false;
static List<string> ext_whitelist = new List<string>();
static List<string> ext_blacklist = new List<string>();
static List<string> search_whitelist = new List<string>();
static void Main(string[] args)
{
string path = "";
string pattern = "";
string searchTerm = "";
// lazy assignment
bool grep = args.Contains("-V");
grepGlobal = grep;
string year = "";
string whitelistPath = "";
string blacklistPath = "";
// argument parsing
var arguments = new Dictionary<string, string>();
try
{
foreach (var argument in args)
{
var idx = argument.IndexOf(':');
if (idx > 0)
arguments[argument.Substring(0, idx)] = argument.Substring(idx + 1);
else
arguments[argument] = string.Empty;
}
}
catch (System.Exception ex)
{
Console.WriteLine("[-] Exception parsing arguments:");
Console.WriteLine(ex);
}
if (!arguments.ContainsKey("path"))
{
Console.WriteLine("[-] Error: No path was given.");
Usage();
//Environment.Exit(1);
}
path = arguments["path"];
if (!Directory.Exists(path))
{
Console.WriteLine("[X] Error: Directory {0} does not exist.", path);
//Environment.Exit(1);
Console.ReadLine();
}
if (arguments.ContainsKey("pattern"))
{
pattern = arguments["pattern"];
}
if (arguments.ContainsKey("searchterm"))
{
searchTerm = arguments["searchterm"];
}
if (arguments.ContainsKey("year"))
{
year = arguments["year"];
}
if (arguments.ContainsKey("ext_whitelist"))
{
whitelistPath = arguments["ext_whitelist"];
List<string> lines = new List<string>();
using (StreamReader reader = File.OpenText(whitelistPath))
{
while (!reader.EndOfStream)
{
lines.Add(reader.ReadLine());
}
}
ext_whitelist = lines;
}
if (arguments.ContainsKey("ext_blacklist"))
{
blacklistPath = arguments["ext_blacklist"];
List<string> lines = new List<string>();
using (StreamReader reader = File.OpenText(blacklistPath))
{
while (!reader.EndOfStream)
{
lines.Add(reader.ReadLine());
}
}
ext_blacklist = lines;
}
if (arguments.ContainsKey("search_whitelist"))
{
whitelistPath = arguments["search_whitelist"];
List<string> lines = new List<string>();
using (StreamReader reader = File.OpenText(whitelistPath))
{
while (!reader.EndOfStream)
{
lines.Add(reader.ReadLine());
}
}
search_whitelist = lines;
}
if (arguments.ContainsKey("searchterms"))
{
String[] split = arguments["searchterms"].Split(',');
search_whitelist = split.ToList<string>();
}
string[] files = GetAllFiles(path, pattern);
if (files.Length > 0)
{
Dictionary<string, string[]> sorted = new Dictionary<string, string[]>();
string lastDir = "";
// total size of all files listed
double allFileSizes = 0;
int allDirectoryCount = 0;
int allFilesCount = 0;
// directory specific file count
double dirFileSizes = 0;
int dirFileCount = 0;
FileExtensionHandler fileExtHandler = new FileExtensionHandler();
foreach (string f in files)
{
FileInfo fileInfo = new FileInfo(f);
string fileStatusLine = GetFileStatusString(fileInfo);
string size = HumanBytes(fileInfo.Length);
string ext = Path.GetExtension(f);
if(ext_whitelist.Count() != 0) // then we have a whitelist
{
if (!ext_whitelist.Contains(ext))
{
continue; // extension not in whitelist
}
}
if(ext_blacklist.Count() != 0)
{
if (ext_blacklist.Contains(ext))
{
continue;
}
}
string lastWrite = File.GetLastWriteTime(fileInfo.FullName).Date.ToString();
if(year != "")
{
if (!lastWrite.Contains(year))
{
continue;
}
}
if (searchTerm == "" && search_whitelist.Count() == 0)
{
try
{
PrintResults(ref allFilesCount,
ref allFileSizes,
ref allDirectoryCount,
ref lastDir,
fileInfo,
ref dirFileSizes,
ref dirFileCount,
fileStatusLine);
}
catch (Exception ex)
{
Console.WriteLine("[-] ERROR printing results.");
Console.WriteLine(ex);
}
}
else
{
bool hasSearchTerm = false;
string entireLine = "";
if (search_whitelist.Count() > 0)
{
foreach (string eachSearchTerm in search_whitelist)
{
if (FileContainsString(f, eachSearchTerm))
{
hasSearchTerm = true;
}
}
}
if (pattern == "")
{
// Ensure this is not a bad file format.
if (fileExtHandler.HasCleanExtension(f))
{
if (!hasSearchTerm)
{
hasSearchTerm = FileContainsString(f, searchTerm);
}
//entireLine = FileContainsString(f, searchTerm);
}
else
{
//Console.WriteLine("[-] Skipping reading {0}. To force this, specify the pattern of files to read with --pattern.", f);
}
}
else
{
if (!hasSearchTerm)
{
hasSearchTerm = FileContainsString(f, searchTerm);
}
//entireLine = FileContainsString(f, searchTerm);
}
if (hasSearchTerm)
//if (entireLine != "")
{
//if (grep)
//{
// Console.WriteLine(entireLine);
//}
PrintResults(ref allFilesCount,
ref allFileSizes,
ref allDirectoryCount,
ref lastDir,
fileInfo,
ref dirFileSizes,
ref dirFileCount,
fileStatusLine);
Console.WriteLine();
}
}
}
if (dirFileCount > 0)
{
Console.WriteLine();
string statusString = GetDirectoryStatusString(dirFileCount, dirFileSizes);
Console.WriteLine(statusString);
dirFileSizes = 0;
dirFileCount = 0;
}
Console.WriteLine();
Console.WriteLine("\tTotal Files Listed:");
string line_1 = GetSpaces(allFilesCount) + allFilesCount.ToString() +
" File(s)" + GetSpaces(allFileSizes) + HumanBytes(allFileSizes);
string line_2 = GetSpaces(allDirectoryCount) + allDirectoryCount.ToString() + " Dir(s)";
Console.WriteLine(line_1);
Console.WriteLine(line_2);
}
else
{
Console.WriteLine("[-] No files found in {0} with pattern {1}", path, pattern);
}
}
}
}