-
Notifications
You must be signed in to change notification settings - Fork 7
/
board.json
92 lines (92 loc) · 2.55 KB
/
board.json
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
{
"widgets": [
{
"id": "99644fe4-ee6c-4595-96d4-e221b0469a29",
"title": "Potential cost of data breach in public-facing and unencrypted data stores",
"type": "number",
"config": {
"queries": [
{
"name": "query1",
"query": "Find Finding with open!=false and hasSensitiveData=true and \n numericSeverity>5 and extension!='js' and\n (public=true or encrypted!=true)\nreturn sum(Finding.detectionsCount) * 142 as value"
}
],
"settings": {
"number": {
"error": {
"limitCondition": "greaterThanOrEqualTo",
"val1": 1000000
},
"warning": {
"limitCondition": "between",
"val2": 999999,
"val1": 100000
},
"currencyFormat": "$"
}
}
}
},
{
"id": "e6b14510-23a8-4de9-a7f5-b50b8b26d606",
"title": "Sensitive data that may be publicly accessible or unencrypted",
"type": "table",
"config": {
"queries": [
{
"name": "query1",
"query": "Find unique Finding with open!=false and hasSensitiveData=true \n and numericSeverity>5 and extension!='js' and\n (public=true or encrypted!=true)\nreturn \n Finding._type, Finding.name, Finding.severity, Finding.file, Finding.path,\n Finding.PII, Finding.PCI, Finding.secret"
}
]
}
},
{
"id": "0341141c-81dd-46e6-bf74-02518b1f190b",
"title": "Sensitive data records in public or unencrypted data stores",
"type": "number",
"config": {
"queries": [
{
"name": "query1",
"query": "Find Finding with open!=false and hasSensitiveData=true and \n numericSeverity>5 and extension!='js' and\n (public=true or encrypted!=true)\nreturn sum(Finding.detectionsCount) as value"
}
]
}
}
],
"layouts": {
"sm": [],
"xs": [],
"lg": [
{
"static": false,
"w": 7,
"moved": false,
"h": 2,
"x": 5,
"y": 0,
"i": "99644fe4-ee6c-4595-96d4-e221b0469a29"
},
{
"static": false,
"w": 12,
"moved": false,
"h": 5,
"x": 0,
"y": 2,
"i": "e6b14510-23a8-4de9-a7f5-b50b8b26d606"
},
{
"static": false,
"w": 5,
"moved": false,
"h": 2,
"x": 0,
"y": 0,
"i": "0341141c-81dd-46e6-bf74-02518b1f190b"
}
],
"xl": [],
"md": []
}
}