forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotnet.gdnbaselines
executable file
·3260 lines (3260 loc) · 133 KB
/
dotnet.gdnbaselines
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "latest",
"baselines": {
"baseline": {
"name": "baseline",
"createdDate": "2022-07-25 23:43:21Z",
"lastUpdatedDate": "2022-07-25 23:43:21Z"
}
},
"results": {
"52282670312a7c1517be0342985c6a71094b714130b306f9df411543884fc448": {
"signature": "52282670312a7c1517be0342985c6a71094b714130b306f9df411543884fc448",
"alternativeSignatures": [
"ce48ef606c14114cbda3db41455c638e77ff7da42f5684f2510abb0686f4051f"
],
"target": "eng/common/testproxy/dotnet-devcert.pfx",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0020",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"26c22cecb80d7f14d19bb8293775f5b7cc410ae75b3538bea187d7b389e3d08c": {
"signature": "26c22cecb80d7f14d19bb8293775f5b7cc410ae75b3538bea187d7b389e3d08c",
"alternativeSignatures": [
"500f7afe6004908c0336a83fc04d4b59ed0ee4b203932af541f45ab546d84d2d"
],
"target": "sdk/eventhub/Microsoft.Azure.WebJobs.Extensions.EventHubs/README.md",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"67e9377c0ac571cfb1791ff978677a33d8e608f767228630ec313dbfb5b844d3": {
"signature": "67e9377c0ac571cfb1791ff978677a33d8e608f767228630ec313dbfb5b844d3",
"alternativeSignatures": [
"33920e6ce36fc2c8351a0b6f140f6ce6b7f68a56255e47ba4a34e1b5a34a407a"
],
"target": "sdk/automation/Microsoft.Azure.Management.Automation/tests/Helpers/SourceControlDefinition.cs",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0100",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"2b9231233d594c6159e876685614ecb0ee011f462e6cd0b443d7f5c3b46035fd": {
"signature": "2b9231233d594c6159e876685614ecb0ee011f462e6cd0b443d7f5c3b46035fd",
"alternativeSignatures": [
"8ceb5820301c581197d169544b33007f7a3ead8b449cb437a5d55299575a30dc"
],
"target": "sdk/communication/Azure.Communication.Common/tests/Pipeline/HMACAuthenticationPolicyTests.cs",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"9ae9c4a5e10d74715ea2b1e0b19206d7b640afdbfbbab8468d67b61bd71e0bf9": {
"signature": "9ae9c4a5e10d74715ea2b1e0b19206d7b640afdbfbbab8468d67b61bd71e0bf9",
"alternativeSignatures": [
"004123ab54450aaf37db997a3f20cf7a6417864de36a535ef3d7bf55ca07436d"
],
"target": "sdk/databoxedge/Microsoft.Azure.Management.DataBoxEdge/tests/Tests/StorageAccountCredentialsTests.cs",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"084e105786e0af3ce5c8e26f6d2d3d4044ac7bd4d2af55b5b1a54230b163ecb8": {
"signature": "084e105786e0af3ce5c8e26f6d2d3d4044ac7bd4d2af55b5b1a54230b163ecb8",
"alternativeSignatures": [
"ad1538c71e002aade8559f1bbcb3a03c240f7c2d06fcdad88ed85aa505df3c07"
],
"target": "sdk/edgegateway/Microsoft.Azure.Management.EdgeGateway/tests/Tests/StorageAccountCredentialsTests.cs",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"51c4c9a4a4be88e89f718591ad8f7e019b07126ae13a265df4552c23d757f0d1": {
"signature": "51c4c9a4a4be88e89f718591ad8f7e019b07126ae13a265df4552c23d757f0d1",
"alternativeSignatures": [
"a5841c868b4e7095a7975ccc726afeaebca531243ae2264b58ac7d77508745a0"
],
"target": "sdk/locationbasedservices/Microsoft.Azure.Management.LocationBasedServices/tests/Tests/LocationBasedServicesAccountTests.cs",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"3acbd7f9eb3e2564d1be7c706489adedd8430ef3f6a58a223752d2694a02e131": {
"signature": "3acbd7f9eb3e2564d1be7c706489adedd8430ef3f6a58a223752d2694a02e131",
"alternativeSignatures": [
"6577bf0974ee5929348a41671ce404f974bf71be25618078c66425102e7ab197"
],
"target": "sdk/mgmtcommon/TestFramework/HttpRecorder.Tests/ResponseData/LroResponseData.cs",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"907b5cf219d6c6f6139ac1b8446f328f91bbd6abbbdcda4e62dd3d9b6c4216fc": {
"signature": "907b5cf219d6c6f6139ac1b8446f328f91bbd6abbbdcda4e62dd3d9b6c4216fc",
"alternativeSignatures": [
"55c38207a78ba2038597c1f37e142889905f6c43b61dd53f202231a99df92821"
],
"target": "sdk/mgmtcommon/TestFramework/HttpRecorder.Tests/ResponseData/LroResponseData.cs",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"273f12a5424a74b11d6eb86973ad1ac87a5195bff83988b372805797fe3ab69a": {
"signature": "273f12a5424a74b11d6eb86973ad1ac87a5195bff83988b372805797fe3ab69a",
"alternativeSignatures": [
"6e0b7cfacb141002d2653628b47330bff6cf726f598dc30cc07666acffb4f4ed"
],
"target": "sdk/notificationhubs/Microsoft.Azure.Management.NotificationHubs/tests/Tests/ScenarioTests.NotificationHubTests.CRUD.cs",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"4ba9cd1fac95080e6e2e823535e840dd9e72c3f8be83550d04b52bdb0f90a553": {
"signature": "4ba9cd1fac95080e6e2e823535e840dd9e72c3f8be83550d04b52bdb0f90a553",
"alternativeSignatures": [
"03d2d755649e6ad4ba34c6415b448ae67d487b01a9c42c465b22e8d81b1ad7a4"
],
"target": "sdk/testcommon/Azure.Graph.Rbac/src/Generated/OAuth2PermissionGrantRestOperations.cs",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0120",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"364dbb7e6d8ffd5c0c6dcc6a0fb646660ce270e0820428adea0f5749542fc1d8": {
"signature": "364dbb7e6d8ffd5c0c6dcc6a0fb646660ce270e0820428adea0f5749542fc1d8",
"alternativeSignatures": [
"a72f776cf944c41181e97bac9c1337cf5e892c803c2c279052b0aa3df9d71fcb"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/BackupAndRestoreService.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"54db941335506914e770b90a2e4416c7649231626550906a81f9d424d67300f1": {
"signature": "54db941335506914e770b90a2e4416c7649231626550906a81f9d424d67300f1",
"alternativeSignatures": [
"26da28476c400d3f9220ea601355e89cfbee430ab6e5cf3834e941cf7c530b9c"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiManagementServiceTests/BackupAndRestoreService.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"10ab49cd7cf443ac4721b8ee0526e3646b2d2df3545613f2cc885fae6964bb9c": {
"signature": "10ab49cd7cf443ac4721b8ee0526e3646b2d2df3545613f2cc885fae6964bb9c",
"alternativeSignatures": [
"4fde43abd0bac01e6e28e4cf3d8d49a4b3fd666481c4816a38b3d0108583916f"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DelegationSettingTests/CreateUpdateReset.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"34179a470026c50f13e1ec4eed2d9d452cb6ee466eb1759f4d7460215a338c72": {
"signature": "34179a470026c50f13e1ec4eed2d9d452cb6ee466eb1759f4d7460215a338c72",
"alternativeSignatures": [
"0fe84bcf9179a6e5ba080f7b28009a48ea06d4376ca07fe5a949546681871e56"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DelegationSettingTests/CreateUpdateReset.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"610bed2d559a9111eb30480142224818e185225e345f85086464e7577eef4f0e": {
"signature": "610bed2d559a9111eb30480142224818e185225e345f85086464e7577eef4f0e",
"alternativeSignatures": [
"eae1e0575754bbb975a891ad41db20cdc8ade047b079c4e35eb8c0013c931625"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/DelegationSettingTests/CreateUpdateReset.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"aa1f534da37a30f63cc7ee3efb3057661f3824934d8d90fb9a492ff03a2ef243": {
"signature": "aa1f534da37a30f63cc7ee3efb3057661f3824934d8d90fb9a492ff03a2ef243",
"alternativeSignatures": [
"069ee3599dc574af516117724bf65c1bf7809d7f4360291ea445f1654544ce84"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteEventHub.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"0694e6fabfaf1507d3bdc9a13dfe08ec3b1c159501347e3c372819c689db9d1a": {
"signature": "0694e6fabfaf1507d3bdc9a13dfe08ec3b1c159501347e3c372819c689db9d1a",
"alternativeSignatures": [
"0437b8b0eddaaca4679421cf0e3fe1ffd79968318a16e101427e9abfec0ec611"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/LoggerTests/CreateListUpdateDeleteEventHub.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"f693c3c339af3b1e44abc858727860565f7398d8997611f193b373ab35aa48c7": {
"signature": "f693c3c339af3b1e44abc858727860565f7398d8997611f193b373ab35aa48c7",
"alternativeSignatures": [
"09b9132416f8479d86633475543b3868789157dd857a88632df03a93d721f125"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"c3846bf777cab962ac6317d0f11953e005e32c59eda12a8fedad9fd365150183": {
"signature": "c3846bf777cab962ac6317d0f11953e005e32c59eda12a8fedad9fd365150183",
"alternativeSignatures": [
"7e9794afb7b2612d590ee02070accb7ceb73e04213f22589cdb1d93f480167f5"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"e00bfd7e9b749714f6e220308e0e467c0da3b122a59a7d9a04bee3d3d3107ea5": {
"signature": "e00bfd7e9b749714f6e220308e0e467c0da3b122a59a7d9a04bee3d3d3107ea5",
"alternativeSignatures": [
"80b78d02a7f218cadd39ab98d2ba2151c1ba1067bf64cb380ed49cbec938f43a"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"8d352b99380b5c8d374c1a852a455c329e90fe79fe2a94d7a0080fa75fa920d6": {
"signature": "8d352b99380b5c8d374c1a852a455c329e90fe79fe2a94d7a0080fa75fa920d6",
"alternativeSignatures": [
"fd76160d6520a62c3cf5214977e16433ad912a1db48b2a0e638da2c0624372c5"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"514ea934fc8c7bb6d1a143b5c0dbc78a4e9758846b647e1d3553ecb3e9102bd2": {
"signature": "514ea934fc8c7bb6d1a143b5c0dbc78a4e9758846b647e1d3553ecb3e9102bd2",
"alternativeSignatures": [
"ec14dceb9dd3c880fa85c76d9d900398282aefbd51b4d837725895ef91f9cf6e"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"78fc4fd31db0e267a14af2cc13e9c3aca0d02b998aad0416bc7d57d02f0bca8f": {
"signature": "78fc4fd31db0e267a14af2cc13e9c3aca0d02b998aad0416bc7d57d02f0bca8f",
"alternativeSignatures": [
"d1a9dbc0cbae3d9181d11b471e47a96444f10fbce9b9f20274ab6a09a25c1d8d"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/SubscriptionTests/CreateListUpdateDelete.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"4eea9419e1310e8bdf7102e7123abe87d293e9d577afeffdb1ff941d468cebd9": {
"signature": "4eea9419e1310e8bdf7102e7123abe87d293e9d577afeffdb1ff941d468cebd9",
"alternativeSignatures": [
"d8d2ae54d9bec55ff81fe2f99d58fc8f768e05e5a3150f4a7f6a0b7bd4a84002"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessGitTests/GetUpdateKeys.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"c060bc6bae716c5d1058d5452f7988f23a1b0f6d55839cc4a8b4614b74f70b8c": {
"signature": "c060bc6bae716c5d1058d5452f7988f23a1b0f6d55839cc4a8b4614b74f70b8c",
"alternativeSignatures": [
"6407ab3f7dce5a79d770cc15f147a5731dba4713af41ee43960d66d32f5cdb22"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessGitTests/GetUpdateKeys.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"e6c450d00f46c8d5761b08cb16f7ba8aa0507b87506037927f55e6f6ac4fcfd0": {
"signature": "e6c450d00f46c8d5761b08cb16f7ba8aa0507b87506037927f55e6f6ac4fcfd0",
"alternativeSignatures": [
"32c55dfe36726b4a3743e3f9e69ce284de14cc6a8caee90edb23e6fc916b8d9b"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessGitTests/GetUpdateKeys.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"3c0a0bfd293c031befa90581d900feff50ee390610921abdf122ee73ecde54bd": {
"signature": "3c0a0bfd293c031befa90581d900feff50ee390610921abdf122ee73ecde54bd",
"alternativeSignatures": [
"020f61d6a3844444d5f73987794c8be41626cc6438894a0bfb384835715d49df"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessTests/EnableGetAndUpdateKeys.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"5edcb905b604afbbc3f2fc9e9b17a543ae727e22348de95e756e87451a2091c8": {
"signature": "5edcb905b604afbbc3f2fc9e9b17a543ae727e22348de95e756e87451a2091c8",
"alternativeSignatures": [
"00373655c91e035d89482bf87386456bede81902bf7aa131065c26350fc7e16e"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessTests/EnableGetAndUpdateKeys.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"fac0d021de8523b46536e81f9467a160a2a8850323532a357cbc1f3cd721de0c": {
"signature": "fac0d021de8523b46536e81f9467a160a2a8850323532a357cbc1f3cd721de0c",
"alternativeSignatures": [
"25372fd8f3fe1f05af1a3e6b11b4c30063dc78bca73b5ac4a1d12c3a9a13e21f"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessTests/EnableGetAndUpdateKeys.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"26c129fe6f00c27aa0fcea4bf89dddc045bed84223f499732a83cc7dc27786f6": {
"signature": "26c129fe6f00c27aa0fcea4bf89dddc045bed84223f499732a83cc7dc27786f6",
"alternativeSignatures": [
"be6074b8e7ad8994d0a13feceb362ed444f4bf03a179bea69bcc6b1804845577"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessTests/EnableGetAndUpdateKeys.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"dcccce7fdd8a7bda7094c5af212a27130efcf478ba9122a6583d2105bf1e62da": {
"signature": "dcccce7fdd8a7bda7094c5af212a27130efcf478ba9122a6583d2105bf1e62da",
"alternativeSignatures": [
"1367aabfbb19fb64383476d0a3eb9df37c8ebdf889f2b837f426d59981cbc01b"
],
"target": "sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/TenantAccessTests/EnableGetAndUpdateKeys.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"761c8fd977b35fcafb3f9eac0e2a4bdc11b916161b925c1bba4e002152117bb4": {
"signature": "761c8fd977b35fcafb3f9eac0e2a4bdc11b916161b925c1bba4e002152117bb4",
"alternativeSignatures": [
"10898ff93f07b5b202fd681e853e6dd6f17c99be767a6596b3976901366137b9"
],
"target": "sdk/applicationinsights/Microsoft.Azure.Management.ApplicationInsights/tests/SessionRecords/APIKeysTests/CreateGetListUpdateDeleteAPIKeys.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"b31021af7ba5dad5041c2be5d1020de16e448af4952270cd583512c693025281": {
"signature": "b31021af7ba5dad5041c2be5d1020de16e448af4952270cd583512c693025281",
"alternativeSignatures": [
"9c0c223f14b0e3463f3348a4f8a80334cbe9e1298b0ecbf4f110e81f79eb99a7"
],
"target": "sdk/automation/Microsoft.Azure.Management.Automation/tests/SessionRecords/AutomationTest/CanCreateUpdateDeleteWebhook.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"aadba334308ea7f12b5bce7df35a6c8d34dfa0811cfa424bade9fb89e3c068ad": {
"signature": "aadba334308ea7f12b5bce7df35a6c8d34dfa0811cfa424bade9fb89e3c068ad",
"alternativeSignatures": [
"ee82a8aa5c3aef9960aa9500b3369814ba5f13270a7bc90083f738a88b2b1907"
],
"target": "sdk/automation/Microsoft.Azure.Management.Automation/tests/SessionRecords/AutomationTest/CanCreateUpdateDeleteWebhook.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"20cdeb65618c8cc78bf56a90bd94c9a27fa5b10bb3da267c7cb5d36b4320e20d": {
"signature": "20cdeb65618c8cc78bf56a90bd94c9a27fa5b10bb3da267c7cb5d36b4320e20d",
"alternativeSignatures": [
"9952d9bf8b0fcda591729ecb3500612f515802aac126be11b7c8ed7a89f8c32b"
],
"target": "sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceListTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"b78ff42c68d1f29e432662d8e5fdcb4ffe9e201787d67e205c191ed652d14892": {
"signature": "b78ff42c68d1f29e432662d8e5fdcb4ffe9e201787d67e205c191ed652d14892",
"alternativeSignatures": [
"9a3ed4a252a878cd8f18826ed038b3045bae6fe35010fb06331d9e4c1ea7f250"
],
"target": "sdk/containerregistry/Microsoft.Azure.ContainerRegistry/tests/SessionRecords/AuthTests/GetAcrAccessToken.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"d20c5c7a02b21b66089f4d166cbb50091794517b446e830505258469f0291f36": {
"signature": "d20c5c7a02b21b66089f4d166cbb50091794517b446e830505258469f0291f36",
"alternativeSignatures": [
"79ef0e244f4510397369f9ae7963d0129df71af3c6b0e531b89ffed0f0076509"
],
"target": "sdk/containerregistry/Microsoft.Azure.ContainerRegistry/tests/SessionRecords/AuthTests/GetAcrAccessToken.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"ff3554e62d943402e1c4c6e1875c2e631d9145745100975d2fa0d2e822bbe43e": {
"signature": "ff3554e62d943402e1c4c6e1875c2e631d9145745100975d2fa0d2e822bbe43e",
"alternativeSignatures": [
"aa43c84eb873f84bf7bd0e8c12235a0b9966bc418a1cfac323748a92df32933e"
],
"target": "sdk/containerregistry/Microsoft.Azure.ContainerRegistry/tests/SessionRecords/AuthTests/GetAcrRefreshTokenFromExchange.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"91ced906d1e95cc594e16c4f390283ecd7be6993c2b22ab5d03da7491dbfc3d4": {
"signature": "91ced906d1e95cc594e16c4f390283ecd7be6993c2b22ab5d03da7491dbfc3d4",
"alternativeSignatures": [
"f2592e13c011635bb3b93604321a5c4b6f876e04c0217ada80c19a8c1ae56251"
],
"target": "sdk/containerservice/Microsoft.Azure.Management.ContainerService/tests/SessionRecords/ContainerServiceTests/ContainerListClusterAdminCredentialsTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"ba894b88c54e689b6857631a132945a35591b55c72b39b4e6fd96e3e7cca1b14": {
"signature": "ba894b88c54e689b6857631a132945a35591b55c72b39b4e6fd96e3e7cca1b14",
"alternativeSignatures": [
"d476dd6f28909cc03c9c2e77f25ea594e4a54435cf81d6ec191fc8c3d5a2458b"
],
"target": "sdk/containerservice/Microsoft.Azure.Management.ContainerService/tests/SessionRecords/ContainerServiceTests/ContainerServiceCreateManagedServiceTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"a085b1e06c66b2f1174884b78fb80c31aeb772d22599d16db56734cb2a9f8fbe": {
"signature": "a085b1e06c66b2f1174884b78fb80c31aeb772d22599d16db56734cb2a9f8fbe",
"alternativeSignatures": [
"71866ead4d232d8e0ef5fa54a6eeca4a8ad6bdacee7970b1ff3166899574961c"
],
"target": "sdk/containerservice/Microsoft.Azure.Management.ContainerService/tests/SessionRecords/ContainerServiceTests/ContainerServiceDeleteServiceTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"8e4ed217d01eaad950181c35baf030b34c5bebcefcf7ed7b30943ff0134bf48a": {
"signature": "8e4ed217d01eaad950181c35baf030b34c5bebcefcf7ed7b30943ff0134bf48a",
"alternativeSignatures": [
"92448827d2c5fd15cd604c6d873be64eb2b629bb634a9d95d25aede7661e143c"
],
"target": "sdk/containerservice/Microsoft.Azure.Management.ContainerService/tests/SessionRecords/ContainerServiceTests/ContainerServiceGetCredentialsTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"f3e9f0a514c96fbd7ab81787589b4ace8c893c1f8508b4bf03b1d4666595ecea": {
"signature": "f3e9f0a514c96fbd7ab81787589b4ace8c893c1f8508b4bf03b1d4666595ecea",
"alternativeSignatures": [
"9675b14cd71483f59ab17386835dae7ed0eacb53ce5c7d734b938220d6759d7d"
],
"target": "sdk/containerservice/Microsoft.Azure.Management.ContainerService/tests/SessionRecords/ContainerServiceTests/ContainerServiceUpdateServiceTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"9187d98656e1d24c50ee2456970afa6edfa8341fde6c8ba53792d73aac7ffb6f": {
"signature": "9187d98656e1d24c50ee2456970afa6edfa8341fde6c8ba53792d73aac7ffb6f",
"alternativeSignatures": [
"971bb67b909bdc4baf7c2d3f21a55bc5916876ded8907bc73fead371d52bd4a0"
],
"target": "sdk/datalake-analytics/Microsoft.Azure.Management.DataLake.Analytics/tests/SessionRecords/AccountOperationTests/AccountCRUDTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"dbd5d0036281bd5d113b92ccc85fa7f50aaf316abec18e927f7b9ac7ac8313e2": {
"signature": "dbd5d0036281bd5d113b92ccc85fa7f50aaf316abec18e927f7b9ac7ac8313e2",
"alternativeSignatures": [
"8a97610b4ed3e0ffbd0a09c27bdc2ce3c2102c6b31a4e2660ce0c37d64a8a52e"
],
"target": "sdk/datalake-analytics/Microsoft.Azure.Management.DataLake.Analytics/tests/SessionRecords/AccountOperationTests/AccountCRUDTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"234973070ee5f853ce8e90959d50d1697142ec8bf27bda713de60f374c9fab23": {
"signature": "234973070ee5f853ce8e90959d50d1697142ec8bf27bda713de60f374c9fab23",
"alternativeSignatures": [
"f157d850be96a42f206475e5b55c1daafb5f1e3dccfca38313d677059ef7db61"
],
"target": "sdk/datalake-analytics/Microsoft.Azure.Management.DataLake.Analytics/tests/SessionRecords/AccountOperationTests/ComputePolicyCRUDTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"0cf07d76c76f798cb2a28a40c997d915a4cbcc1c0315093933af9878daac6a5b": {
"signature": "0cf07d76c76f798cb2a28a40c997d915a4cbcc1c0315093933af9878daac6a5b",
"alternativeSignatures": [
"2889bbec86836d5d81b1e891ead3cb56fae19f905089a01697eda60801a02bb8"
],
"target": "sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/tests/SessionRecords/EndToEndFunctionalTests/TopologyAndRolloutScenarioTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"14b9d14ee25556299b992a2e7c62e8767877c603b61e2ac5282e25a9f70b70dc": {
"signature": "14b9d14ee25556299b992a2e7c62e8767877c603b61e2ac5282e25a9f70b70dc",
"alternativeSignatures": [
"e76cbeab928f60416a5d5eec73848c3b5cfcda1af349e0c2bc94979a043403a8"
],
"target": "sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/tests/SessionRecords/EndToEndFunctionalTests/TopologyAndRolloutScenarioTest.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"9817d4837d8997dac1ebf543f7eca9cc378152a80dee5e6fa2627e95dd77673f": {
"signature": "9817d4837d8997dac1ebf543f7eca9cc378152a80dee5e6fa2627e95dd77673f",
"alternativeSignatures": [
"43f45f54d08a551726d12542667581df7eee5af83f2803c32a1ffa39e2006f22"
],
"target": "sdk/eventgrid/Microsoft.Azure.EventGrid/tests/SessionRecords/ScenarioTests/PublishEventsToDomain.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"6b139d456eb357bbdb776d487aaa913759b72a40ce3fdfbff3e6af3a420ba0a5": {
"signature": "6b139d456eb357bbdb776d487aaa913759b72a40ce3fdfbff3e6af3a420ba0a5",
"alternativeSignatures": [
"95eeb373b34da0d080ba262671361a5a6f05c065eeae1e9dbc06813ec333cc45"
],
"target": "sdk/eventgrid/Microsoft.Azure.EventGrid/tests/SessionRecords/ScenarioTests/PublishEventsToTopic.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"1623b06708455e3cb05c7d40a21fd93c2ee7ecbea75b97c2f37a670b7f056abe": {
"signature": "1623b06708455e3cb05c7d40a21fd93c2ee7ecbea75b97c2f37a670b7f056abe",
"alternativeSignatures": [
"dc53ed18fa02f07c72f09e743521090084a94f9c90131767ee978f60be5f00f9"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryAlertnateNameCreateGetUpdateDelete.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"196b19a687a61413327b896b4ef0451dcaf1bc34abe16d1f76d52d3cb32a5e69": {
"signature": "196b19a687a61413327b896b4ef0451dcaf1bc34abe16d1f76d52d3cb32a5e69",
"alternativeSignatures": [
"3f058c64b5a3de60d42ca134f8714a99c2cf8b4d586f146f961c17ea04ceb3d8"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryCreateGetUpdateDelete.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"e625f1c9f9fd9b39ae8c04c180c3f5c3de819e687025130aa6b042001316a0bb": {
"signature": "e625f1c9f9fd9b39ae8c04c180c3f5c3de819e687025130aa6b042001316a0bb",
"alternativeSignatures": [
"645c6a4d3acbd58ccb94e53bdf1bc6c7cdce20df3377e4411c2a3144c59614ae"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"40e68492fd647a4906a738e84c904af0c63003e8bedc63a5a2f614d757e7f0db": {
"signature": "40e68492fd647a4906a738e84c904af0c63003e8bedc63a5a2f614d757e7f0db",
"alternativeSignatures": [
"ca77f38800ed54a37f3dce635fdf9358d78149dabfc0cc1d7dd42943c3794a0f"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"9f73667249e35f3e5c1fd197494ce53d90c61eaecabe6d4fa160779217696aea": {
"signature": "9f73667249e35f3e5c1fd197494ce53d90c61eaecabe6d4fa160779217696aea",
"alternativeSignatures": [
"343d39e7a21e60df0dcdc51d296663cf3b2f1dd1cee59208592cff3f65f1d9c3"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"d6ff3fe941eb52bd684e418fb78a93e16e0b00a0e493e7a3dc2efc2f140ff4a3": {
"signature": "d6ff3fe941eb52bd684e418fb78a93e16e0b00a0e493e7a3dc2efc2f140ff4a3",
"alternativeSignatures": [
"0ba2631e2360a070e61ec44c000fa11d9500f11b473652332f0d17a5ddb9dbae"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"734b919c5d2f8c95c8bb101953e96a79ee57530b5a4ce3998918a5df07c8c475": {
"signature": "734b919c5d2f8c95c8bb101953e96a79ee57530b5a4ce3998918a5df07c8c475",
"alternativeSignatures": [
"5167be0ba6566ed3035bb1b7510fa159e7b77ef655e13ea9d64cae13e30a68cf"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"b7697f04661f06707f4c564f0cd006ffecea79ad24f7a50ede797e4b0f4ead46": {
"signature": "b7697f04661f06707f4c564f0cd006ffecea79ad24f7a50ede797e4b0f4ead46",
"alternativeSignatures": [
"9338e931dbb2755b0cfe200670e6976bea5896610d1a1d298a3ea6c0cafbaf21"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules_Length.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"cb113f1c2a9cc04c6a3d63050b6750ab37e89dbb5d8eb4ca6013eb47d26f8227": {
"signature": "cb113f1c2a9cc04c6a3d63050b6750ab37e89dbb5d8eb4ca6013eb47d26f8227",
"alternativeSignatures": [
"0ee11579ffac1ec8769b47ecdd97d7c8fcd865db7c24278cd75a847afb749b2b"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules_Length.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"f7bc048acd4a774e50f4bc513423b6f7a7a06cde37d3627e66e5ecf32dc3d387": {
"signature": "f7bc048acd4a774e50f4bc513423b6f7a7a06cde37d3627e66e5ecf32dc3d387",
"alternativeSignatures": [
"79aac6abf0641003bd95d0821d2f6249e6e1da5f4aeaaf58d45dbacd8878526a"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,
"type": null
},
"ce822a531e5663995fb142df13a5e0d1e58891eb9ecf381b07067f231d5aa485": {
"signature": "ce822a531e5663995fb142df13a5e0d1e58891eb9ecf381b07067f231d5aa485",
"alternativeSignatures": [
"78578438faf5522f54a6aa6e0c233a01bd1eed748a61a189b8050fcbb453bc43"
],
"target": "sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-07-25 23:43:21Z",
"expirationDate": null,