@clear-capabilities/agentic-security-scanner 0.76.1 → 0.78.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/bin/.agentic-security/findings.json +320 -9
  2. package/bin/.agentic-security/last-scan.json +320 -9
  3. package/bin/.agentic-security/last-scan.json.sig +1 -1
  4. package/bin/.agentic-security/scan-history.json +17 -377
  5. package/bin/.agentic-security/streak.json +11 -16
  6. package/bin/agentic-security.js +33 -2
  7. package/dist/178.index.js +1 -1
  8. package/dist/384.index.js +1 -1
  9. package/dist/637.index.js +1 -1
  10. package/dist/718.index.js +106 -0
  11. package/dist/824.index.js +126 -0
  12. package/dist/838.index.js +1 -1
  13. package/dist/agentic-security.mjs +32 -32
  14. package/dist/agentic-security.mjs.sha256 +1 -1
  15. package/package.json +7 -7
  16. package/src/.agentic-security/findings.json +5731 -3933
  17. package/src/.agentic-security/last-scan.json +5731 -3933
  18. package/src/.agentic-security/last-scan.json.sig +1 -1
  19. package/src/.agentic-security/scan-history.json +2533 -887
  20. package/src/.agentic-security/streak.json +11 -16
  21. package/src/dataflow/.agentic-security/findings.json +52 -24
  22. package/src/dataflow/.agentic-security/last-scan.json +52 -24
  23. package/src/dataflow/.agentic-security/last-scan.json.sig +1 -1
  24. package/src/dataflow/.agentic-security/scan-history.json +101 -134
  25. package/src/dataflow/.agentic-security/streak.json +8 -10
  26. package/src/dataflow/async-sequencing.js +16 -7
  27. package/src/dataflow/builtin-summaries.js +131 -0
  28. package/src/dataflow/catalog.js +107 -0
  29. package/src/dataflow/cross-repo.js +75 -1
  30. package/src/dataflow/engine.js +129 -0
  31. package/src/dataflow/implicit-flow.js +24 -6
  32. package/src/dataflow/stub-aware-filter.js +69 -11
  33. package/src/dataflow/summaries.js +28 -3
  34. package/src/engine-parallel.js +70 -0
  35. package/src/engine.js +165 -15
  36. package/src/ir/.agentic-security/findings.json +757 -16
  37. package/src/ir/.agentic-security/last-scan.json +757 -16
  38. package/src/ir/.agentic-security/last-scan.json.sig +1 -1
  39. package/src/ir/.agentic-security/scan-history.json +545 -138
  40. package/src/ir/.agentic-security/streak.json +11 -13
  41. package/src/ir/index.js +22 -1
  42. package/src/ir/parser-go.js +403 -0
  43. package/src/ir/parser-js.js +2 -0
  44. package/src/ir/parser-php.js +330 -0
  45. package/src/ir/parser-py.helper.py +137 -11
  46. package/src/ir/parser-rb.js +309 -0
  47. package/src/posture/.agentic-security/findings.json +407 -84
  48. package/src/posture/.agentic-security/last-scan.json +407 -84
  49. package/src/posture/.agentic-security/last-scan.json.sig +1 -1
  50. package/src/posture/.agentic-security/scan-history.json +16 -4923
  51. package/src/posture/.agentic-security/streak.json +10 -14
  52. package/src/posture/calibration.js +14 -0
  53. package/src/posture/triage.js +13 -0
  54. package/src/report/.agentic-security/findings.json +6 -5
  55. package/src/report/.agentic-security/last-scan.json +6 -5
  56. package/src/report/.agentic-security/last-scan.json.sig +1 -1
  57. package/src/report/.agentic-security/scan-history.json +3 -300
  58. package/src/report/.agentic-security/streak.json +7 -8
  59. package/src/report/index.js +23 -2
  60. package/src/sast/.agentic-security/findings.json +195 -56
  61. package/src/sast/.agentic-security/last-scan.json +195 -56
  62. package/src/sast/.agentic-security/last-scan.json.sig +1 -1
  63. package/src/sast/.agentic-security/scan-history.json +14 -394
  64. package/src/sast/.agentic-security/streak.json +10 -13
  65. package/src/sast/cache-poisoning.js +77 -0
  66. package/src/sast/comparison-safety.js +73 -0
  67. package/src/sast/db-taint.js +54 -0
  68. package/src/sast/graphql.js +127 -0
  69. package/src/sast/llm-stored-prompt.js +57 -0
  70. package/src/sast/mutation-xss.js +43 -0
  71. package/src/sast/nosql-injection.js +5 -0
  72. package/src/sast/null-byte-injection.js +76 -0
  73. package/src/sast/redos-nfa.js +338 -0
  74. package/src/sast/sensitive-data-logging.js +73 -0
  75. package/src/sast/weak-password-hash.js +77 -0
  76. package/src/sast/weak-randomness.js +100 -0
  77. package/src/sca/.agentic-security/findings.json +502 -11
  78. package/src/sca/.agentic-security/last-scan.json +502 -11
  79. package/src/sca/.agentic-security/last-scan.json.sig +1 -1
  80. package/src/sca/.agentic-security/scan-history.json +19 -1
  81. package/src/sca/.agentic-security/streak.json +6 -6
  82. package/src/sca/llm-function-extract.js +107 -0
  83. package/src/sca/vendor-detect.js +91 -0
  84. package/dist/218.index.js +0 -793
  85. package/dist/601.index.js +0 -1038
  86. package/dist/634.index.js +0 -1892
  87. package/src/integrations/.agentic-security/findings.json +0 -1504
  88. package/src/integrations/.agentic-security/last-scan.json +0 -1504
  89. package/src/integrations/.agentic-security/scan-history.json +0 -40
  90. package/src/integrations/.agentic-security/streak.json +0 -21
  91. package/src/llm-validator/.agentic-security/findings.json +0 -1891
  92. package/src/llm-validator/.agentic-security/last-scan.json +0 -1891
  93. package/src/llm-validator/.agentic-security/last-scan.json.sig +0 -1
  94. package/src/llm-validator/.agentic-security/scan-history.json +0 -168
  95. package/src/llm-validator/.agentic-security/streak.json +0 -20
  96. package/src/lsp/.agentic-security/findings.json +0 -28
  97. package/src/lsp/.agentic-security/last-scan.json +0 -28
  98. package/src/lsp/.agentic-security/scan-history.json +0 -79
  99. package/src/lsp/.agentic-security/streak.json +0 -22
  100. package/src/mcp/.agentic-security/findings.json +0 -8403
  101. package/src/mcp/.agentic-security/last-scan.json +0 -8403
  102. package/src/mcp/.agentic-security/last-scan.json.sig +0 -1
  103. package/src/mcp/.agentic-security/scan-history.json +0 -1182
  104. package/src/mcp/.agentic-security/streak.json +0 -22
  105. package/src/sast/bench-shape/.agentic-security/findings.json +0 -28
  106. package/src/sast/bench-shape/.agentic-security/last-scan.json +0 -28
  107. package/src/sast/bench-shape/.agentic-security/scan-history.json +0 -24
  108. package/src/sast/bench-shape/.agentic-security/streak.json +0 -22
@@ -1,1182 +0,0 @@
1
- [
2
- {
3
- "timestamp": "2026-05-19T20:18:51.483Z",
4
- "label": "scan",
5
- "total": 17,
6
- "critical": 0,
7
- "high": 0,
8
- "medium": 17,
9
- "low": 0,
10
- "kev": 0,
11
- "ids": [
12
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
13
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
14
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
15
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
16
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
17
- "struct:server.js:35:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
18
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
19
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
20
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
21
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
22
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
23
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
24
- "struct:tools.js:338:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
25
- "struct:tools.js:453:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
26
- "toctou-fs:audit.js:34",
27
- "toctou-fs:audit.js:66",
28
- "toctou-fs:tools.js:117"
29
- ]
30
- },
31
- {
32
- "timestamp": "2026-05-19T20:19:03.411Z",
33
- "label": "scan",
34
- "total": 17,
35
- "critical": 0,
36
- "high": 0,
37
- "medium": 17,
38
- "low": 0,
39
- "kev": 0,
40
- "ids": [
41
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
42
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
43
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
44
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
45
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
46
- "struct:server.js:35:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
47
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
48
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
49
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
50
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
51
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
52
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
53
- "struct:tools.js:338:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
54
- "struct:tools.js:453:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
55
- "toctou-fs:audit.js:34",
56
- "toctou-fs:audit.js:66",
57
- "toctou-fs:tools.js:117"
58
- ]
59
- },
60
- {
61
- "timestamp": "2026-05-19T20:19:22.417Z",
62
- "label": "scan",
63
- "total": 17,
64
- "critical": 0,
65
- "high": 0,
66
- "medium": 17,
67
- "low": 0,
68
- "kev": 0,
69
- "ids": [
70
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
71
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
72
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
73
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
74
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
75
- "struct:server.js:35:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
76
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
77
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
78
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
79
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
80
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
81
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
82
- "struct:tools.js:340:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
83
- "struct:tools.js:455:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
84
- "toctou-fs:audit.js:34",
85
- "toctou-fs:audit.js:66",
86
- "toctou-fs:tools.js:117"
87
- ]
88
- },
89
- {
90
- "timestamp": "2026-05-19T20:21:06.260Z",
91
- "label": "scan",
92
- "total": 18,
93
- "critical": 0,
94
- "high": 0,
95
- "medium": 18,
96
- "low": 0,
97
- "kev": 0,
98
- "ids": [
99
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
100
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
101
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
102
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
103
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
104
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
105
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
106
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
107
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
108
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
109
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
110
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
111
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
112
- "struct:tools.js:340:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
113
- "struct:tools.js:455:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
114
- "toctou-fs:audit.js:34",
115
- "toctou-fs:audit.js:66",
116
- "toctou-fs:tools.js:117"
117
- ]
118
- },
119
- {
120
- "timestamp": "2026-05-19T21:20:12.571Z",
121
- "label": "scan",
122
- "total": 18,
123
- "critical": 0,
124
- "high": 0,
125
- "medium": 18,
126
- "low": 0,
127
- "kev": 0,
128
- "ids": [
129
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
130
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
131
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
132
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
133
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
134
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
135
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
136
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
137
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
138
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
139
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
140
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
141
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
142
- "struct:tools.js:340:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
143
- "struct:tools.js:455:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
144
- "toctou-fs:audit.js:34",
145
- "toctou-fs:audit.js:66",
146
- "toctou-fs:tools.js:117"
147
- ]
148
- },
149
- {
150
- "timestamp": "2026-05-19T21:25:35.015Z",
151
- "label": "scan",
152
- "total": 23,
153
- "critical": 0,
154
- "high": 0,
155
- "medium": 23,
156
- "low": 0,
157
- "kev": 0,
158
- "ids": [
159
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
160
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
161
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
162
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
163
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
164
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
165
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
166
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
167
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
168
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
169
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
170
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
171
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
172
- "struct:tools.js:340:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
173
- "struct:tools.js:455:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
174
- "struct:tools.js:516:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
175
- "struct:tools.js:518:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
176
- "struct:tools.js:523:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
177
- "struct:tools.js:526:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
178
- "toctou-fs:audit.js:34",
179
- "toctou-fs:audit.js:66",
180
- "toctou-fs:tools.js:117",
181
- "toctou-fs:tools.js:523"
182
- ]
183
- },
184
- {
185
- "timestamp": "2026-05-19T21:25:45.592Z",
186
- "label": "scan",
187
- "total": 23,
188
- "critical": 0,
189
- "high": 0,
190
- "medium": 23,
191
- "low": 0,
192
- "kev": 0,
193
- "ids": [
194
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
195
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
196
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
197
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
198
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
199
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
200
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
201
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
202
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
203
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
204
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
205
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
206
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
207
- "struct:tools.js:340:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
208
- "struct:tools.js:455:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
209
- "struct:tools.js:516:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
210
- "struct:tools.js:518:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
211
- "struct:tools.js:523:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
212
- "struct:tools.js:526:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
213
- "toctou-fs:audit.js:34",
214
- "toctou-fs:audit.js:66",
215
- "toctou-fs:tools.js:117",
216
- "toctou-fs:tools.js:523"
217
- ]
218
- },
219
- {
220
- "timestamp": "2026-05-19T21:26:27.903Z",
221
- "label": "scan",
222
- "total": 23,
223
- "critical": 0,
224
- "high": 0,
225
- "medium": 23,
226
- "low": 0,
227
- "kev": 0,
228
- "ids": [
229
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
230
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
231
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
232
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
233
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
234
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
235
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
236
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
237
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
238
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
239
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
240
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
241
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
242
- "struct:tools.js:340:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
243
- "struct:tools.js:455:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
244
- "struct:tools.js:523:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
245
- "struct:tools.js:525:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
246
- "struct:tools.js:530:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
247
- "struct:tools.js:533:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
248
- "toctou-fs:audit.js:34",
249
- "toctou-fs:audit.js:66",
250
- "toctou-fs:tools.js:117",
251
- "toctou-fs:tools.js:530"
252
- ]
253
- },
254
- {
255
- "timestamp": "2026-05-19T21:26:39.195Z",
256
- "label": "scan",
257
- "total": 23,
258
- "critical": 0,
259
- "high": 0,
260
- "medium": 23,
261
- "low": 0,
262
- "kev": 0,
263
- "ids": [
264
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
265
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
266
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
267
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
268
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
269
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
270
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
271
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
272
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
273
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
274
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
275
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
276
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
277
- "struct:tools.js:340:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
278
- "struct:tools.js:455:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
279
- "struct:tools.js:523:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
280
- "struct:tools.js:525:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
281
- "struct:tools.js:530:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
282
- "struct:tools.js:533:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
283
- "toctou-fs:audit.js:34",
284
- "toctou-fs:audit.js:66",
285
- "toctou-fs:tools.js:117",
286
- "toctou-fs:tools.js:530"
287
- ]
288
- },
289
- {
290
- "timestamp": "2026-05-19T21:28:12.702Z",
291
- "label": "scan",
292
- "total": 23,
293
- "critical": 0,
294
- "high": 0,
295
- "medium": 23,
296
- "low": 0,
297
- "kev": 0,
298
- "ids": [
299
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
300
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
301
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
302
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
303
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
304
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
305
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
306
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
307
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
308
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
309
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
310
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
311
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
312
- "struct:tools.js:340:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
313
- "struct:tools.js:455:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
314
- "struct:tools.js:530:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
315
- "struct:tools.js:532:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
316
- "struct:tools.js:537:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
317
- "struct:tools.js:540:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
318
- "toctou-fs:audit.js:34",
319
- "toctou-fs:audit.js:66",
320
- "toctou-fs:tools.js:117",
321
- "toctou-fs:tools.js:537"
322
- ]
323
- },
324
- {
325
- "timestamp": "2026-05-19T21:52:27.325Z",
326
- "label": "scan",
327
- "total": 23,
328
- "critical": 0,
329
- "high": 0,
330
- "medium": 23,
331
- "low": 0,
332
- "kev": 0,
333
- "ids": [
334
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
335
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
336
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
337
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
338
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
339
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
340
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
341
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
342
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
343
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
344
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
345
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
346
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
347
- "struct:tools.js:355:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
348
- "struct:tools.js:470:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
349
- "struct:tools.js:545:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
350
- "struct:tools.js:547:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
351
- "struct:tools.js:552:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
352
- "struct:tools.js:555:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
353
- "toctou-fs:audit.js:34",
354
- "toctou-fs:audit.js:66",
355
- "toctou-fs:tools.js:117",
356
- "toctou-fs:tools.js:552"
357
- ]
358
- },
359
- {
360
- "timestamp": "2026-05-19T21:53:39.250Z",
361
- "label": "scan",
362
- "total": 23,
363
- "critical": 0,
364
- "high": 0,
365
- "medium": 23,
366
- "low": 0,
367
- "kev": 0,
368
- "ids": [
369
- "struct:audit.js:34:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
370
- "struct:audit.js:36:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
371
- "struct:audit.js:57:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
372
- "struct:audit.js:66:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
373
- "struct:audit.js:67:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
374
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
375
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
376
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
377
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
378
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
379
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
380
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
381
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
382
- "struct:tools.js:355:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
383
- "struct:tools.js:490:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
384
- "struct:tools.js:565:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
385
- "struct:tools.js:567:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
386
- "struct:tools.js:572:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
387
- "struct:tools.js:575:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
388
- "toctou-fs:audit.js:34",
389
- "toctou-fs:audit.js:66",
390
- "toctou-fs:tools.js:117",
391
- "toctou-fs:tools.js:572"
392
- ]
393
- },
394
- {
395
- "timestamp": "2026-05-19T21:57:16.356Z",
396
- "label": "scan",
397
- "total": 23,
398
- "critical": 0,
399
- "high": 0,
400
- "medium": 23,
401
- "low": 0,
402
- "kev": 0,
403
- "ids": [
404
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
405
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
406
- "struct:audit.js:68:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
407
- "struct:audit.js:77:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
408
- "struct:audit.js:78:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
409
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
410
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
411
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
412
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
413
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
414
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
415
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
416
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
417
- "struct:tools.js:355:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
418
- "struct:tools.js:490:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
419
- "struct:tools.js:565:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
420
- "struct:tools.js:567:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
421
- "struct:tools.js:572:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
422
- "struct:tools.js:575:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
423
- "toctou-fs:audit.js:45",
424
- "toctou-fs:audit.js:77",
425
- "toctou-fs:tools.js:117",
426
- "toctou-fs:tools.js:572"
427
- ]
428
- },
429
- {
430
- "timestamp": "2026-05-19T21:57:31.768Z",
431
- "label": "scan",
432
- "total": 24,
433
- "critical": 0,
434
- "high": 0,
435
- "medium": 24,
436
- "low": 0,
437
- "kev": 0,
438
- "ids": [
439
- "struct:audit.js:100:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
440
- "struct:audit.js:114:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
441
- "struct:audit.js:115:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
442
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
443
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
444
- "struct:audit.js:89:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
445
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
446
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
447
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
448
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
449
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
450
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
451
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
452
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
453
- "struct:tools.js:355:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
454
- "struct:tools.js:490:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
455
- "struct:tools.js:565:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
456
- "struct:tools.js:567:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
457
- "struct:tools.js:572:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
458
- "struct:tools.js:575:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
459
- "toctou-fs:audit.js:114",
460
- "toctou-fs:audit.js:45",
461
- "toctou-fs:tools.js:117",
462
- "toctou-fs:tools.js:572"
463
- ]
464
- },
465
- {
466
- "timestamp": "2026-05-19T21:57:38.971Z",
467
- "label": "scan",
468
- "total": 24,
469
- "critical": 0,
470
- "high": 0,
471
- "medium": 24,
472
- "low": 0,
473
- "kev": 0,
474
- "ids": [
475
- "struct:audit.js:100:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
476
- "struct:audit.js:114:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
477
- "struct:audit.js:115:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
478
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
479
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
480
- "struct:audit.js:89:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
481
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
482
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
483
- "struct:tools.js:117:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
484
- "struct:tools.js:132:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
485
- "struct:tools.js:147:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
486
- "struct:tools.js:148:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
487
- "struct:tools.js:189:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
488
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
489
- "struct:tools.js:355:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
490
- "struct:tools.js:490:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
491
- "struct:tools.js:565:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
492
- "struct:tools.js:567:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
493
- "struct:tools.js:572:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
494
- "struct:tools.js:575:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
495
- "toctou-fs:audit.js:114",
496
- "toctou-fs:audit.js:45",
497
- "toctou-fs:tools.js:117",
498
- "toctou-fs:tools.js:572"
499
- ]
500
- },
501
- {
502
- "timestamp": "2026-05-19T22:46:30.520Z",
503
- "label": "scan",
504
- "total": 27,
505
- "critical": 0,
506
- "high": 0,
507
- "medium": 27,
508
- "low": 0,
509
- "kev": 0,
510
- "ids": [
511
- "struct:audit.js:100:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
512
- "struct:audit.js:114:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
513
- "struct:audit.js:115:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
514
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
515
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
516
- "struct:audit.js:89:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
517
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
518
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
519
- "struct:tools.js:145:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
520
- "struct:tools.js:149:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
521
- "struct:tools.js:153:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
522
- "struct:tools.js:182:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
523
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
524
- "struct:tools.js:212:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
525
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
526
- "struct:tools.js:254:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
527
- "struct:tools.js:262:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
528
- "struct:tools.js:420:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
529
- "struct:tools.js:555:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
530
- "struct:tools.js:630:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
531
- "struct:tools.js:632:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
532
- "struct:tools.js:637:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
533
- "struct:tools.js:640:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
534
- "toctou-fs:audit.js:114",
535
- "toctou-fs:audit.js:45",
536
- "toctou-fs:tools.js:182",
537
- "toctou-fs:tools.js:637"
538
- ]
539
- },
540
- {
541
- "timestamp": "2026-05-19T22:47:05.626Z",
542
- "label": "scan",
543
- "total": 32,
544
- "critical": 0,
545
- "high": 0,
546
- "medium": 32,
547
- "low": 0,
548
- "kev": 0,
549
- "ids": [
550
- "struct:audit.js:100:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
551
- "struct:audit.js:114:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
552
- "struct:audit.js:115:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
553
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
554
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
555
- "struct:audit.js:89:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
556
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
557
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
558
- "struct:tools.js:145:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
559
- "struct:tools.js:149:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
560
- "struct:tools.js:153:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
561
- "struct:tools.js:182:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
562
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
563
- "struct:tools.js:212:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
564
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
565
- "struct:tools.js:254:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
566
- "struct:tools.js:262:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
567
- "struct:tools.js:420:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
568
- "struct:tools.js:555:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
569
- "struct:tools.js:630:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
570
- "struct:tools.js:632:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
571
- "struct:tools.js:637:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
572
- "struct:tools.js:640:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
573
- "struct:tools.js:719:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
574
- "struct:tools.js:728:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
575
- "struct:tools.js:757:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
576
- "struct:tools.js:759:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
577
- "toctou-fs:audit.js:114",
578
- "toctou-fs:audit.js:45",
579
- "toctou-fs:tools.js:182",
580
- "toctou-fs:tools.js:637",
581
- "toctou-fs:tools.js:719"
582
- ]
583
- },
584
- {
585
- "timestamp": "2026-05-19T22:49:49.179Z",
586
- "label": "scan",
587
- "total": 34,
588
- "critical": 0,
589
- "high": 0,
590
- "medium": 34,
591
- "low": 0,
592
- "kev": 0,
593
- "ids": [
594
- "struct:audit.js:100:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
595
- "struct:audit.js:114:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
596
- "struct:audit.js:115:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
597
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
598
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
599
- "struct:audit.js:89:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
600
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
601
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
602
- "struct:tools.js:145:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
603
- "struct:tools.js:149:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
604
- "struct:tools.js:153:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
605
- "struct:tools.js:182:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
606
- "struct:tools.js:197:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
607
- "struct:tools.js:212:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
608
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
609
- "struct:tools.js:265:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
610
- "struct:tools.js:304:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
611
- "struct:tools.js:312:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
612
- "struct:tools.js:470:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
613
- "struct:tools.js:605:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
614
- "struct:tools.js:680:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
615
- "struct:tools.js:682:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
616
- "struct:tools.js:687:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
617
- "struct:tools.js:690:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
618
- "struct:tools.js:769:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
619
- "struct:tools.js:778:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
620
- "struct:tools.js:807:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
621
- "struct:tools.js:809:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
622
- "toctou-fs:audit.js:114",
623
- "toctou-fs:audit.js:45",
624
- "toctou-fs:tools.js:182",
625
- "toctou-fs:tools.js:304",
626
- "toctou-fs:tools.js:687",
627
- "toctou-fs:tools.js:769"
628
- ]
629
- },
630
- {
631
- "timestamp": "2026-05-19T22:50:07.374Z",
632
- "label": "scan",
633
- "total": 34,
634
- "critical": 0,
635
- "high": 0,
636
- "medium": 34,
637
- "low": 0,
638
- "kev": 0,
639
- "ids": [
640
- "struct:audit.js:100:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
641
- "struct:audit.js:114:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
642
- "struct:audit.js:115:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
643
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
644
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
645
- "struct:audit.js:89:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
646
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
647
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
648
- "struct:tools.js:146:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
649
- "struct:tools.js:150:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
650
- "struct:tools.js:154:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
651
- "struct:tools.js:183:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
652
- "struct:tools.js:198:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
653
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
654
- "struct:tools.js:214:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
655
- "struct:tools.js:266:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
656
- "struct:tools.js:305:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
657
- "struct:tools.js:313:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
658
- "struct:tools.js:471:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
659
- "struct:tools.js:606:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
660
- "struct:tools.js:681:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
661
- "struct:tools.js:683:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
662
- "struct:tools.js:688:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
663
- "struct:tools.js:691:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
664
- "struct:tools.js:770:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
665
- "struct:tools.js:779:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
666
- "struct:tools.js:808:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
667
- "struct:tools.js:810:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
668
- "toctou-fs:audit.js:114",
669
- "toctou-fs:audit.js:45",
670
- "toctou-fs:tools.js:183",
671
- "toctou-fs:tools.js:305",
672
- "toctou-fs:tools.js:688",
673
- "toctou-fs:tools.js:770"
674
- ]
675
- },
676
- {
677
- "timestamp": "2026-05-19T22:50:28.102Z",
678
- "label": "scan",
679
- "total": 34,
680
- "critical": 0,
681
- "high": 0,
682
- "medium": 34,
683
- "low": 0,
684
- "kev": 0,
685
- "ids": [
686
- "struct:audit.js:100:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
687
- "struct:audit.js:114:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
688
- "struct:audit.js:115:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
689
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
690
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
691
- "struct:audit.js:89:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
692
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
693
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
694
- "struct:tools.js:146:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
695
- "struct:tools.js:150:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
696
- "struct:tools.js:154:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
697
- "struct:tools.js:183:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
698
- "struct:tools.js:198:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
699
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
700
- "struct:tools.js:214:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
701
- "struct:tools.js:266:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
702
- "struct:tools.js:305:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
703
- "struct:tools.js:313:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
704
- "struct:tools.js:487:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
705
- "struct:tools.js:622:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
706
- "struct:tools.js:697:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
707
- "struct:tools.js:699:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
708
- "struct:tools.js:704:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
709
- "struct:tools.js:707:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
710
- "struct:tools.js:786:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
711
- "struct:tools.js:795:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
712
- "struct:tools.js:824:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
713
- "struct:tools.js:826:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
714
- "toctou-fs:audit.js:114",
715
- "toctou-fs:audit.js:45",
716
- "toctou-fs:tools.js:183",
717
- "toctou-fs:tools.js:305",
718
- "toctou-fs:tools.js:704",
719
- "toctou-fs:tools.js:786"
720
- ]
721
- },
722
- {
723
- "timestamp": "2026-05-19T22:50:58.488Z",
724
- "label": "scan",
725
- "total": 34,
726
- "critical": 0,
727
- "high": 0,
728
- "medium": 34,
729
- "low": 0,
730
- "kev": 0,
731
- "ids": [
732
- "struct:audit.js:100:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
733
- "struct:audit.js:114:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
734
- "struct:audit.js:115:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
735
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
736
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
737
- "struct:audit.js:89:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
738
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
739
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
740
- "struct:tools.js:146:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
741
- "struct:tools.js:150:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
742
- "struct:tools.js:154:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
743
- "struct:tools.js:183:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
744
- "struct:tools.js:198:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
745
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
746
- "struct:tools.js:214:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
747
- "struct:tools.js:266:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
748
- "struct:tools.js:305:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
749
- "struct:tools.js:313:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
750
- "struct:tools.js:506:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
751
- "struct:tools.js:641:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
752
- "struct:tools.js:716:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
753
- "struct:tools.js:718:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
754
- "struct:tools.js:723:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
755
- "struct:tools.js:726:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
756
- "struct:tools.js:805:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
757
- "struct:tools.js:814:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
758
- "struct:tools.js:843:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
759
- "struct:tools.js:845:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
760
- "toctou-fs:audit.js:114",
761
- "toctou-fs:audit.js:45",
762
- "toctou-fs:tools.js:183",
763
- "toctou-fs:tools.js:305",
764
- "toctou-fs:tools.js:723",
765
- "toctou-fs:tools.js:805"
766
- ]
767
- },
768
- {
769
- "timestamp": "2026-05-19T22:53:00.859Z",
770
- "label": "scan",
771
- "total": 34,
772
- "critical": 0,
773
- "high": 0,
774
- "medium": 34,
775
- "low": 0,
776
- "kev": 0,
777
- "ids": [
778
- "struct:audit.js:100:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
779
- "struct:audit.js:114:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
780
- "struct:audit.js:115:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
781
- "struct:audit.js:45:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
782
- "struct:audit.js:47:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
783
- "struct:audit.js:89:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
784
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
785
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
786
- "struct:tools.js:146:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
787
- "struct:tools.js:150:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
788
- "struct:tools.js:154:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
789
- "struct:tools.js:183:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
790
- "struct:tools.js:198:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
791
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
792
- "struct:tools.js:214:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
793
- "struct:tools.js:266:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
794
- "struct:tools.js:305:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
795
- "struct:tools.js:313:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
796
- "struct:tools.js:506:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
797
- "struct:tools.js:641:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
798
- "struct:tools.js:716:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
799
- "struct:tools.js:718:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
800
- "struct:tools.js:723:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
801
- "struct:tools.js:726:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
802
- "struct:tools.js:805:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
803
- "struct:tools.js:814:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
804
- "struct:tools.js:843:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
805
- "struct:tools.js:845:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
806
- "toctou-fs:audit.js:114",
807
- "toctou-fs:audit.js:45",
808
- "toctou-fs:tools.js:183",
809
- "toctou-fs:tools.js:305",
810
- "toctou-fs:tools.js:723",
811
- "toctou-fs:tools.js:805"
812
- ]
813
- },
814
- {
815
- "timestamp": "2026-05-19T22:59:41.672Z",
816
- "label": "scan",
817
- "total": 34,
818
- "critical": 0,
819
- "high": 0,
820
- "medium": 34,
821
- "low": 0,
822
- "kev": 0,
823
- "ids": [
824
- "struct:audit.js:107:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
825
- "struct:audit.js:121:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
826
- "struct:audit.js:122:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
827
- "struct:audit.js:52:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
828
- "struct:audit.js:54:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
829
- "struct:audit.js:96:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
830
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
831
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
832
- "struct:tools.js:146:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
833
- "struct:tools.js:150:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
834
- "struct:tools.js:154:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
835
- "struct:tools.js:183:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
836
- "struct:tools.js:198:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
837
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
838
- "struct:tools.js:214:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
839
- "struct:tools.js:266:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
840
- "struct:tools.js:305:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
841
- "struct:tools.js:313:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
842
- "struct:tools.js:506:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
843
- "struct:tools.js:641:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
844
- "struct:tools.js:716:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
845
- "struct:tools.js:718:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
846
- "struct:tools.js:723:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
847
- "struct:tools.js:726:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
848
- "struct:tools.js:805:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
849
- "struct:tools.js:814:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
850
- "struct:tools.js:843:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
851
- "struct:tools.js:845:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
852
- "toctou-fs:audit.js:121",
853
- "toctou-fs:audit.js:52",
854
- "toctou-fs:tools.js:183",
855
- "toctou-fs:tools.js:305",
856
- "toctou-fs:tools.js:723",
857
- "toctou-fs:tools.js:805"
858
- ]
859
- },
860
- {
861
- "timestamp": "2026-05-19T22:59:48.611Z",
862
- "label": "scan",
863
- "total": 34,
864
- "critical": 0,
865
- "high": 0,
866
- "medium": 34,
867
- "low": 0,
868
- "kev": 0,
869
- "ids": [
870
- "struct:audit.js:108:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
871
- "struct:audit.js:122:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
872
- "struct:audit.js:123:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
873
- "struct:audit.js:52:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
874
- "struct:audit.js:54:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
875
- "struct:audit.js:97:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
876
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
877
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
878
- "struct:tools.js:146:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
879
- "struct:tools.js:150:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
880
- "struct:tools.js:154:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
881
- "struct:tools.js:183:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
882
- "struct:tools.js:198:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
883
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
884
- "struct:tools.js:214:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
885
- "struct:tools.js:266:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
886
- "struct:tools.js:305:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
887
- "struct:tools.js:313:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
888
- "struct:tools.js:506:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
889
- "struct:tools.js:641:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
890
- "struct:tools.js:716:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
891
- "struct:tools.js:718:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
892
- "struct:tools.js:723:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
893
- "struct:tools.js:726:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
894
- "struct:tools.js:805:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
895
- "struct:tools.js:814:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
896
- "struct:tools.js:843:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
897
- "struct:tools.js:845:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
898
- "toctou-fs:audit.js:122",
899
- "toctou-fs:audit.js:52",
900
- "toctou-fs:tools.js:183",
901
- "toctou-fs:tools.js:305",
902
- "toctou-fs:tools.js:723",
903
- "toctou-fs:tools.js:805"
904
- ]
905
- },
906
- {
907
- "timestamp": "2026-05-19T23:02:47.712Z",
908
- "label": "scan",
909
- "total": 34,
910
- "critical": 0,
911
- "high": 0,
912
- "medium": 34,
913
- "low": 0,
914
- "kev": 0,
915
- "ids": [
916
- "struct:audit.js:108:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
917
- "struct:audit.js:122:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
918
- "struct:audit.js:123:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
919
- "struct:audit.js:52:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
920
- "struct:audit.js:54:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
921
- "struct:audit.js:97:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
922
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
923
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
924
- "struct:tools.js:146:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
925
- "struct:tools.js:150:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
926
- "struct:tools.js:154:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
927
- "struct:tools.js:183:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
928
- "struct:tools.js:198:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
929
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
930
- "struct:tools.js:214:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
931
- "struct:tools.js:266:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
932
- "struct:tools.js:305:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
933
- "struct:tools.js:313:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
934
- "struct:tools.js:506:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
935
- "struct:tools.js:641:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
936
- "struct:tools.js:716:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
937
- "struct:tools.js:718:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
938
- "struct:tools.js:723:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
939
- "struct:tools.js:726:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
940
- "struct:tools.js:805:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
941
- "struct:tools.js:814:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
942
- "struct:tools.js:843:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
943
- "struct:tools.js:845:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
944
- "toctou-fs:audit.js:122",
945
- "toctou-fs:audit.js:52",
946
- "toctou-fs:tools.js:183",
947
- "toctou-fs:tools.js:305",
948
- "toctou-fs:tools.js:723",
949
- "toctou-fs:tools.js:805"
950
- ]
951
- },
952
- {
953
- "timestamp": "2026-05-19T23:02:59.075Z",
954
- "label": "scan",
955
- "total": 34,
956
- "critical": 0,
957
- "high": 0,
958
- "medium": 34,
959
- "low": 0,
960
- "kev": 0,
961
- "ids": [
962
- "struct:audit.js:108:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
963
- "struct:audit.js:122:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
964
- "struct:audit.js:123:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
965
- "struct:audit.js:52:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
966
- "struct:audit.js:54:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
967
- "struct:audit.js:97:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
968
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
969
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
970
- "struct:tools.js:146:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
971
- "struct:tools.js:150:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
972
- "struct:tools.js:154:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
973
- "struct:tools.js:183:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
974
- "struct:tools.js:198:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
975
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
976
- "struct:tools.js:214:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
977
- "struct:tools.js:266:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
978
- "struct:tools.js:305:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
979
- "struct:tools.js:313:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
980
- "struct:tools.js:506:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
981
- "struct:tools.js:641:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
982
- "struct:tools.js:716:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
983
- "struct:tools.js:718:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
984
- "struct:tools.js:723:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
985
- "struct:tools.js:726:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
986
- "struct:tools.js:805:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
987
- "struct:tools.js:814:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
988
- "struct:tools.js:843:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
989
- "struct:tools.js:845:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
990
- "toctou-fs:audit.js:122",
991
- "toctou-fs:audit.js:52",
992
- "toctou-fs:tools.js:183",
993
- "toctou-fs:tools.js:305",
994
- "toctou-fs:tools.js:723",
995
- "toctou-fs:tools.js:805"
996
- ]
997
- },
998
- {
999
- "timestamp": "2026-05-19T23:06:35.133Z",
1000
- "label": "scan",
1001
- "total": 34,
1002
- "critical": 0,
1003
- "high": 0,
1004
- "medium": 34,
1005
- "low": 0,
1006
- "kev": 0,
1007
- "ids": [
1008
- "struct:audit.js:108:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1009
- "struct:audit.js:122:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1010
- "struct:audit.js:123:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1011
- "struct:audit.js:52:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1012
- "struct:audit.js:54:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1013
- "struct:audit.js:97:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1014
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1015
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1016
- "struct:tools.js:146:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1017
- "struct:tools.js:150:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1018
- "struct:tools.js:154:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1019
- "struct:tools.js:183:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1020
- "struct:tools.js:198:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1021
- "struct:tools.js:213:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1022
- "struct:tools.js:214:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1023
- "struct:tools.js:266:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1024
- "struct:tools.js:305:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1025
- "struct:tools.js:313:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1026
- "struct:tools.js:506:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1027
- "struct:tools.js:641:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1028
- "struct:tools.js:716:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1029
- "struct:tools.js:718:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1030
- "struct:tools.js:723:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1031
- "struct:tools.js:726:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1032
- "struct:tools.js:805:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1033
- "struct:tools.js:814:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1034
- "struct:tools.js:843:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1035
- "struct:tools.js:845:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1036
- "toctou-fs:audit.js:122",
1037
- "toctou-fs:audit.js:52",
1038
- "toctou-fs:tools.js:183",
1039
- "toctou-fs:tools.js:305",
1040
- "toctou-fs:tools.js:723",
1041
- "toctou-fs:tools.js:805"
1042
- ]
1043
- },
1044
- {
1045
- "timestamp": "2026-05-24T15:10:27.373Z",
1046
- "label": "scan",
1047
- "total": 34,
1048
- "critical": 0,
1049
- "high": 0,
1050
- "medium": 34,
1051
- "low": 0,
1052
- "kev": 0,
1053
- "ids": [
1054
- "struct:audit.js:108:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1055
- "struct:audit.js:122:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1056
- "struct:audit.js:123:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1057
- "struct:audit.js:52:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1058
- "struct:audit.js:54:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1059
- "struct:audit.js:97:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1060
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1061
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1062
- "struct:tools.js:159:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1063
- "struct:tools.js:163:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1064
- "struct:tools.js:167:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1065
- "struct:tools.js:196:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1066
- "struct:tools.js:211:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1067
- "struct:tools.js:226:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1068
- "struct:tools.js:227:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1069
- "struct:tools.js:279:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1070
- "struct:tools.js:318:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1071
- "struct:tools.js:326:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1072
- "struct:tools.js:519:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1073
- "struct:tools.js:654:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1074
- "struct:tools.js:729:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1075
- "struct:tools.js:731:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1076
- "struct:tools.js:736:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1077
- "struct:tools.js:739:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1078
- "struct:tools.js:818:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1079
- "struct:tools.js:827:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1080
- "struct:tools.js:856:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1081
- "struct:tools.js:858:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1082
- "toctou-fs:audit.js:122",
1083
- "toctou-fs:audit.js:52",
1084
- "toctou-fs:tools.js:196",
1085
- "toctou-fs:tools.js:318",
1086
- "toctou-fs:tools.js:736",
1087
- "toctou-fs:tools.js:818"
1088
- ]
1089
- },
1090
- {
1091
- "timestamp": "2026-05-24T15:10:37.152Z",
1092
- "label": "scan",
1093
- "total": 34,
1094
- "critical": 0,
1095
- "high": 0,
1096
- "medium": 34,
1097
- "low": 0,
1098
- "kev": 0,
1099
- "ids": [
1100
- "struct:audit.js:108:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1101
- "struct:audit.js:122:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1102
- "struct:audit.js:123:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1103
- "struct:audit.js:52:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1104
- "struct:audit.js:54:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1105
- "struct:audit.js:97:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1106
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1107
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1108
- "struct:tools.js:159:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1109
- "struct:tools.js:163:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1110
- "struct:tools.js:167:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1111
- "struct:tools.js:196:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1112
- "struct:tools.js:211:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1113
- "struct:tools.js:226:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1114
- "struct:tools.js:227:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1115
- "struct:tools.js:279:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1116
- "struct:tools.js:318:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1117
- "struct:tools.js:326:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1118
- "struct:tools.js:520:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1119
- "struct:tools.js:655:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1120
- "struct:tools.js:730:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1121
- "struct:tools.js:732:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1122
- "struct:tools.js:737:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1123
- "struct:tools.js:740:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1124
- "struct:tools.js:819:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1125
- "struct:tools.js:828:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1126
- "struct:tools.js:857:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1127
- "struct:tools.js:859:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1128
- "toctou-fs:audit.js:122",
1129
- "toctou-fs:audit.js:52",
1130
- "toctou-fs:tools.js:196",
1131
- "toctou-fs:tools.js:318",
1132
- "toctou-fs:tools.js:737",
1133
- "toctou-fs:tools.js:819"
1134
- ]
1135
- },
1136
- {
1137
- "timestamp": "2026-05-24T15:10:46.492Z",
1138
- "label": "scan",
1139
- "total": 34,
1140
- "critical": 0,
1141
- "high": 0,
1142
- "medium": 34,
1143
- "low": 0,
1144
- "kev": 0,
1145
- "ids": [
1146
- "struct:audit.js:108:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1147
- "struct:audit.js:122:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1148
- "struct:audit.js:123:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1149
- "struct:audit.js:52:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1150
- "struct:audit.js:54:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1151
- "struct:audit.js:97:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1152
- "struct:server.js:32:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1153
- "struct:server.js:49:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1154
- "struct:tools.js:159:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1155
- "struct:tools.js:163:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1156
- "struct:tools.js:167:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1157
- "struct:tools.js:196:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1158
- "struct:tools.js:211:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1159
- "struct:tools.js:226:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1160
- "struct:tools.js:227:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1161
- "struct:tools.js:279:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1162
- "struct:tools.js:318:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1163
- "struct:tools.js:326:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1164
- "struct:tools.js:520:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1165
- "struct:tools.js:656:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1166
- "struct:tools.js:731:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1167
- "struct:tools.js:733:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1168
- "struct:tools.js:738:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1169
- "struct:tools.js:741:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1170
- "struct:tools.js:820:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1171
- "struct:tools.js:829:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1172
- "struct:tools.js:858:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1173
- "struct:tools.js:860:Synchronous_Blocking_I/O_(DoS_Risk_in_Server_Context)",
1174
- "toctou-fs:audit.js:122",
1175
- "toctou-fs:audit.js:52",
1176
- "toctou-fs:tools.js:196",
1177
- "toctou-fs:tools.js:318",
1178
- "toctou-fs:tools.js:738",
1179
- "toctou-fs:tools.js:820"
1180
- ]
1181
- }
1182
- ]