-
Notifications
You must be signed in to change notification settings - Fork 547
/
vulners_enterprise.nse
382 lines (324 loc) · 12.5 KB
/
vulners_enterprise.nse
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
description = [[
For each available CPE the script prints out known vulns (links to the correspondent info) and correspondent CVSS scores.
Its work is pretty simple:
* work only when some software version is identified for an open port
* take all the known CPEs for that software (from the standard nmap -sV output)
* make a request to a remote server (vulners.com API) to learn whether any known vulns exist for that CPE
* if no info is found this way, try to get it using the software name alone
* print the obtained info out
NB:
Since the size of the DB with all the vulns is more than 250GB there is no way to use a local db.
So we do make requests to a remote service. Still all the requests contain just two fields - the
software name and its version (or CPE), so one can still have the desired privacy.
NB2:
This script requires a valid API token. You can either specify it on the CLI using the 'api_key' script argument,
set it into an envirotnment variable VULNERS_API_KEY, or store it in a file readable by the user running nmap.
In this case you must specify the absolute path to the file using the 'api_key_file' script argument.
]]
---
-- @usage
-- nmap -sV --script vulners_enterprise [--script-args mincvss=<arg_val>,api_key=<api_key>,api_key_file=<absolute_path>,api_host=http://my_host.com] <target>
--
-- @args vulners_enterprise.mincvss Limit CVEs shown to those with this CVSS score or greater.
-- @args vulners_enterprise.api_key API token to be used in the requests
-- @args vulners_enterprise.api_key_file Absolute path to the file with a single line containing the API token
-- @args vulners_enterprise.api_host URL to vulners API without the leading slash. Defaults to https://vulners.com
--
-- @output
--
-- PORT STATE SERVICE REASON VERSION
-- 22/tcp open ssh syn-ack OpenSSH 6.6.1p1 Ubuntu 2ubuntu2.13 (Ubuntu Linux; protocol 2.0)
-- | vulners_enterprise:
-- | cpe:/a:openbsd:openssh:6.6.1p1:
-- | PRION:CVE-2020-16088 cvssV3: 9.8 https://vulners.com/prion/PRION:CVE-2020-16088
-- | PRION:CVE-2015-5600 cvssV2: 8.5 https://vulners.com/prion/PRION:CVE-2015-5600
-- | CVE-2015-5600 cvssV2: 8.5 https://vulners.com/cve/CVE-2015-5600
-- | PRION:CVE-2015-6564 cvssV2: 6.9 https://vulners.com/prion/PRION:CVE-2015-6564
-- | CVE-2015-6564 cvssV2: 6.9 https://vulners.com/cve/CVE-2015-6564
-- | CVE-2020-14145 cvssV3: 5.9 https://vulners.com/cve/CVE-2020-14145
-- | CVE-2018-15919 cvssV3: 5.3 https://vulners.com/cve/CVE-2018-15919
-- | PRION:CVE-2015-5352 cvssV2: 4.3 https://vulners.com/prion/PRION:CVE-2015-5352
-- | CVE-2015-5352 cvssV2: 4.3 https://vulners.com/cve/CVE-2015-5352
-- | PRION:CVE-2015-6563 cvssV2: 1.9 https://vulners.com/prion/PRION:CVE-2015-6563
-- |_ CVE-2015-6563 cvssV2: 1.9 https://vulners.com/cve/CVE-2015-6563
--
-- @xmloutput
-- <table key="cpe:/a:isc:bind:9.8.2rc1">
-- <table>
-- <elem key="is_exploit">false</elem>
-- <elem key="cvss">8.5</elem>
-- <elem key="id">CVE-2012-1667</elem>
-- <elem key="type">cve</elem>
-- </table>
-- <table>
-- <elem key="is_exploit">false</elem>
-- <elem key="cvss">7.8</elem>
-- <elem key="id">CVE-2015-4620</elem>
-- <elem key="type">cve</elem>
-- </table>
-- </table>
dependencies = {"http-vulners-regex"}
author = 'gmedian AT vulners DOT com'
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
categories = {"vuln", "safe", "external", "default"}
local http = require "http"
local url = require "url"
local json = require "json"
local string = require "string"
local table = require "table"
local nmap = require "nmap"
local stdnse = require "stdnse"
local os = require "os"
local api_version="1.9"
local mincvss=stdnse.get_script_args(SCRIPT_NAME .. ".mincvss")
mincvss = tonumber(mincvss) or 0.0
local api_key_file=stdnse.get_script_args(SCRIPT_NAME .. ".api_key_file")
api_key_file = api_key_file or ""
local api_host=stdnse.get_script_args(SCRIPT_NAME .. ".api_host")
api_host = api_host or 'https://vulners.com'
local api_key=stdnse.get_script_args(SCRIPT_NAME .. ".api_key")
api_key = api_key or os.getenv("VULNERS_API_KEY")
portrule = function(host, port)
local vers=port.version
return vers ~= nil and vers.version ~= nil or (host.registry.vulners_cpe ~= nil)
end
local cve_meta = {
__tostring = function(me)
return ("\t%s\t%s: %s\thttps://vulners.com/%s/%s%s"):format(me.id, me.cvss_type, me.cvss or "", me.type, me.id, me.is_exploit and '\t*EXPLOIT*' or '')
end,
}
---
-- Return a string read from api_key_file to be used as an API_KEY
--
function read_api_key_file()
stdnse.debug1("api_key not specified. Trying to read api_key_file.")
if api_key_file == nil or api_key_file == "" then
stdnse.debug1("No api_key_file set")
return ""
end
local file = io.open(api_key_file, "r")
if file == nil then
stdnse.debug1("Failed to open api_key_file " .. api_key_file)
return ""
end
api_key = file:read("*line")
file:close()
return api_key
end
---
-- Return a string with all the found cve's and correspondent links
--
-- @param vulns a table with the parsed json response from the vulners server
--
function make_links(vulns)
local output = {}
local cvss = ""
if not vulns or not vulns.data or not vulns.data.search then
return
end
for _, vuln in ipairs(vulns.data.search) do
local v = {
id = vuln._source.id,
type = vuln._source.type,
-- Mark the exploits out
is_exploit = vuln._source.bulletinFamily:lower() == "exploit",
-- Sometimes it might happen, so check the score availability
}
if vuln._source.cvss3.cvssV3 == nil then
v['cvss'] = vuln._source.cvss.score
v['cvss_type'] = "cvssV2"
else
v['cvss'] = vuln._source.cvss3.cvssV3.baseScore
v['cvss_type'] = "cvssV3"
end
-- NOTE[gmedian]: exploits seem to have cvss == 0, so print them anyway
if not v.cvss or (v.cvss == 0 and v.is_exploit) or mincvss <= v.cvss then
setmetatable(v, cve_meta)
output[#output+1] = v
end
end
if #output > 0 then
-- Sort the acquired vulns by the CVSS score
table.sort(output, function(a, b)
return a.cvss > b.cvss or (a.cvss == b.cvss and a.id > b.id)
end)
return output
end
end
---
-- Issues the requests, receives json and parses it, calls <code>make_links</code> when successfull
--
-- @param what string, future value for the software query argument
-- @param vers string, the version query argument
-- @param type string, the type query argument
--
function get_results(what, vers, type)
local api_endpoint = api_host .. "/api/v3/burp/softwareapi/"
local vulns
local response
local status
local attempt_n=0
local query = {
software= what,
version= vers,
type=type,
apiKey=api_key
}
local api_url = ('%s?%s'):format(api_endpoint, url.build_query(query))
local option={
header={
['User-Agent'] = string.format('Vulners NMAP Enterprise %s', api_version),
['Accept-Encoding'] = "gzip, deflate"
},
any_af = true,
}
stdnse.debug1("Trying to get vulns of " .. what .. " for type " .. type)
-- Sometimes we cannot contact vulners, so have to try several more times
while attempt_n < 3 do
stdnse.debug1("Attempt ".. attempt_n .. " to contact vulners.")
response = http.get_url(api_url, option)
status = response.status
if status ~= nil then
break
end
attempt_n = attempt_n + 1
stdnse.sleep(1)
end
if status == nil then
-- Something went really wrong out there
-- According to the NSE way we will die silently rather than spam user with error messages
stdnse.debug1("Failed to cantact vulners in several attempts.")
return
elseif status ~= 200 then
-- Again just die silently
stdnse.debug1("Response from vulners is not 200 but " .. status)
return
end
status, vulns = json.parse(response.body)
if status == true then
stdnse.debug1("Have successfully parsed json response.")
if vulns.result == "OK" then
stdnse.debug1("Response from vulners is OK.")
return make_links(vulns)
else
stdnse.debug1("Response from vulners is not OK with body:")
stdnse.debug1(response.body)
end
else
stdnse.debug1("Unable to parse json.")
stdnse.debug1(response.body)
end
end
---
-- Calls <code>get_results</code> for type="software"
--
-- It is called from <code>action</code> when nothing is found for the available cpe's
--
-- @param software string, the software name
-- @param version string, the software version
--
function get_vulns_by_software(software, version)
return get_results(software, version, "software")
end
---
-- Calls <code>get_results</code> for type="cpe"
--
-- Takes the version number from the given <code>cpe</code> and tries to get the result.
-- If none found, changes the given <code>cpe</code> a bit in order to possibly separate version number from the patch version
-- And makes another attempt.
-- Having failed returns an empty string.
--
-- @param cpe string, the given cpe
--
function get_vulns_by_cpe(cpe)
local vers_regexp=":([%d%.%-%_]+)([^:]*)$"
-- TODO[gmedian]: add check for cpe:/a as we might be interested in software rather than in OS (cpe:/o) and hardware (cpe:/h)
-- TODO[gmedian]: work not with the LAST part but simply with the THIRD one (according to cpe doc it must be version)
-- NOTE[gmedian]: take only the numeric part of the version
local _, _, vers, patch = cpe:find(vers_regexp)
if not vers then
return
end
stdnse.debug1("Got cpe " .. cpe .. " with version ".. vers .. " and patch " .. (patch or "nil"))
local output = get_results(cpe, vers, "cpe")
if not output then
if patch and patch ~= "" then
local new_cpe
new_cpe = cpe:gsub(vers_regexp, ":%1:%2")
stdnse.debug1("Forming new cpe for another attempt " .. new_cpe)
output = get_results(new_cpe, vers, "cpe")
end
end
return output
end
action = function(host, port)
local tab=stdnse.output_table()
local changed=false
local output
api_key = api_key or read_api_key_file()
if api_key == nil or api_key == "" then
stdnse.debug1("Api key is not set in either arg, ENV or file. Exiting.")
return
end
stdnse.debug1("Api file is set to " .. api_key_file)
stdnse.debug1("Host is set to " .. api_host)
stdnse.debug1("Api key is set to " .. api_key)
for i, cpe in ipairs(port.version.cpe) do
-- There are two cpe's for nginx, have to check them both
cpe = cpe:gsub(":nginx:nginx", ":igor_sysoev:nginx")
stdnse.debug1("Analyzing cpe " .. cpe)
output = get_vulns_by_cpe(cpe)
if cpe:find(":igor_sysoev:nginx") then
cpe = cpe:gsub(":igor_sysoev:nginx", ":nginx:nginx")
stdnse.debug1("Now going to analyze the second version " .. cpe)
local output_nginx=get_vulns_by_cpe(cpe)
if not output then
output = output_nginx
elseif output_nginx then
-- Need to merge two arrays, sorted by cvss
-- Presumably the former output contains by far less entries, so iterate on it and insert into the latter
-- pos will represent current position in output_nginx
local pos=1
for i, v in ipairs(output) do
while pos <= #output_nginx and output_nginx[pos].cvss >= v.cvss do
pos = pos + 1
end
table.insert(output_nginx, pos, v)
end
output = output_nginx
end
end
if output then
tab[cpe] = output
changed = true
end
end
-- NOTE[gmedian]: check whether we have pre-matched CPEs in registry (from http-vulners-regex.nse in particular)
if host.registry.vulners_cpe ~= nil and #host.registry.vulners_cpe > 0 then
stdnse.debug1("Found some CPEs in host registry.")
for i, cpe in ipairs(host.registry.vulners_cpe) do
-- avoid duplicates in output, will still however make redundant requests
if tab[cpe] == nil then
stdnse.debug1("Analyzing pre-matched cpe " .. cpe)
output = get_vulns_by_cpe(cpe)
if output then
tab[cpe] = output
changed = true
end
end
end
end
-- NOTE[gmedian]: issue request for type=software, but only when nothing is found so far
if not changed then
local vendor_version = port.version.product .. " " .. port.version.version
output = get_vulns_by_software(port.version.product, port.version.version)
if output then
tab[vendor_version] = output
changed = true
end
end
if (not changed) then
return
end
return tab
end