-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
OperationLocateText.cpp
178 lines (153 loc) · 5.92 KB
/
OperationLocateText.cpp
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
#include "OperationLocateText.h"
#include "InputOutput.h"
#include "Functions.h"
#pragma comment(lib, "bcrypt.lib")
#pragma comment(lib, "crypt32.lib")
#include <bcrypt.h>
#include <sal.h>
ClassFactory<OperationLocateText> OperationLocateText::RegisteredFactory(GetCommand());
#define Q(x) L"\"" + (x) + L"\""
OperationLocateText::OperationLocateText(std::queue<std::wstring> & oArgList, const std::wstring & sCommand) : Operation(oArgList)
{
// exit if there are not enough arguments to parse
std::vector<std::wstring> sReportFile = ProcessAndCheckArgs(1, oArgList, L"\\0");
std::vector<std::wstring> sMatchAndArgs = ProcessAndCheckArgs(1, oArgList);
// fetch params
HANDLE hFile = CreateFile(sReportFile.at(0).c_str(), GENERIC_WRITE,
FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr);
// see if names could be resolved
if (hFile == INVALID_HANDLE_VALUE)
{
// complain
wprintf(L"ERROR: Could not create file '%s' specified for parameter '%s'.\n", sReportFile.at(0).c_str(), GetCommand().c_str());
exit(-1);
}
// register the file handle
hReportFile = RegisterFileHandle(hFile, GetCommand());
// if this is the first handle using this file, write out a header
if (hFile == hReportFile)
{
// write out the file type marker
const BYTE hHeader[] = { 0xEF,0xBB,0xBF };
DWORD iBytes = 0;
if (WriteFile(hFile, &hHeader, _countof(hHeader), &iBytes, nullptr) == 0)
{
wprintf(L"ERROR: Could not write out file type marker '%s'.\n", GetCommand().c_str());
exit(-1);
}
// write out the header
std::wstring sToWrite = std::wstring(L"") + Q(L"Path") + L"," + Q(L"Creation Time") + L"," +
Q(L"Modified Time") + L"," + Q(L"Size") + L"," + Q(L"Attributes") + L"\r\n";
if (WriteToFile(sToWrite, hReportFile) == 0)
{
wprintf(L"ERROR: Could not write header to report file for parameter '%s'.\n", GetCommand().c_str());
exit(-1);
}
}
// only flag this to apply to the core object with the file name
AppliesToObject = true;
// record specific s if specified
if (sMatchAndArgs.size() > 1)
{
// convert the sha1 string from hex to binary
/*
aHashToMatch = new BYTE[HASH_IN_BYTES];
DWORD iBytesRead = HASH_IN_BYTES;
if (CryptStringToBinary(sMatchAndArgs.at(1).c_str(), (DWORD) sMatchAndArgs.at(1).size(),
CRYPT_STRING_HEX_ANY, aHashToMatch, &iBytesRead, NULL, NULL) == FALSE || iBytesRead != HASH_IN_BYTES)
{
wprintf(L"ERROR: Invalid hash '%s' specified for parameter '%s'.\n", sMatchAndArgs.at(1).c_str(), GetCommand().c_str());
exit(-1);
}
*/
}
}
void OperationLocateText::ProcessObjectAction(ObjectEntry & tObjectEntry)
{
// skip directories
if (IsDirectory(tObjectEntry.Attributes)) return;
/*
// skip any files that do not match the size (if specified)
if (iSizeToMatch != -1 && tObjectEntry.FileSize.QuadPart != iSizeToMatch) return;
// skip any file names that do not match the regex
const WCHAR* sFileName = tObjectEntry.Name.c_str();
if (wcsrchr(sFileName, '\\') != nullptr) sFileName = wcsrchr(sFileName, '\\') + 1;
if (!std::regex_match(sFileName, tRegex)) return;
// initialize hash for this thread
static constexpr size_t iFileBuffer = 2 * 1024 * 1024;
__declspec(thread) static BCRYPT_HASH_HANDLE HashHandle = NULL;
__declspec(thread) static PBYTE Hash = nullptr;
__declspec(thread) static PBYTE FileBuffer = nullptr;
__declspec(thread) static DWORD HashLength = 0;
if (Hash == nullptr)
{
BCRYPT_ALG_HANDLE AlgHandle = NULL;
DWORD ResultLength = 0;
if (BCryptOpenAlgorithmProvider(&AlgHandle, BCRYPT_SHA256_ALGORITHM, NULL, BCRYPT_HASH_REUSABLE_FLAG) != 0 ||
BCryptGetProperty(AlgHandle, BCRYPT_HASH_LENGTH, (PBYTE) &HashLength, sizeof(HashLength), &ResultLength, 0) != 0 ||
BCryptCreateHash(AlgHandle, &HashHandle, NULL, 0, NULL, 0, BCRYPT_HASH_REUSABLE_FLAG) != 0 ||
(Hash = (PBYTE) malloc(HashLength)) == NULL ||
(FileBuffer = (PBYTE) malloc(iFileBuffer)) == NULL)
{
wprintf(L"ERROR: Could not setup hashing environment.\n");
exit(-1);
}
}
HANDLE hFile = CreateFile(tObjectEntry.Name.c_str(), GENERIC_READ, FILE_SHARE_READ,
NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
if (hFile == INVALID_HANDLE_VALUE)
{
InputOutput::AddError(L"Unable to open file for reading.");
return;
}
DWORD iReadResult = 0;
DWORD iHashResult = 0;
DWORD iReadBytes = 0;
while ((iReadResult = ReadFile(hFile, FileBuffer, iFileBuffer, &iReadBytes, NULL)) != 0 && iReadBytes > 0)
{
iHashResult = BCryptHashData(HashHandle, FileBuffer, iReadBytes, 0);
if (iHashResult != 0) break;
}
// done reading data
CloseHandle(hFile);
// complete hash data
if (BCryptFinishHash(HashHandle, Hash, HashLength, 0) != 0)
{
InputOutput::AddError(L"Could not finalize file data.");
exit(-1);
}
// file read failed
if (iHashResult != 0 || iReadResult == 0)
{
InputOutput::AddError(L"Could not hash/read file data.");
return;
}
// skip if a hash was specified and there is no match
if (aHashToMatch != nullptr && memcmp(aHashToMatch, Hash, HASH_IN_BYTES) != 0)
{
return;
}
// convert to base64
WCHAR sHash[HASH_IN_HEXCHARS + 1] = L"";
DWORD iHashStringLength = HASH_IN_HEXCHARS + 1;
CryptBinaryToStringW(Hash, HashLength, CRYPT_STRING_HEXRAW | CRYPT_STRING_NOCRLF,
sHash, &iHashStringLength);
// get common file attributes
const std::wstring sSize = FileSizeToString(tObjectEntry.FileSize);
const std::wstring sAttributes = FileAttributesToString(tObjectEntry.Attributes);
const std::wstring sModifiedTime = FileTimeToString(tObjectEntry.ModifiedTime);
const std::wstring sCreationTime = FileTimeToString(tObjectEntry.CreationTime);
// check if the target path matches out regex filter
if (true)
{
// write output to file
std::wstring sToWrite = std::wstring(L"") + Q(tObjectEntry.Name) + L"," +
Q(sCreationTime) + L"," + Q(sModifiedTime) + L"," +
Q(sSize) + L"," + Q(sAttributes) + L"," + Q(sHash) + L"," + L"\r\n";
if (WriteToFile(sToWrite, hReportFile) == 0)
{
InputOutput::AddError(L"Unable to write information to report file.");
}
}
*/
}