-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathpython.gdnbaselines
1100 lines (1100 loc) · 43.1 KB
/
python.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-02-18 01:42:17Z",
"lastUpdatedDate": "2022-02-18 01:42:17Z"
}
},
"results": {
"de11fc12d40404736083c6119db42fe4c92d7346f77c943b602a93366151459b": {
"signature": "de11fc12d40404736083c6119db42fe4c92d7346f77c943b602a93366151459b",
"alternativeSignatures": [
"0bf6d1b4c9dee32ec2d22783a9f7bf98d5383510b51886edf72828d005cf2598"
],
"target": "sdk/batch/azure-batch/tests/test_batch.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"dddcb70bc3d03b820b40ec33582bf683f570c9a8e4015d4245fab8d06da7a073": {
"signature": "dddcb70bc3d03b820b40ec33582bf683f570c9a8e4015d4245fab8d06da7a073",
"alternativeSignatures": [
"4ce59db802719a37a7d88cb8de7afb38ac863ec3c954366347324a5d50245095"
],
"target": "sdk/botservice/azure-mgmt-botservice/tests/test_mgmt_botservice_channels.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"c39a345f3bcb986c72e33811d0947f0300c287b717b922def73e785c2ee32d35": {
"signature": "c39a345f3bcb986c72e33811d0947f0300c287b717b922def73e785c2ee32d35",
"alternativeSignatures": [
"28cd79beb91a91dfb99913c8ba53ff1e3f206dd00586d1f2fd436a6e9360c455"
],
"target": "sdk/communication/azure-communication-identity/tests/testcase.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"d44bebd1b73a00ddd66cabd57545a4d8eee3ed9be829c06c8fd7fdd31792b6b0": {
"signature": "d44bebd1b73a00ddd66cabd57545a4d8eee3ed9be829c06c8fd7fdd31792b6b0",
"alternativeSignatures": [
"2f368528f4d6d3578124dcfb7917fd6e2e97a2399ffabad888d043ac500d390b"
],
"target": "sdk/communication/azure-communication-sms/tests/test_hmac.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"7d4302f9aa33c18e37228240b443885a0bc9774b81c07c554dae5d8dca64a488": {
"signature": "7d4302f9aa33c18e37228240b443885a0bc9774b81c07c554dae5d8dca64a488",
"alternativeSignatures": [
"b58da32ca6396650dd9eb2afaec46f0d70abbd9ff13fc12fea031bd0805bd8ec"
],
"target": "sdk/communication/azure-communication-sms/tests/test_hmac.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"ffc15f2d6e53059c0a18533da1654f621b67a9689e74684e27949a9b4d6bcd09": {
"signature": "ffc15f2d6e53059c0a18533da1654f621b67a9689e74684e27949a9b4d6bcd09",
"alternativeSignatures": [
"cb923c13fe2d73803bba7e5333e802f44b8707c0ea2c328ceab20a57d104b207"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/test_legacy_mgmt_misc.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0020",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"2834bc64d14f9a3370e5ca5b25ef77f0a21a437425602a9be9cf8b84bf408c3d": {
"signature": "2834bc64d14f9a3370e5ca5b25ef77f0a21a437425602a9be9cf8b84bf408c3d",
"alternativeSignatures": [
"d2190c94530719f592e9b33c2a6eb73223255db5066ea4b9564c5ebca3a17483"
],
"target": "sdk/identity/azure-identity/tests/certificate.pem",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0020",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"5fe5227f13b0099d164ce41aa18134c5ea943c9728376f5b04595553913fb575": {
"signature": "5fe5227f13b0099d164ce41aa18134c5ea943c9728376f5b04595553913fb575",
"alternativeSignatures": [
"98dccc6113a06dd8803a8b3eb53202efb128fe1097830a71098c64b465ab9649"
],
"target": "sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_compute_node_user.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"f13f294fff621661a048a84053db5747f13a4652b7e9100e5c5736020050dcf8": {
"signature": "f13f294fff621661a048a84053db5747f13a4652b7e9100e5c5736020050dcf8",
"alternativeSignatures": [
"9a91899ea7add8beecefd486b6d22da581d874a579b84e66afada98ab66f1969"
],
"target": "sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.pyTestMgmtComputeMultiVersiontest_compute_disks_multi.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0061",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"1086af8592186a45d8ae36e4009e77688994b17c86b61219702822d73c0b84df": {
"signature": "1086af8592186a45d8ae36e4009e77688994b17c86b61219702822d73c0b84df",
"alternativeSignatures": [
"71db2b1017cec08ca8403e20fcf97520bddbe719af4c4dc30a82844d474c080f"
],
"target": "sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.pyTestMgmtComputeMultiVersiontest_compute_disks_multi.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0061",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"bebd8f977e3b196ee28500d823093509bd8de9bf1e8bbe8a03922f046b0a3736": {
"signature": "bebd8f977e3b196ee28500d823093509bd8de9bf1e8bbe8a03922f046b0a3736",
"alternativeSignatures": [
"ebfd6a5a922297fc64974312fc40912f37c1792b0f7a5d7280dd8411f4af1de6"
],
"target": "sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.pyTestMgmtComputetest_compute_disks.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0061",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"a443e3469a473b2255bd6e2876bafb45d3b3c53ad7f3ff2dbd329874819e214a": {
"signature": "a443e3469a473b2255bd6e2876bafb45d3b3c53ad7f3ff2dbd329874819e214a",
"alternativeSignatures": [
"ca1a5df95761bcae4e81d171241f3a825054fe713bbda310f50c938b2f6c31ce"
],
"target": "sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.pyTestMgmtComputetest_compute_disks.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0061",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"fc6e3c2fdb47d3e875b0d86ff834c43f8106c3e2be542d5569d5cd18b8cb555b": {
"signature": "fc6e3c2fdb47d3e875b0d86ff834c43f8106c3e2be542d5569d5cd18b8cb555b",
"alternativeSignatures": [
"7f90cbb11eaab74ce222864d7544df5a049e9a094775da4b9a62c6e4791c9be7"
],
"target": "sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.pyTestMgmtComputetest_compute_shot.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0061",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"116b02e96883d5cb1848c09d555f99f0dd0552f839fc634a50d2cae9ccc5d011": {
"signature": "116b02e96883d5cb1848c09d555f99f0dd0552f839fc634a50d2cae9ccc5d011",
"alternativeSignatures": [
"180ad4d8b2c539f9a9ba5f6f938c19085668d6bc496e59b401e4a408fc8d82ca"
],
"target": "sdk/containerinstance/azure-mgmt-containerinstance/tests/recordings/test_mgmt_containerinstance.test_container_instance.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"0bacc768cf9d1e5318f83dd632a38a6eba3ff2a3e5e1330dec874127e1ad5f39": {
"signature": "0bacc768cf9d1e5318f83dd632a38a6eba3ff2a3e5e1330dec874127e1ad5f39",
"alternativeSignatures": [
"edda32f6a366045c2978a0058569b2e5da25cb6a0a5d382722324fd5e087eee6"
],
"target": "sdk/containerregistry/azure-mgmt-containerregistry/tests/recordings/test_mgmt_containerregistry.test_managed_registry.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"5e6b9eae149a4628b850b0e9b3f05d56c5163fb39c353b483703e88a911e43c2": {
"signature": "5e6b9eae149a4628b850b0e9b3f05d56c5163fb39c353b483703e88a911e43c2",
"alternativeSignatures": [
"c7a8e6a068d6257e5b6cb483872bce90969a0d966d50b09fcb7378c1237d07af"
],
"target": "sdk/containerregistry/azure-mgmt-containerregistry/tests/recordings/test_mgmt_containerregistry.test_managed_registry.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"a1b62b446694fb5a46d41699a00b45fd0660b033f9064b6f48de31986bfbccb5": {
"signature": "a1b62b446694fb5a46d41699a00b45fd0660b033f9064b6f48de31986bfbccb5",
"alternativeSignatures": [
"1d71e452c986dfde1d07a5b529f9f10495508c07005bbb0f864be85da3a48e4b"
],
"target": "sdk/containerregistry/azure-mgmt-containerregistry/tests/recordings/test_mgmt_containerregistry_2017_03_01.test_basic_registry.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"2553484f085ef741204474129433e4c5a58071116c9208cac1d41b5c06f815b6": {
"signature": "2553484f085ef741204474129433e4c5a58071116c9208cac1d41b5c06f815b6",
"alternativeSignatures": [
"f3b5300099a52f9fc7636c35825c41c42c3b710749f807064287c58ae8671a33"
],
"target": "sdk/containerregistry/azure-mgmt-containerregistry/tests/recordings/test_mgmt_containerregistry_2018_02_01_preview.test_managed_registry.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"35240efbeb6cb3e22e81285e2efe1bada9814c8d653cd395602a3dc2d244a014": {
"signature": "35240efbeb6cb3e22e81285e2efe1bada9814c8d653cd395602a3dc2d244a014",
"alternativeSignatures": [
"fead61099d6eee5832908795e5ba8db45359a88a300c05987017170ea159fae5"
],
"target": "sdk/containerregistry/azure-mgmt-containerregistry/tests/recordings/test_mgmt_containerregistry_2018_02_01_preview.test_managed_registry.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"dd0d2437c7427b0563f2877e2f88fc6517de4ae911b1644aaf9375e89ac00f64": {
"signature": "dd0d2437c7427b0563f2877e2f88fc6517de4ae911b1644aaf9375e89ac00f64",
"alternativeSignatures": [
"a407dbf54d6b3f53ec4e5a045a29f43df83ff0ef7d507565f79875faeb6b09a9"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/recordings/test_legacy_mgmt_servicebus.test_create_namespace.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"9a0cecec43be420aae03f0a4137c98cba000176b94d5461acc54a15277650c9d": {
"signature": "9a0cecec43be420aae03f0a4137c98cba000176b94d5461acc54a15277650c9d",
"alternativeSignatures": [
"b8fd71b4ac8221f23612a38b7df39aa97a4b2f45958745fbb3c77819d4da40b3"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/recordings/test_legacy_mgmt_servicebus.test_create_namespace.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"e30a5e150de4ea32a1b1fb2fa4d972eeef4c22d8ce018152fa7534b9507376ff": {
"signature": "e30a5e150de4ea32a1b1fb2fa4d972eeef4c22d8ce018152fa7534b9507376ff",
"alternativeSignatures": [
"100ed0afaa5d76dee03272dc7e55caea28d4e768e760cf179c1913a52a1e1caa"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/recordings/test_legacy_mgmt_servicebus.test_create_namespace_with_existing_namespace.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"34468a856c825186db00adcfbeaf078b802ce2185468a6d71bc30ac459d7fb4c": {
"signature": "34468a856c825186db00adcfbeaf078b802ce2185468a6d71bc30ac459d7fb4c",
"alternativeSignatures": [
"5604ea9d42da09199affe126a3427402c1b9d7f5da827f854d3cedae8229477c"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/recordings/test_legacy_mgmt_servicebus.test_create_namespace_with_existing_namespace.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"25aaf152b4d29904d288f3dd88e34da7ab168def35919afe5a48512e868d05b9": {
"signature": "25aaf152b4d29904d288f3dd88e34da7ab168def35919afe5a48512e868d05b9",
"alternativeSignatures": [
"0b597d6af99f04f94293cb0388b285e7496a07cb6b78816f803408782f8fba00"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/recordings/test_legacy_mgmt_servicebus.test_delete_namespace.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"b918e51447cc805762324a4768b5834078adf9785891887f2f6fd77ad8547abf": {
"signature": "b918e51447cc805762324a4768b5834078adf9785891887f2f6fd77ad8547abf",
"alternativeSignatures": [
"4f94ba2fcbe4022a80dbb4e993c076243e9804c40c17aa3d0f536990b47f0fe8"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/recordings/test_legacy_mgmt_servicebus.test_delete_namespace.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"d3b98ea796d302ca212755f401db7e47524833eb3fd33e5195b1c19527b9597b": {
"signature": "d3b98ea796d302ca212755f401db7e47524833eb3fd33e5195b1c19527b9597b",
"alternativeSignatures": [
"cc7e8c3a13fbe92e3fdb50e45f5ca0bd3568d05c93413e5da95d4f8bbde15230"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/recordings/test_legacy_mgmt_servicebus.test_list_namespaces.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"3e7c83a17756b088b2f12efd6b96706fd4178923a77542193828482c54596be7": {
"signature": "3e7c83a17756b088b2f12efd6b96706fd4178923a77542193828482c54596be7",
"alternativeSignatures": [
"7716304c0be04807eb0233f6c63b101f56f83de49a2ff1cc8b43cfa3d5a02c8b"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/recordings/test_legacy_mgmt_servicebus.test_list_namespaces.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"e2cfde3086eccbf3b095b61f8b46009b1c2e0f6a74551479fae1dc608e9b66c6": {
"signature": "e2cfde3086eccbf3b095b61f8b46009b1c2e0f6a74551479fae1dc608e9b66c6",
"alternativeSignatures": [
"a17671430527d899a7d1eb7f0911c2d5c2d1186d838d84ba8054c67b36dec3d1"
],
"target": "sdk/core/azure-servicemanagement-legacy/tests/recordings/test_legacy_mgmt_servicebus.test_list_namespaces.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"a1914f341cdb6d59b13ee9784986ca800402ecb754389b9855a47af09ed6335b": {
"signature": "a1914f341cdb6d59b13ee9784986ca800402ecb754389b9855a47af09ed6335b",
"alternativeSignatures": [
"eb1e12efe5b42b80279aabc602a514dfbfe09a7c7bd8cf005be07a7c8889fb44"
],
"target": "sdk/cosmos/azure-mgmt-cosmosdb/tests/recordings/test_mgmt_cosmosdb.test_accounts_features.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"9c9109e57c24ac8a7ed0fffb3383e17d5d21a17b44a592e034a79b504273d823": {
"signature": "9c9109e57c24ac8a7ed0fffb3383e17d5d21a17b44a592e034a79b504273d823",
"alternativeSignatures": [
"d0c926515b6ec36ff2d7c2a82bbb743d3bfe0762939963fd26d4c81f163e3890"
],
"target": "sdk/cosmos/azure-mgmt-cosmosdb/tests/recordings/test_mgmt_cosmosdb.test_accounts_features.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"a222f5d49669511ca6407b171601adc149ac4e57d2779cc4b45020491dbaf3bc": {
"signature": "a222f5d49669511ca6407b171601adc149ac4e57d2779cc4b45020491dbaf3bc",
"alternativeSignatures": [
"ef264d613f18d1f5762fac4fbfb0a0ce5755e55290b0c34c51d03c5936be6178"
],
"target": "sdk/cosmos/azure-mgmt-documentdb/tests/recordings/test_mgmt_documentdb.test_accounts_features.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0070",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"557958a9890f1c4ea1d688a53be6e5ec4007cc538ef7deab1aae8edfd1d602e1": {
"signature": "557958a9890f1c4ea1d688a53be6e5ec4007cc538ef7deab1aae8edfd1d602e1",
"alternativeSignatures": [
"6b2637cabae94d444c424cba1860ec5815a6d14bf5bae61a08b28ff7c7ca33f9"
],
"target": "sdk/cosmos/azure-mgmt-documentdb/tests/recordings/test_mgmt_documentdb.test_accounts_features.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0080",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"ae22b088dbd02acb1911e52ec8280e480484b58e15a37b0f73b07823ef74f5a6": {
"signature": "ae22b088dbd02acb1911e52ec8280e480484b58e15a37b0f73b07823ef74f5a6",
"alternativeSignatures": [
"689f1f1671903e07f228af1c17d36dc295a942bb1159b1ee7fc0043597cddd70"
],
"target": "sdk/cosmos/azure-mgmt-documentdb/tests/recordings/test_mgmt_documentdb.test_accounts_features.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0080",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"ea4d0137f7b9b64ecd00ca186fb4f1029d8f6309b1e544d7e01f1c3f2f59f0e0": {
"signature": "ea4d0137f7b9b64ecd00ca186fb4f1029d8f6309b1e544d7e01f1c3f2f59f0e0",
"alternativeSignatures": [
"57758a7d3c25f536481c9418b3dfa13ad18d97738942afe3fb8b601552098333"
],
"target": "sdk/media/azure-mgmt-media/tests/recordings/test_mgmt_media.test_media.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"a2746acd91b8793f84c6ae5efd9788033f385af4821078762bf59e50a6a99420": {
"signature": "a2746acd91b8793f84c6ae5efd9788033f385af4821078762bf59e50a6a99420",
"alternativeSignatures": [
"b484c2a20c258021b51df9c95c82a49c87ba0a93b7dd9f62099626cb215e81a6"
],
"target": "sdk/media/azure-mgmt-media/tests/recordings/test_mgmt_media.test_media.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0130",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"3c613692335a0af490f013e0a3ad267420bc25d35508cd7fbc578ba7b478314f": {
"signature": "3c613692335a0af490f013e0a3ad267420bc25d35508cd7fbc578ba7b478314f",
"alternativeSignatures": [
"fe857dacf33cfc46b889a75f00fbfe3cf07b22c734186f890c89ceb41d4eba93"
],
"target": "sdk/media/azure-mgmt-media/tests/recordings/test_mgmt_media.test_media.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0140",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"1e7d86db2fc7c4b613fe624c04d8bf0c49e6b112410e6db81d78b0132e283412": {
"signature": "1e7d86db2fc7c4b613fe624c04d8bf0c49e6b112410e6db81d78b0132e283412",
"alternativeSignatures": [
"3b19e1acafee500e7270790126887b9665dff5c354d54da338cd0eb8edc93191"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_hybridconnection.pyTestMgmtHybridConnectiontest_hybridconnetion_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"15c31149283453dfaa9d3069e72e86ea426aa639e52672b05861f384ff616b12": {
"signature": "15c31149283453dfaa9d3069e72e86ea426aa639e52672b05861f384ff616b12",
"alternativeSignatures": [
"7b1b687194cf6ac9ddf469423b6864eca7940d928a6d19af55ba081fee4b0b23"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_hybridconnection.pyTestMgmtHybridConnectiontest_hybridconnetion_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"88fcf8971c622908fefbf3599b7d0cc2a69507276925d53ce9ae7b759e31c5af": {
"signature": "88fcf8971c622908fefbf3599b7d0cc2a69507276925d53ce9ae7b759e31c5af",
"alternativeSignatures": [
"49460341a6e2bd48ab754c7bdd7c5f9c210840c5d353c59615b0fe7fc0eee065"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_hybridconnection.pyTestMgmtHybridConnectiontest_hybridconnetion_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"5edb2f7037beef60371f04c96e95d702e8d0d04cb5b51ff1f385a6f3f2fd95a6": {
"signature": "5edb2f7037beef60371f04c96e95d702e8d0d04cb5b51ff1f385a6f3f2fd95a6",
"alternativeSignatures": [
"3dc837ddb5b33af7e7acfa331bc52757f93dc2a9d350a27dda9fc6bac99fa601"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_hybridconnection.pyTestMgmtHybridConnectiontest_hybridconnetion_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"eba40420509fd7141768fd0f37ddf84f8c61fd15678a9f4961a8202776079568": {
"signature": "eba40420509fd7141768fd0f37ddf84f8c61fd15678a9f4961a8202776079568",
"alternativeSignatures": [
"00bbb0d04917169e4bf7bc294301396a3f91ee9994b2a37eeb6c652c6defc7c7"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_hybridconnection.pyTestMgmtHybridConnectiontest_hybridconnetion_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"ecb016d73c2d6c2e0d5b95779e0567eff98a9831272f79f8617b643c85121119": {
"signature": "ecb016d73c2d6c2e0d5b95779e0567eff98a9831272f79f8617b643c85121119",
"alternativeSignatures": [
"311dff96a6b0f442b1b0c6975e182a1a4970afc31a38f47c6f30197e50b508f2"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_hybridconnection.pyTestMgmtHybridConnectiontest_hybridconnetion_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"dc605ec97f881e304cb22ff394062e2f750d5ba2a5a1eab2a892ae5384c648db": {
"signature": "dc605ec97f881e304cb22ff394062e2f750d5ba2a5a1eab2a892ae5384c648db",
"alternativeSignatures": [
"bf20ddac5e74b2d4874c1d95b2991b67b353a2089020140b27304b3d99baae6c"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_relay_namespace.pyTestMgmtRelayNamespacetest_relay_namespace_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"a367e52705595b08eba136ae74f61d4c6366d03a3043a6d938055c9069911e85": {
"signature": "a367e52705595b08eba136ae74f61d4c6366d03a3043a6d938055c9069911e85",
"alternativeSignatures": [
"195bb8939ec1f9a32d6286fe61bca11ab21ea518e2485ee0b78ff514ddc022f9"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_relay_namespace.pyTestMgmtRelayNamespacetest_relay_namespace_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"1fc36472e4decf99035b082680392d87c30043d7c204923c0092b10dca30fb37": {
"signature": "1fc36472e4decf99035b082680392d87c30043d7c204923c0092b10dca30fb37",
"alternativeSignatures": [
"d921eaf71a24fb1543f08e808572c9cd50bc6d36bee20cd1322d6cd16e539864"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_relay_namespace.pyTestMgmtRelayNamespacetest_relay_namespace_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"e942f433f2ddc2d76840577bcfbed4341a6ddd1056af902d72f61f4b5518388d": {
"signature": "e942f433f2ddc2d76840577bcfbed4341a6ddd1056af902d72f61f4b5518388d",
"alternativeSignatures": [
"2ad70140a0a1f6493c0e5b0be5fdf181de38b8edfedcdd84fe9c49af971e7b9c"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_relay_namespace.pyTestMgmtRelayNamespacetest_relay_namespace_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"6e52109c27aa67ee66129e1fffe2fdb98bcdcbb7a2ff867755ef29059a5058c9": {
"signature": "6e52109c27aa67ee66129e1fffe2fdb98bcdcbb7a2ff867755ef29059a5058c9",
"alternativeSignatures": [
"4342c6358bfc427efc78c3a6bbb1a887a5dc8f266f80b8b1b29359b4cc14e4e7"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_wcfrelay.pyTestMgmtWcfRelaytest_wcfrelay_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"c478d193d3971cfe34a749d5fea6edcaced8388a015f8354c83567b03e1cc615": {
"signature": "c478d193d3971cfe34a749d5fea6edcaced8388a015f8354c83567b03e1cc615",
"alternativeSignatures": [
"d26131ee406d4594711212f6e8d21bfad39da0b7a9746aaabf66caccd645ddfc"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_wcfrelay.pyTestMgmtWcfRelaytest_wcfrelay_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"ad6b45dbb56574dcfd3be06e9b9b5a696824f9c858b6530a658d20fee2392791": {
"signature": "ad6b45dbb56574dcfd3be06e9b9b5a696824f9c858b6530a658d20fee2392791",
"alternativeSignatures": [
"5992f13feae49e8a49d77c86c1f646e34c04c298f7b10b000e71fc49ac2c9724"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_wcfrelay.pyTestMgmtWcfRelaytest_wcfrelay_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"9d62694e1cd85ee220ab603bc15fc57fa3df70b6a9a6dbb9457c77ba114851f7": {
"signature": "9d62694e1cd85ee220ab603bc15fc57fa3df70b6a9a6dbb9457c77ba114851f7",
"alternativeSignatures": [
"77e7b3d99cebefea2b26d446e716f7fbe41d5c98b526ba01eafdacb237d945ef"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_wcfrelay.pyTestMgmtWcfRelaytest_wcfrelay_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"8eca1134de25ca7441328d4f4c8fe2ff8d049f04676a975e3cef433825289c91": {
"signature": "8eca1134de25ca7441328d4f4c8fe2ff8d049f04676a975e3cef433825289c91",
"alternativeSignatures": [
"d030f9dd03806dce8428ba1b095ea9846f5f32ca5c4d144f7532545d8ab79b14"
],
"target": "sdk/relay/azure-mgmt-relay/tests/recordings/test_azure_mgmt_wcfrelay.pyTestMgmtWcfRelaytest_wcfrelay_curd.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"df5264715670b0a89bf35983217f0bebfdf06391ebd5db12cf9a896f684e2e6e": {
"signature": "df5264715670b0a89bf35983217f0bebfdf06391ebd5db12cf9a896f684e2e6e",
"alternativeSignatures": [
"eb28ce5953df199a8e7a70ddab58af84566a2555ef767d5caddbee660d3b54b1"
],
"target": "sdk/servermanager/azure-mgmt-servermanager/tests/recordings/test_mgmt_servermanager.test_servermanager_gateways.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"1fa7a834708edd9b11815d09f7237aa7635b0f76c3c0c2383d5cdf0a3bb304d0": {
"signature": "1fa7a834708edd9b11815d09f7237aa7635b0f76c3c0c2383d5cdf0a3bb304d0",
"alternativeSignatures": [
"b653f070ec5350ac7cfd67429c8db3477d2fdac9874cdffb474f44d45d8ae978"
],
"target": "sdk/servermanager/azure-mgmt-servermanager/tests/recordings/test_mgmt_servermanager.test_servermanager_gateways.yaml",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0140",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"56eb34ac0e1ba34fa5ebac07de2ea70fcf49e2e927eaa3063e253a8f7a214c33": {
"signature": "56eb34ac0e1ba34fa5ebac07de2ea70fcf49e2e927eaa3063e253a8f7a214c33",
"alternativeSignatures": [
"2c805a4cdfc3558ca5ea6a4f7e4ea31a2744c7a9ee6ec0c969011564df88dc69"
],
"target": "sdk/servicebus/azure-mgmt-servicebus/tests/recordings/test_cli_mgmt_servicebus_queue.pyTestMgmtServiceBustest_queue.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-AZURE0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"182b7cee687a34b44147d3d2a1bbf1e350202486d3770ad65012a65e924b3d11": {
"signature": "182b7cee687a34b44147d3d2a1bbf1e350202486d3770ad65012a65e924b3d11",
"alternativeSignatures": [
"1b4c29e929a24ba63ce1aef6badf148b8548ac8442d95c3da9ad1c15741fef4c"
],
"target": "sdk/servicebus/azure-mgmt-servicebus/tests/recordings/test_cli_mgmt_servicebus_queue.pyTestMgmtServiceBustest_queue.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"15946a29c5d821c302833c7c2d14bc4e3e50719eea24d7c7fe52452747502b91": {
"signature": "15946a29c5d821c302833c7c2d14bc4e3e50719eea24d7c7fe52452747502b91",
"alternativeSignatures": [
"602b4828e3c8b13318474039e95cddef40526fd77985c86c6fbdf3b2eda1b1ee"
],
"target": "sdk/servicebus/azure-mgmt-servicebus/tests/recordings/test_cli_mgmt_servicebus_topic.pyTestMgmtServiceBustest_topic.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"cafa82e6128436754c2b64ea79964e1395f7169931a0de68c2742345c713f584": {
"signature": "cafa82e6128436754c2b64ea79964e1395f7169931a0de68c2742345c713f584",
"alternativeSignatures": [
"2237c11208aaef94bb26964e1b051b31aeda124bc35424f64bb2822b0f3875d7"
],
"target": "sdk/servicebus/azure-mgmt-servicebus/tests/recordings/test_cli_mgmt_servicebus_topic.pyTestMgmtServiceBustest_topic.json",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0060",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"2e7465a04c1dbba0d4c023349e82ae91395332f43fa70623aea90945632589ef": {
"signature": "2e7465a04c1dbba0d4c023349e82ae91395332f43fa70623aea90945632589ef",
"alternativeSignatures": [
"c06f5b709484d7c7b8a8d816e111dfccfa116d62e5f85cb6b00d35df5d9c72a6"
],
"target": "sdk/servicefabric/azure-servicefabric/azure/servicefabric/models/_models_py3.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"c15c7a1a72ed8b97adb1b1220fa1b5d00451a2de82f9ae7286626162e3884291": {
"signature": "c15c7a1a72ed8b97adb1b1220fa1b5d00451a2de82f9ae7286626162e3884291",
"alternativeSignatures": [
"e4986b7fb16a3f4889ee02d9cbf83c7754f2afd41d6ad72a13043b0fa3fe0484"
],
"target": "sdk/labservices/azure-mgmt-labservices/azure/mgmt/labservices/models/_models_py3.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"b8eb65f964eb239b61fd9362d333c1583d50f738aa47bd9508f38ee5bcc6bfb5": {
"signature": "b8eb65f964eb239b61fd9362d333c1583d50f738aa47bd9508f38ee5bcc6bfb5",
"alternativeSignatures": [
"0846a4a801e7aec45785c5f83af7c67d513bdf7b68feb7d0daf679ff820727fa"
],
"target": "sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2017_10_01/models/_models_py3.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"5c25588bef4565a1b381bcb97c6ad8e5af347cf9920cd1a5675a5bc6874a006e": {
"signature": "5c25588bef4565a1b381bcb97c6ad8e5af347cf9920cd1a5675a5bc6874a006e",
"alternativeSignatures": [
"ccdb197cc6dd2a3983505d2e0f7a90ccde5aca1f1daf8ded2f89f986a8faf13e"
],
"target": "sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01/models/_models_py3.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,
"type": null
},
"bfb6a3440b8721b13ee6f2e87e9a4231d580c6660baa83abe6647c42398837fb": {
"signature": "bfb6a3440b8721b13ee6f2e87e9a4231d580c6660baa83abe6647c42398837fb",
"alternativeSignatures": [
"3ec9617a4dd3cf0ac16c5a5aa3d83d4649825f7f844ae67e9a5af0ce202d85e6"
],
"target": "sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py",
"memberOf": [
"baseline"
],
"tool": "credscan",
"ruleId": "CSCAN-GENERAL0030",
"justification": null,
"createdDate": "2022-02-18 01:42:17Z",
"expirationDate": null,