-
Notifications
You must be signed in to change notification settings - Fork 3
/
node-report.json
604 lines (604 loc) · 22.9 KB
/
node-report.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
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
{
"Canonicalize": [
{
"fullTitle": "Signature String For valid options MUST return a valid signature string.",
"optional": false,
"title": "For valid options MUST return a valid signature string.",
"pending": false,
"state": "passed",
"duration": 89,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String If a value is not the last value then append an ASCII newline.",
"optional": false,
"title": "If a value is not the last value then append an ASCII newline.",
"pending": false,
"state": "passed",
"duration": 86,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String if duplicate parameters the last parameter defined MUST be used.",
"optional": false,
"title": "if duplicate parameters the last parameter defined MUST be used.",
"pending": false,
"state": "failed",
"duration": 82,
"errors": "Driver exited with error code 1. \n canonicalize command failed : DataError: was not found in `requestOptions.headers`\n"
},
{
"fullTitle": "Signature String Header Parameter SHOULD be a lowercased, quoted list of HTTP header fields,separated by a single space character.",
"optional": false,
"title": "SHOULD be a lowercased, quoted list of HTTP header fields,separated by a single space character.",
"pending": false,
"state": "passed",
"duration": 81,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter The client MUST use the values of each HTTP header field in the headers Signature Parameter, in the order they appear in the headers Signature Parameter.",
"optional": false,
"title": "The client MUST use the values of each HTTP header field in the headers Signature Parameter, in the order they appear in the headers Signature Parameter.",
"pending": false,
"state": "passed",
"duration": 79,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter All header field values associated with the header field MUST be concatenated, separated by an ASCII comma and an ASCII space, and used in the order in which they will appear in the transmitted HTTP message.",
"optional": false,
"title": "All header field values associated with the header field MUST be concatenated, separated by an ASCII comma and an ASCII space, and used in the order in which they will appear in the transmitted HTTP message.",
"pending": false,
"state": "failed",
"duration": 81,
"errors": "expected signature string to match: expected 'host: example.com\\nduplicate: two' to equal 'host: example.com\\nduplicate: one, two'"
},
{
"fullTitle": "Signature String Header Parameter If a header specified in the headers parameter cannot be matched with a provided header in the message, the implementation MUST produce an error.",
"optional": false,
"title": "If a header specified in the headers parameter cannot be matched with a provided header in the message, the implementation MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If a header specified in the headers parameter is malformed the implementation MUST produce an error.",
"optional": false,
"title": "If a header specified in the headers parameter is malformed the implementation MUST produce an error.",
"pending": false,
"state": "failed",
"duration": 81,
"errors": "Expected an error to be thrown: expected null to exist"
},
{
"fullTitle": "Signature String Header Parameter If the header value is a zero-length string, the signature string line correlating with that header will simply be the (lowercased) header name, an ASCII colon :, and an ASCII space.",
"optional": false,
"title": "If the header value is a zero-length string, the signature string line correlating with that header will simply be the (lowercased) header name, an ASCII colon :, and an ASCII space.",
"pending": false,
"state": "failed",
"duration": 81,
"errors": "Driver exited with error code 1. \n canonicalize command failed : DataError: zero was not found in `requestOptions.headers`\n"
},
{
"fullTitle": "Signature String Header Parameter SHOULD change capitalized Headers to lowercase.",
"optional": false,
"title": "SHOULD change capitalized Headers to lowercase.",
"pending": false,
"state": "passed",
"duration": 80,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If the header field name is (request-target) then generate the header field value by concatenating the lowercased :method, an ASCII space, and the :path pseudo-headers.",
"optional": false,
"title": "If the header field name is (request-target) then generate the header field value by concatenating the lowercased :method, an ASCII space, and the :path pseudo-headers.",
"pending": false,
"state": "passed",
"duration": 82,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter SHOULD return \"\" if the headers paramter is empty.",
"optional": false,
"title": "SHOULD return \"\" if the headers paramter is empty.",
"pending": false,
"state": "failed",
"duration": 84,
"errors": "Driver exited with error code 1. \n canonicalize command failed : DataError: was not found in `requestOptions.headers`\n"
},
{
"fullTitle": "Signature String Header Parameter If the header parameter is not specified, implementations MUST operate as if the field were specified with a single value, (created), in the list of HTTP headers.",
"optional": false,
"title": "If the header parameter is not specified, implementations MUST operate as if the field were specified with a single value, (created), in the list of HTTP headers.",
"pending": false,
"state": "failed",
"duration": 81,
"errors": "Driver exited with error code 1. \n canonicalize command failed : DataError: was not found in `requestOptions.headers`\n"
},
{
"fullTitle": "Signature String Header Parameter If (created) is in headers & the algorithm param starts with rsa MUST produce an error.",
"optional": false,
"title": "If (created) is in headers & the algorithm param starts with rsa MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 80,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If (created) is in headers & the algorithm param starts with hmac MUST produce an error.",
"optional": false,
"title": "If (created) is in headers & the algorithm param starts with hmac MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 81,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If (created) is in headers & the algorithm param starts with ecdsa MUST produce an error.",
"optional": false,
"title": "If (created) is in headers & the algorithm param starts with ecdsa MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If the created Signature Parameter is not specified, an implementation MUST produce an error.",
"optional": false,
"title": "If the created Signature Parameter is not specified, an implementation MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If the created Signature Parameter is not an integer or unix timestamp, animplementation MUST produce an error.",
"optional": false,
"title": "If the created Signature Parameter is not an integer or unix timestamp, animplementation MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 82,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If given valid options SHOULD return (created).",
"optional": false,
"title": "If given valid options SHOULD return (created).",
"pending": false,
"state": "failed",
"duration": 85,
"errors": "Driver exited with error code 1. \n canonicalize command failed : DataError: (created) was not found in `requestOptions.headers`\n"
},
{
"fullTitle": "Signature String Header Parameter If (expires) is in headers & the algorithm param starts with rsa MUST produce an error.",
"optional": false,
"title": "If (expires) is in headers & the algorithm param starts with rsa MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 84,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If (expires) is in headers & the algorithm param starts with hmac MUST produce an error.",
"optional": false,
"title": "If (expires) is in headers & the algorithm param starts with hmac MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 81,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If (expires) is in headers & the algorithm param starts with ecdsa MUST produce an error.",
"optional": false,
"title": "If (expires) is in headers & the algorithm param starts with ecdsa MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 81,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If the expires Signature Parameter is not specified, an implementation MUST produce an error.",
"optional": false,
"title": "If the expires Signature Parameter is not specified, an implementation MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 79,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If the expires Signature Parameter is not an integer or unix timestamp, animplementation MUST produce an error.",
"optional": false,
"title": "If the expires Signature Parameter is not an integer or unix timestamp, animplementation MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 80,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Signature String Header Parameter If given valid options SHOULD return (expires).",
"optional": false,
"title": "If given valid options SHOULD return (expires).",
"pending": false,
"state": "failed",
"duration": 80,
"errors": "Driver exited with error code 1. \n canonicalize command failed : DataError: (expires) was not found in `requestOptions.headers`\n"
},
{
"fullTitle": "Optional should be able to parse json",
"optional": true,
"title": "should be able to parse json",
"pending": false,
"state": "passed",
"duration": 0,
"speed": "fast",
"errors": ""
}
],
"Sign": [
{
"fullTitle": "A client MUST generate a signature by base 64 encoding the output of the digital signature algorithm.",
"optional": false,
"title": "A client MUST generate a signature by base 64 encoding the output of the digital signature algorithm.",
"pending": false,
"state": "passed",
"duration": 84,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "A client MUST use the headers and algorithm values as well as the contents of the HTTP message, to create the signature string.",
"optional": false,
"title": "A client MUST use the headers and algorithm values as well as the contents of the HTTP message, to create the signature string.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "A client MUST use the key associated with keyId togenerate a digital signature on the signature string.",
"optional": false,
"title": "A client MUST use the key associated with keyId togenerate a digital signature on the signature string.",
"pending": true,
"errors": ""
},
{
"fullTitle": "MUST be able to discover metadata about the key from the keyId.",
"optional": false,
"title": "MUST be able to discover metadata about the key from the keyId.",
"pending": true,
"errors": ""
},
{
"fullTitle": "MUST NOT process a signature with a created timestamp value that is in the future.",
"optional": false,
"title": "MUST NOT process a signature with a created timestamp value that is in the future.",
"pending": false,
"state": "passed",
"duration": 76,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "MUST NOT process a signature with an expires timestamp value that is in the past.",
"optional": false,
"title": "MUST NOT process a signature with an expires timestamp value that is in the past.",
"pending": false,
"state": "passed",
"duration": 76,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter MUST produce an error if algorithm parameter differs from key metadata.",
"optional": false,
"title": "MUST produce an error if algorithm parameter differs from key metadata.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter Signature scheme MUST be in the HTTP Signatures Algorithms Registry.",
"optional": false,
"title": "Signature scheme MUST be in the HTTP Signatures Algorithms Registry.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST sign for algorithm hs2019.",
"optional": false,
"title": "MUST sign for algorithm hs2019.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST reject deprecated algorithm rsa-sha1.",
"optional": false,
"title": "MUST reject deprecated algorithm rsa-sha1.",
"pending": false,
"state": "passed",
"duration": 77,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST reject deprecated algorithm rsa-sha256.",
"optional": false,
"title": "MUST reject deprecated algorithm rsa-sha256.",
"pending": false,
"state": "passed",
"duration": 77,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST reject deprecated algorithm hmac-sha256.",
"optional": false,
"title": "MUST reject deprecated algorithm hmac-sha256.",
"pending": false,
"state": "passed",
"duration": 78,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST reject deprecated algorithm ecdsa-sha256.",
"optional": false,
"title": "MUST reject deprecated algorithm ecdsa-sha256.",
"pending": false,
"state": "passed",
"duration": 79,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Private Keys should sign with a/an RSA private key.",
"optional": false,
"title": "should sign with a/an RSA private key.",
"pending": false,
"state": "passed",
"duration": 84,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Private Keys should sign with a/an P256 private key.",
"optional": false,
"title": "should sign with a/an P256 private key.",
"pending": false,
"state": "passed",
"duration": 84,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Private Keys should sign with a/an ED25519 private key.",
"optional": false,
"title": "should sign with a/an ED25519 private key.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Private Keys should sign with a/an ECDSA private key.",
"optional": false,
"title": "should sign with a/an ECDSA private key.",
"pending": false,
"state": "passed",
"duration": 84,
"speed": "slow",
"errors": ""
}
],
"Verify": [
{
"fullTitle": "MUST require a signature parameter.",
"optional": false,
"title": "MUST require a signature parameter.",
"pending": false,
"state": "passed",
"duration": 82,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "MUST derive the digital signature algorithm fromthe metadata associated with the keyId.",
"optional": false,
"title": "MUST derive the digital signature algorithm fromthe metadata associated with the keyId.",
"pending": false,
"state": "passed",
"duration": 85,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "MUST NOT use the value of algorithm from the signed message.",
"optional": false,
"title": "MUST NOT use the value of algorithm from the signed message.",
"pending": false,
"state": "passed",
"duration": 87,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "A server MUST use the received HTTP message, the headers value, and the Signature String Construction algorithm to recreate the signature.",
"optional": false,
"title": "A server MUST use the received HTTP message, the headers value, and the Signature String Construction algorithm to recreate the signature.",
"pending": false,
"state": "passed",
"duration": 87,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "A server MUST use the algorithm, keyId, and base 64 decoded signature listed in the Signature Parameters to verify the authenticity of the digital signature.",
"optional": false,
"title": "A server MUST use the algorithm, keyId, and base 64 decoded signature listed in the Signature Parameters to verify the authenticity of the digital signature.",
"pending": false,
"state": "passed",
"duration": 87,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "If a header specified in the headers value of the Signature Parameters (or the default item (created) where the headers value is not supplied) is absent from the message, the implementation MUST produce an error.",
"optional": false,
"title": "If a header specified in the headers value of the Signature Parameters (or the default item (created) where the headers value is not supplied) is absent from the message, the implementation MUST produce an error.",
"pending": false,
"state": "passed",
"duration": 82,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "MUST have a keyId parameter.",
"optional": false,
"title": "MUST have a keyId parameter.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Public Keys should verify for a RSA public key",
"optional": false,
"title": "should verify for a RSA public key",
"pending": false,
"state": "passed",
"duration": 86,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Public Keys should verify for a P256 public key",
"optional": false,
"title": "should verify for a P256 public key",
"pending": false,
"state": "passed",
"duration": 87,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Public Keys should verify for a ED25519 public key",
"optional": false,
"title": "should verify for a ED25519 public key",
"pending": false,
"state": "passed",
"duration": 87,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Public Keys should verify for a ECDSA public key",
"optional": false,
"title": "should verify for a ECDSA public key",
"pending": false,
"state": "passed",
"duration": 87,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter MUST produce an error if algorithm parameter differs from key metadata.",
"optional": false,
"title": "MUST produce an error if algorithm parameter differs from key metadata.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter Signature scheme MUST be in the HTTP Signatures Algorithms Registry.",
"optional": false,
"title": "Signature scheme MUST be in the HTTP Signatures Algorithms Registry.",
"pending": false,
"state": "passed",
"duration": 84,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST not reject algorithm hs2019.",
"optional": false,
"title": "MUST not reject algorithm hs2019.",
"pending": false,
"state": "passed",
"duration": 86,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST reject deprecated algorithm rsa-sha1.",
"optional": false,
"title": "MUST reject deprecated algorithm rsa-sha1.",
"pending": false,
"state": "passed",
"duration": 83,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST reject deprecated algorithm rsa-sha256.",
"optional": false,
"title": "MUST reject deprecated algorithm rsa-sha256.",
"pending": false,
"state": "passed",
"duration": 84,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST reject deprecated algorithm hmac-sha256.",
"optional": false,
"title": "MUST reject deprecated algorithm hmac-sha256.",
"pending": false,
"state": "passed",
"duration": 82,
"speed": "slow",
"errors": ""
},
{
"fullTitle": "Algorithm Parameter signature scheme MUST reject deprecated algorithm ecdsa-sha256.",
"optional": false,
"title": "MUST reject deprecated algorithm ecdsa-sha256.",
"pending": false,
"state": "passed",
"duration": 82,
"speed": "slow",
"errors": ""
}
]
}