-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcve_trending.nim
49 lines (38 loc) · 1.11 KB
/
cve_trending.nim
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
import
httpclient,
random,
sequtils,
strutils
from xmltree import `$`, innerText
from htmlparser import parseHtml
from streams import newStringStream
import nimquery
import
lib/httputils/faker
const
cveStalkerTargetUrl = "https://cvestalker.com/daily.php"
minHeatScore = 20
type
TrendingCve = object
cveId: string
heatScore: int
when isMainModule:
var client = newHttpClient(userAgent = fakeUserAgent())
let content = client.getContent(cveStalkerTargetUrl)
let xml = parseHtml(content)
# TODO: Check health of page that all elements exist
let elements = xml.querySelectorAll("tr:not(:first-child)")
var cves = newSeq[TrendingCve]()
for el in elements:
let cveId = el.querySelector("td:nth-child(2) > a:first-child").innerText()
var heatScore: int
try:
heatScore = parseInt(el.querySelector("td:nth-child(3)").innerText())
except:
raise
echo "could not convert heat score: " & cveId
continue
if heatScore < minHeatScore: continue
cves.add TrendingCve(cveId: cveId, heatScore: heatScore)
# FIXME: Fetch Cve if not exists in db
echo cves