-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugins.py
377 lines (328 loc) · 9.78 KB
/
plugins.py
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
"""Add plugins here.
- bandit
- safety
- dodgy
- dlint
- semgrep
Functions return finding dictionary
```json
{
title: str
description: str
file: str
evidence: list[Line]
severity: Level
confidence: Level
line: int
_other: dict[str, str]
}
```
"""
from __future__ import annotations
import platform
import subprocess
from json import loads
from os import remove
from pathlib import Path
from typing import Any
from simplesecurity.excluded import EXCLUDED
from simplesecurity.level import Level
from simplesecurity.types import Finding, Line
THISDIR = str(Path(__file__).resolve().parent)
def _doSysExec(command: str, errorAsOut: bool = True) -> tuple[int, str]:
"""Execute a command and check for errors.
Args:
command (str): commands as a string
errorAsOut (bool, optional): redirect errors to stdout
Raises:
RuntimeWarning: throw a warning should there be a non exit code
Returns:
tuple[int, str]: tuple of return code (int) and stdout (str)
"""
with subprocess.Popen(
command,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT if errorAsOut else subprocess.PIPE,
encoding="utf-8",
errors="ignore",
) as process:
out = process.communicate()[0]
exitCode = process.returncode
return exitCode, out
def extractEvidence(desiredLine: int, file: str) -> list[Line]:
"""Grab evidence from the source file.
Args:
desiredLine (int): line to highlight
file (str): file to extract evidence from
Returns:
list[Line]: list of lines
"""
with open(file, encoding="utf-8", errors="ignore") as fileContents:
start = max(desiredLine - 3, 0)
content = []
try:
for line in range(start):
next(fileContents)
for line in range(start + 1, desiredLine + 3):
lineContent = next(fileContents).rstrip().replace("\t", " ")
content.append(
{"selected": line == desiredLine, "line": line, "content": lineContent}
)
except StopIteration:
pass
return content
def bandit(scanDir=".") -> list[Finding]:
"""Generate list of findings using bandit. requires bandit on the system path.
Params:
scanDir(str): select a scan directory (useful for cicd etc)
Raises:
RuntimeError: if bandit is not on the system path, then throw this
error
Returns:
list[Finding]: our findings dictionary
"""
if _doSysExec("bandit -h")[0] != 0:
raise RuntimeError("bandit is not on the system path")
findings = []
levelMap = {
"LOW": Level.LOW,
"MEDIUM": Level.MED,
"HIGH": Level.HIGH,
"UNDEFINED": Level.UNKNOWN,
}
results = loads(
_doSysExec(
f"bandit -lirq -x {','.join([f'./{x}' for x in EXCLUDED])} -f json {scanDir}", False
)[1]
)["results"]
for result in results:
file = result.get("filename").replace("\\", "/")
resultId = result.get("test_id")
line = result.get("line_number")
findings.append(
{
"id": resultId,
"title": f"{resultId}: {result.get('test_name')}",
"description": result.get("issue_text"),
"file": file,
"evidence": extractEvidence(line, file),
"severity": levelMap[result.get("issue_severity")],
"confidence": levelMap[result.get("issue_confidence")],
"line": line,
"_other": {
"more_info": result.get("more_info"),
"line_range": result.get("line_range"),
},
}
)
return findings
def _doSafetyProcessing(results: dict[str, Any]) -> list[Finding]:
findings = []
for result in results["vulnerabilities"]:
vulnerabilityId = result.get("vulnerability_id")
packageName = result.get("package_name")
advisory = result.get("advisory")
moreInfo = result.get("more_info_url")
affectedVersions = "; ".join(result.get("affected_versions"))
content = f"{packageName}, version(s)={affectedVersions}"
description = (
f"Vulnerability found in package {packageName},"
f"version(s)={affectedVersions}. {advisory}. More info available at {moreInfo}"
)
cvssv3Score = result.get("severity").get("cvssv3", {}).get("base_score", 0)
severity = Level.LOW
if cvssv3Score > 3.9:
severity = Level.MED
if cvssv3Score > 6.9:
severity = Level.HIGH
if cvssv3Score > 8.9:
severity = Level.CRIT
findings.append(
{
"id": vulnerabilityId,
"title": f"{vulnerabilityId}: {packageName}",
"description": description,
"file": "Project Requirements",
"evidence": [
{
"selected": True,
"line": 0,
"content": content,
}
],
"severity": severity,
"confidence": Level.HIGH,
"line": "Unknown",
"_other": {"id": vulnerabilityId, "affectedVersions": affectedVersions},
}
)
return findings
def _doPureSafety() -> dict[str, Any]:
safe = _doSysExec("safety check -r requirements.txt --json")[1]
if safe.startswith("Warning:"):
safe = _doSysExec("safety check --json")[1]
if safe.startswith("Warning:"):
raise RuntimeError("some error occurred: " + safe)
return loads(safe)
def safety(scanDir=".") -> list[Finding]:
"""Generate list of findings using _tool_. requires _tool_ on the system path.
Params:
scanDir(str): select a scan directory (useful for cicd etc)
Raises:
RuntimeError: if safety is not on the system path, then throw this
error
Returns:
list[Finding]: our findings dictionary
"""
_ = scanDir
if _doSysExec("safety --help")[0] != 0:
raise RuntimeError("safety is not on the system path")
pShow = _doSysExec("poetry show")
if not pShow[0]:
lines = pShow[1].splitlines(False)
data = []
for line in lines:
parts = line.replace("(!)", "").split()
if len(parts) > 1:
data.append(f"{parts[0]}=={parts[1]}")
else:
data.append(f"{parts[0]}")
with open("reqs.txt", "w", encoding="utf-8", errors="ignore") as reqs:
reqs.write("\n".join(data))
results = loads(_doSysExec("safety check -r reqs.txt --json")[1])
remove("reqs.txt")
elif not _doSysExec("pipreqs --savepath reqs.txt --encoding utf-8")[0]:
results = loads(_doSysExec("safety check -r reqs.txt --json")[1])
remove("reqs.txt")
else:
# Use plain old safety (this will miss optional dependencies)
results = _doPureSafety()
return _doSafetyProcessing(results)
def dodgy(scanDir=".") -> list[Finding]:
"""Generate list of findings using _tool_. requires _tool_ on the system path.
Params:
scanDir(str): select a scan directory (useful for cicd etc)
Raises:
RuntimeError: if dodgy is not on the system path, then throw this
error
Returns:
list[Finding]: our findings dictionary
"""
if _doSysExec("dodgy -h")[0] != 0:
raise RuntimeError("dodgy is not on the system path")
findings = []
rawResults = _doSysExec(f"dodgy {scanDir} -i {' '.join(EXCLUDED)}")[1]
results = loads(rawResults)["warnings"]
for result in results:
file = "./" + result.get("path").replace("\\", "/")
message = result.get("message")
findings.append(
{
"id": result.get("code"),
"title": message,
"description": message,
"file": file,
"evidence": extractEvidence(result.get("line"), file),
"severity": Level.MED,
"confidence": Level.MED,
"line": result.get("line"),
"_other": {},
}
)
return findings
def dlint(scanDir=".") -> list[Finding]:
"""Generate list of findings using _tool_. requires _tool_ on the system path.
Params:
scanDir(str): select a scan directory (useful for cicd etc)
Raises:
RuntimeError: if flake8 is not on the system path, then throw this
error
Returns:
list[Finding]: our findings dictionary
"""
if _doSysExec("flake8 -h")[0] != 0:
raise RuntimeError("flake8 is not on the system path")
findings = []
results = _doSysExec(
f"flake8 --select=DUO --exclude {','.join(EXCLUDED)} --format=codeclimate {scanDir}"
)[1].splitlines(False)
jsonResults = loads("".join(results)) if len(results) > 0 else {}
levelMap = {
"info": Level.LOW,
"minor": Level.MED,
"major": Level.MED,
"critical": Level.CRIT,
"blocker": Level.CRIT,
}
for filePath, scanResults in jsonResults.items():
for result in scanResults:
message = f"{result.get('check_name')}: " f"{result.get('description')}"
positions = result.get("location", {}).get("positions", {})
line = positions.get("begin", {}).get("line", 0)
findings.append(
{
"id": result.get("check_name"),
"title": message,
"description": message,
"file": filePath,
"evidence": extractEvidence(
line,
filePath,
),
"severity": levelMap[result.get("severity")],
"confidence": Level.MED,
"line": line,
"_other": {
"start": line,
"end": positions.get("end", {}).get("line", 0),
"fingerprint": result.get("fingerprint"),
},
}
)
return findings
def semgrep(scanDir=".") -> list[Finding]:
"""Generate list of findings using for semgrep. Requires semgrep on the
system path (wsl in windows).
Raises:
RuntimeError: if semgrep is not on the system path, then throw this
error
Returns:
list[Finding]: our findings dictionary
"""
findings = []
if platform.system() == "Windows":
raise RuntimeError("semgrep is not supported on windows")
if _doSysExec("semgrep --help")[0] != 0:
raise RuntimeError("semgrep is not on the system path")
sgExclude = ["--exclude {x}" for x in EXCLUDED]
results = loads(
_doSysExec(
f"semgrep -f {THISDIR}/semgrep_sec.yaml {scanDir} {' '.join(sgExclude)} "
"-q --json --no-rewrite-rule-ids"
)[1].strip()
)["results"]
levelMap = {"INFO": Level.LOW, "WARNING": Level.MED, "ERROR": Level.HIGH}
for result in results:
filePath = result.get("Target").replace("\\", "/")
file = f"{scanDir}/{filePath}"
resultId = result.get("check_id", "")
extras = result.get("extra", {})
line = result.get("start", {}).get("line", 0)
findings.append(
{
"id": resultId,
"title": resultId.split(".")[-1],
"description": extras("message").strip(),
"file": file,
"evidence": extractEvidence(line, file),
"severity": levelMap[extras("severity")],
"confidence": Level.HIGH,
"line": line,
"_other": {
"end": result.get("end"),
"extra": extras,
},
}
)
return findings