-
Notifications
You must be signed in to change notification settings - Fork 30
/
CpeDictionaryMatcher.cpp
304 lines (222 loc) · 4.87 KB
/
CpeDictionaryMatcher.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
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
#include "CpeDictionaryMatcher.h"
#include "DataReader.h"
#include "Utils.h"
#include <mutex>
using namespace std;
using namespace boost;
vector<CpeEntry> CpeDictionaryMatcher::entries = vector<CpeEntry>();
unordered_map<string, vector<string>> CpeDictionaryMatcher::aliases = unordered_map<string, vector<string>>();
vector<string> CpeDictionaryMatcher::Scan(const string& banner, bool processVendor)
{
if (entries.size() == 0)
{
loadEntries();
}
vector<string> matches;
if (banner.length() == 0)
{
return matches;
}
for (auto& ent : entries)
{
vector<int> namepos;
// check if all the tokens from the name are in the input
auto nametok = true;
for (auto& token : ent.tokens)
{
smatch what;
if (!regex_search(banner, what, token))
{
nametok = false;
break;
}
namepos.push_back(what.position());
}
if (!nametok)
{
continue;
}
string bestcpe, bestver;
auto bestdist = UINT_MAX;
auto besttokens = 0u;
// if so, check if any associated versions are also in the input
for (auto& version : ent.versions)
{
auto verpos = banner.find(version.version);
if (verpos == string::npos)
{
continue;
}
// if the version number was found, check if the tokens associated
// to this version are also present
auto dist = 0u;
auto vertok = true;
for (auto& token : version.tokens)
{
smatch what;
if (!regex_search(banner, what, token))
{
vertok = false;
break;
}
dist += abs(int(what.position()) - int(verpos));
}
if (!vertok)
{
continue;
}
// if so, calculate distance from version to the tokens in the name
for (auto npos : namepos)
{
dist += abs(npos - int(verpos));
}
// check against current best
if (version.tokens.size() > besttokens || (version.tokens.size() == besttokens && dist <= bestdist))
{
bestdist = dist;
besttokens = version.tokens.size();
bestcpe = ent.cpe + ":" + version.cpe;
bestver = version.version;
}
}
if (bestcpe.length() == 0)
{
continue;
}
// find vendor patch level, if any and asked
if (processVendor)
{
smatch what;
regex verfind(escapeRegex(bestver) + "(?<sep>[-+~_])(?<tag>[^$;\\s\\)\\/]+)");
if (regex_search(banner, what, verfind))
{
// append vendor patch level to the CPE into a separate field
bestcpe += ";" + what["tag"].str();
}
}
// save matching CPE
matches.push_back(bestcpe);
}
return matches;
}
vector<CpeEntry> CpeDictionaryMatcher::GetEntries()
{
if (entries.size() == 0)
{
loadEntries();
}
return entries;
}
unordered_map<string, vector<string>> CpeDictionaryMatcher::GetAliases()
{
if (aliases.size() == 0)
{
loadEntries();
}
return aliases;
}
void CpeDictionaryMatcher::loadEntries()
{
static mutex mtx;
auto locked = mtx.try_lock();
if (!locked)
{
// wait until running parser finishes before returning
lock_guard<mutex> guard(mtx);
return;
}
// open entries file
DataReader dr;
if (!dr.OpenEnv("cpe-list"))
{
log(WRN, "CPE database was not found!");
mtx.unlock();
return;
}
unsigned short ptype, pver;
dr.Read(ptype);
dr.Read(pver);
if (ptype != 1)
{
log(WRN, "CPE database type is incorrect.");
mtx.unlock();
return;
}
if (pver != 1)
{
log(WRN, "CPE database version is not supported.");
mtx.unlock();
return;
}
unsigned int pnum;
dr.Read(pnum);
for (auto i = 0u; i < pnum; i++)
{
CpeEntry ent;
ent.cpe = dr.ReadString();
unsigned char tnum;
dr.Read(tnum);
ent.tokens = vector<regex>();
for (auto j = 0u; j < tnum; j++)
{
ent.tokens.push_back(std::move(regex("\\b(" + dr.ReadString() + ")\\b", regex::icase)));
}
unsigned int vnum;
dr.Read(vnum);
ent.versions = vector<CpeVersionEntry>();
for (auto j = 0u; j < vnum; j++)
{
CpeVersionEntry ver;
ver.cpe = dr.ReadString();
ver.version = dr.ReadString();
unsigned char vtnum;
dr.Read(vtnum);
ver.tokens = vector<regex>();
for (auto k = 0u; k < vtnum; k++)
{
ver.tokens.push_back(std::move(regex("\\b(" + dr.ReadString() + ")\\b", regex::icase)));
}
ent.versions.push_back(ver);
}
entries.push_back(ent);
}
// open aliases file
if (!dr.OpenEnv("cpe-aliases"))
{
log(WRN, "CPE aliases database was not found!");
mtx.unlock();
return;
}
dr.Read(ptype);
dr.Read(pver);
if (ptype != 2)
{
log(WRN, "CPE aliases database type is incorrect.");
mtx.unlock();
return;
}
if (pver != 1)
{
log(WRN, "CPE aliases database version is not supported.");
mtx.unlock();
return;
}
dr.Read(pnum);
for (auto i = 0u; i < pnum; i++)
{
unsigned short anum;
dr.Read(anum);
vector<string> list;
for (auto j = 0u; j < anum; j++)
{
auto alias = dr.ReadString();
list.push_back(alias);
aliases.emplace(alias, list);
}
}
// clean up
mtx.unlock();
}
CpeDictionaryMatcher::~CpeDictionaryMatcher()
{
}