-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrivy-output-secure.json
More file actions
10324 lines (10324 loc) · 481 KB
/
trivy-output-secure.json
File metadata and controls
10324 lines (10324 loc) · 481 KB
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
{
"SchemaVersion": 2,
"CreatedAt": "2025-11-29T15:40:44.826807342Z",
"ArtifactName": "/scan/secure-app.tar",
"ArtifactType": "container_image",
"Metadata": {
"Size": 538802176,
"OS": {
"Family": "debian",
"Name": "13.2"
},
"ImageID": "sha256:5305773223c6b8a03e7f5a37f875288ce08b68f4df6063f1e6072d2c11be4a83",
"DiffIDs": [
"sha256:70a290c5e58b68f39496ab93a62f21b8b2ca0502e97905131838de1b39a37cbb",
"sha256:ae5637ef40a1f05635c94c972959f0b21ed1120dbcfa4bc8ef9f8ae771b58d0b",
"sha256:9c895a85998d9520762f24ae911a6fc978deb7aba8a107a7332509fd1d37b138",
"sha256:e269231b9601ce7d6942e0a22164f1fbbbfbcb2cba6d89da875f151713921171",
"sha256:4faeaba4fd5b3b133a815e51fc376751f3a10e592330acce3d6297231221a0fd",
"sha256:8be6cbf568a870ff944ad7855d97893d5e3b6ed849ed7fb2198e300c84a86442",
"sha256:b7ff2445d4af7d1312d63389af54e8fe245f088eb28948818aedb4f2dd41b82f",
"sha256:f27886c7c657ce9114e4e4ec4f12bc298101f3d8079c15110f1054aefdd9a65f"
],
"ImageConfig": {
"architecture": "amd64",
"created": "2025-11-29T15:26:13.238238926Z",
"history": [
{
"created": "2025-11-17T00:00:00Z",
"created_by": "# debian.sh --arch 'amd64' out/ 'trixie' '@1763337600'",
"comment": "debuerreotype 0.16"
},
{
"created": "2025-11-18T05:49:42.360846724Z",
"created_by": "ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"comment": "buildkit.dockerfile.v0",
"empty_layer": true
},
{
"created": "2025-11-18T05:49:42.360846724Z",
"created_by": "ENV LANG=C.UTF-8",
"comment": "buildkit.dockerfile.v0",
"empty_layer": true
},
{
"created": "2025-11-18T05:49:42.360846724Z",
"created_by": "RUN /bin/sh -c set -eux; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tca-certificates \t\tnetbase \t\ttzdata \t; \tapt-get dist-clean # buildkit",
"comment": "buildkit.dockerfile.v0"
},
{
"created": "2025-11-18T05:49:42.360846724Z",
"created_by": "ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305",
"comment": "buildkit.dockerfile.v0",
"empty_layer": true
},
{
"created": "2025-11-18T05:49:42.360846724Z",
"created_by": "ENV PYTHON_VERSION=3.12.12",
"comment": "buildkit.dockerfile.v0",
"empty_layer": true
},
{
"created": "2025-11-18T05:49:42.360846724Z",
"created_by": "ENV PYTHON_SHA256=fb85a13414b028c49ba18bbd523c2d055a30b56b18b92ce454ea2c51edc656c4",
"comment": "buildkit.dockerfile.v0",
"empty_layer": true
},
{
"created": "2025-11-18T05:58:20.801155531Z",
"created_by": "RUN /bin/sh -c set -eux; \t\tsavedAptMark=\"$(apt-mark showmanual)\"; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tdpkg-dev \t\tgcc \t\tgnupg \t\tlibbluetooth-dev \t\tlibbz2-dev \t\tlibc6-dev \t\tlibdb-dev \t\tlibffi-dev \t\tlibgdbm-dev \t\tliblzma-dev \t\tlibncursesw5-dev \t\tlibreadline-dev \t\tlibsqlite3-dev \t\tlibssl-dev \t\tmake \t\ttk-dev \t\tuuid-dev \t\twget \t\txz-utils \t\tzlib1g-dev \t; \t\twget -O python.tar.xz \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz\"; \techo \"$PYTHON_SHA256 *python.tar.xz\" | sha256sum -c -; \twget -O python.tar.xz.asc \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc\"; \tGNUPGHOME=\"$(mktemp -d)\"; export GNUPGHOME; \tgpg --batch --keyserver hkps://keys.openpgp.org --recv-keys \"$GPG_KEY\"; \tgpg --batch --verify python.tar.xz.asc python.tar.xz; \tgpgconf --kill all; \trm -rf \"$GNUPGHOME\" python.tar.xz.asc; \tmkdir -p /usr/src/python; \ttar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; \trm python.tar.xz; \t\tcd /usr/src/python; \tgnuArch=\"$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)\"; \t./configure \t\t--build=\"$gnuArch\" \t\t--enable-loadable-sqlite-extensions \t\t--enable-optimizations \t\t--enable-option-checking=fatal \t\t--enable-shared \t\t$(test \"${gnuArch%%-*}\" != 'riscv64' \u0026\u0026 echo '--with-lto') \t\t--with-ensurepip \t; \tnproc=\"$(nproc)\"; \tEXTRA_CFLAGS=\"$(dpkg-buildflags --get CFLAGS)\"; \tLDFLAGS=\"$(dpkg-buildflags --get LDFLAGS)\"; \tLDFLAGS=\"${LDFLAGS:--Wl},--strip-all\"; \t\tarch=\"$(dpkg --print-architecture)\"; arch=\"${arch##*-}\"; \t\tcase \"$arch\" in \t\t\tamd64|arm64) \t\t\t\tEXTRA_CFLAGS=\"${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer\"; \t\t\t\t;; \t\t\ti386) \t\t\t\t;; \t\t\t*) \t\t\t\tEXTRA_CFLAGS=\"${EXTRA_CFLAGS:-} -fno-omit-frame-pointer\"; \t\t\t\t;; \t\tesac; \tmake -j \"$nproc\" \t\t\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\" \t\t\"LDFLAGS=${LDFLAGS:-}\" \t; \trm python; \tmake -j \"$nproc\" \t\t\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\" \t\t\"LDFLAGS=${LDFLAGS:--Wl},-rpath='\\$\\$ORIGIN/../lib'\" \t\tpython \t; \tmake install; \t\tcd /; \trm -rf /usr/src/python; \t\tfind /usr/local -depth \t\t\\( \t\t\t\\( -type d -a \\( -name test -o -name tests -o -name idle_test \\) \\) \t\t\t-o \\( -type f -a \\( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \\) \\) \t\t\\) -exec rm -rf '{}' + \t; \t\tldconfig; \t\tapt-mark auto '.*' \u003e /dev/null; \tapt-mark manual $savedAptMark; \tfind /usr/local -type f -executable -not \\( -name '*tkinter*' \\) -exec ldd '{}' ';' \t\t| awk '/=\u003e/ { so = $(NF-1); if (index(so, \"/usr/local/\") == 1) { next }; gsub(\"^/(usr/)?\", \"\", so); printf \"*%s\\n\", so }' \t\t| sort -u \t\t| xargs -rt dpkg-query --search \t\t| awk 'sub(\":$\", \"\", $1) { print $1 }' \t\t| sort -u \t\t| xargs -r apt-mark manual \t; \tapt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \tapt-get dist-clean; \t\texport PYTHONDONTWRITEBYTECODE=1; \tpython3 --version; \tpip3 --version # buildkit",
"comment": "buildkit.dockerfile.v0"
},
{
"created": "2025-11-18T05:58:20.927958486Z",
"created_by": "RUN /bin/sh -c set -eux; \tfor src in idle3 pip3 pydoc3 python3 python3-config; do \t\tdst=\"$(echo \"$src\" | tr -d 3)\"; \t\t[ -s \"/usr/local/bin/$src\" ]; \t\t[ ! -e \"/usr/local/bin/$dst\" ]; \t\tln -svT \"$src\" \"/usr/local/bin/$dst\"; \tdone # buildkit",
"comment": "buildkit.dockerfile.v0"
},
{
"created": "2025-11-18T05:58:20.927958486Z",
"created_by": "CMD [\"python3\"]",
"comment": "buildkit.dockerfile.v0",
"empty_layer": true
},
{
"created": "2025-11-29T12:46:13.264288308Z",
"created_by": "WORKDIR /app",
"comment": "buildkit.dockerfile.v0"
},
{
"created": "2025-11-29T15:26:02.988816146Z",
"created_by": "COPY . /app # buildkit",
"comment": "buildkit.dockerfile.v0"
},
{
"created": "2025-11-29T15:26:12.294888074Z",
"created_by": "RUN /bin/sh -c pip install --no-cache-dir flask==2.3.2 # buildkit",
"comment": "buildkit.dockerfile.v0"
},
{
"created": "2025-11-29T15:26:13.238238926Z",
"created_by": "RUN /bin/sh -c adduser --disabled-password appuser # buildkit",
"comment": "buildkit.dockerfile.v0"
},
{
"created": "2025-11-29T15:26:13.238238926Z",
"created_by": "USER appuser",
"comment": "buildkit.dockerfile.v0",
"empty_layer": true
},
{
"created": "2025-11-29T15:26:13.238238926Z",
"created_by": "EXPOSE \u0026{[{{7 0} {7 0}}] 0xc001c92d40}",
"comment": "buildkit.dockerfile.v0",
"empty_layer": true
},
{
"created": "2025-11-29T15:26:13.238238926Z",
"created_by": "CMD [\"python\" \"app.py\"]",
"comment": "buildkit.dockerfile.v0",
"empty_layer": true
}
],
"os": "linux",
"rootfs": {
"type": "layers",
"diff_ids": [
"sha256:70a290c5e58b68f39496ab93a62f21b8b2ca0502e97905131838de1b39a37cbb",
"sha256:ae5637ef40a1f05635c94c972959f0b21ed1120dbcfa4bc8ef9f8ae771b58d0b",
"sha256:9c895a85998d9520762f24ae911a6fc978deb7aba8a107a7332509fd1d37b138",
"sha256:e269231b9601ce7d6942e0a22164f1fbbbfbcb2cba6d89da875f151713921171",
"sha256:4faeaba4fd5b3b133a815e51fc376751f3a10e592330acce3d6297231221a0fd",
"sha256:8be6cbf568a870ff944ad7855d97893d5e3b6ed849ed7fb2198e300c84a86442",
"sha256:b7ff2445d4af7d1312d63389af54e8fe245f088eb28948818aedb4f2dd41b82f",
"sha256:f27886c7c657ce9114e4e4ec4f12bc298101f3d8079c15110f1054aefdd9a65f"
]
},
"config": {
"Cmd": [
"python",
"app.py"
],
"Env": [
"PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"LANG=C.UTF-8",
"GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305",
"PYTHON_VERSION=3.12.12",
"PYTHON_SHA256=fb85a13414b028c49ba18bbd523c2d055a30b56b18b92ce454ea2c51edc656c4"
],
"User": "appuser",
"WorkingDir": "/app",
"ExposedPorts": {
"5000/tcp": {}
},
"ArgsEscaped": true
}
},
"Layers": [
{
"Size": 81039360,
"Digest": "sha256:0e4bc2bd6656e6e004e3c749af70e5650bac2258243eb0949dea51cb8b7863db",
"DiffID": "sha256:70a290c5e58b68f39496ab93a62f21b8b2ca0502e97905131838de1b39a37cbb"
},
{
"Size": 4123136,
"Digest": "sha256:490b9a1c25e472ab1cceab4ed6f3bd252006f7c6eea0ef7ba845c996adb6f302",
"DiffID": "sha256:ae5637ef40a1f05635c94c972959f0b21ed1120dbcfa4bc8ef9f8ae771b58d0b"
},
{
"Size": 38087168,
"Digest": "sha256:0674d14a155c94f13e648265aa3ba62410e1fe0387fef64cc608388e54232880",
"DiffID": "sha256:9c895a85998d9520762f24ae911a6fc978deb7aba8a107a7332509fd1d37b138"
},
{
"Size": 5120,
"Digest": "sha256:b7ba6d2a1fc72f9587288b3b60221d1b07dae4f61a41360d2cc281fe7c007b3a",
"DiffID": "sha256:e269231b9601ce7d6942e0a22164f1fbbbfbcb2cba6d89da875f151713921171"
},
{
"Size": 1536,
"Digest": "sha256:7fd24cf854830fc70457b6f2fb502e83ff185f79ace337efab28f2c0bcf949e1",
"DiffID": "sha256:4faeaba4fd5b3b133a815e51fc376751f3a10e592330acce3d6297231221a0fd"
},
{
"Size": 402179072,
"Digest": "sha256:361fee5213757d32aa93d2aef16745a779b56ea608d565fd3853af0dcff42210",
"DiffID": "sha256:8be6cbf568a870ff944ad7855d97893d5e3b6ed849ed7fb2198e300c84a86442"
},
{
"Size": 13344256,
"Digest": "sha256:01a116f0ee6cef382172ff18180884f06887ddba561992f2248b3a59f8a15d69",
"DiffID": "sha256:b7ff2445d4af7d1312d63389af54e8fe245f088eb28948818aedb4f2dd41b82f"
},
{
"Size": 22528,
"Digest": "sha256:556edc4a0e2ab997c12931b39cff0da132813388dc9ac7b3e442c3afbbf2b49b",
"DiffID": "sha256:f27886c7c657ce9114e4e4ec4f12bc298101f3d8079c15110f1054aefdd9a65f"
}
]
},
"Results": [
{
"Target": "/scan/secure-app.tar (debian 13.2)",
"Class": "os-pkgs",
"Type": "debian",
"Packages": [
{
"ID": "adduser@3.152",
"Name": "adduser",
"Identifier": {
"PURL": "pkg:deb/debian/adduser@3.152?arch=all\u0026distro=debian-13.2",
"UID": "a26e3466c18314ad"
},
"Version": "3.152",
"Arch": "all",
"SrcName": "adduser",
"SrcVersion": "3.152",
"Licenses": [
"GPL-2.0-or-later",
"GPL-2.0-only"
],
"Maintainer": "Debian Adduser Developers \u003cadduser@packages.debian.org\u003e",
"DependsOn": [
"passwd@1:4.17.4-2"
],
"Layer": {
"Digest": "sha256:0674d14a155c94f13e648265aa3ba62410e1fe0387fef64cc608388e54232880",
"DiffID": "sha256:9c895a85998d9520762f24ae911a6fc978deb7aba8a107a7332509fd1d37b138"
},
"InstalledFiles": [
"/usr/sbin/adduser",
"/usr/sbin/deluser",
"/usr/share/doc/adduser/NEWS.Debian.gz",
"/usr/share/doc/adduser/README.gz",
"/usr/share/doc/adduser/TODO",
"/usr/share/doc/adduser/changelog.gz",
"/usr/share/doc/adduser/copyright",
"/usr/share/doc/adduser/examples/INSTALL",
"/usr/share/doc/adduser/examples/README",
"/usr/share/doc/adduser/examples/adduser.conf",
"/usr/share/doc/adduser/examples/adduser.local",
"/usr/share/doc/adduser/examples/adduser.local.conf",
"/usr/share/doc/adduser/examples/adduser.local.conf.examples/bash.bashrc",
"/usr/share/doc/adduser/examples/adduser.local.conf.examples/profile",
"/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel.other/index.html",
"/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bash_logout",
"/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bash_profile",
"/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bashrc",
"/usr/share/doc/adduser/examples/deluser.conf",
"/usr/share/man/da/man5/deluser.conf.5.gz",
"/usr/share/man/de/man5/adduser.conf.5.gz",
"/usr/share/man/de/man5/deluser.conf.5.gz",
"/usr/share/man/de/man8/adduser.8.gz",
"/usr/share/man/de/man8/adduser.local.8.gz",
"/usr/share/man/de/man8/deluser.8.gz",
"/usr/share/man/es/man5/deluser.conf.5.gz",
"/usr/share/man/fr/man5/adduser.conf.5.gz",
"/usr/share/man/fr/man5/deluser.conf.5.gz",
"/usr/share/man/fr/man8/adduser.8.gz",
"/usr/share/man/fr/man8/deluser.8.gz",
"/usr/share/man/it/man5/deluser.conf.5.gz",
"/usr/share/man/man5/adduser.conf.5.gz",
"/usr/share/man/man5/deluser.conf.5.gz",
"/usr/share/man/man8/adduser.8.gz",
"/usr/share/man/man8/adduser.local.8.gz",
"/usr/share/man/man8/deluser.8.gz",
"/usr/share/man/nl/man5/adduser.conf.5.gz",
"/usr/share/man/nl/man5/deluser.conf.5.gz",
"/usr/share/man/nl/man8/adduser.8.gz",
"/usr/share/man/nl/man8/adduser.local.8.gz",
"/usr/share/man/nl/man8/deluser.8.gz",
"/usr/share/man/pl/man5/deluser.conf.5.gz",
"/usr/share/man/pt/man5/adduser.conf.5.gz",
"/usr/share/man/pt/man5/deluser.conf.5.gz",
"/usr/share/man/pt/man8/adduser.8.gz",
"/usr/share/man/pt/man8/adduser.local.8.gz",
"/usr/share/man/pt/man8/deluser.8.gz",
"/usr/share/man/ro/man5/adduser.conf.5.gz",
"/usr/share/man/ro/man5/deluser.conf.5.gz",
"/usr/share/man/ro/man8/adduser.8.gz",
"/usr/share/man/ro/man8/adduser.local.8.gz",
"/usr/share/man/ro/man8/deluser.8.gz",
"/usr/share/man/ru/man5/deluser.conf.5.gz",
"/usr/share/man/sv/man5/deluser.conf.5.gz",
"/usr/share/perl5/Debian/AdduserCommon.pm",
"/usr/share/perl5/Debian/AdduserLogging.pm",
"/usr/share/perl5/Debian/AdduserRetvalues.pm"
]
},
{
"ID": "apt@3.0.3",
"Name": "apt",
"Identifier": {
"PURL": "pkg:deb/debian/apt@3.0.3?arch=amd64\u0026distro=debian-13.2",
"UID": "6642a59b2f9859f6"
},
"Version": "3.0.3",
"Arch": "amd64",
"SrcName": "apt",
"SrcVersion": "3.0.3",
"Licenses": [
"GPL-2.0-or-later",
"curl",
"BSD-3-Clause",
"MIT",
"GPL-2.0-only"
],
"Maintainer": "APT Development Team \u003cdeity@lists.debian.org\u003e",
"DependsOn": [
"adduser@3.152",
"base-passwd@3.6.7",
"debian-archive-keyring@2025.1",
"libapt-pkg7.0@3.0.3",
"libc6@2.41-12",
"libgcc-s1@14.2.0-19",
"libseccomp2@2.6.0-2",
"libssl3t64@3.5.4-1~deb13u1",
"libstdc++6@14.2.0-19",
"libsystemd0@257.9-1~deb13u1",
"sqv@1.3.0-3"
],
"Layer": {
"Digest": "sha256:0e4bc2bd6656e6e004e3c749af70e5650bac2258243eb0949dea51cb8b7863db",
"DiffID": "sha256:70a290c5e58b68f39496ab93a62f21b8b2ca0502e97905131838de1b39a37cbb"
},
"InstalledFiles": [
"/usr/bin/apt",
"/usr/bin/apt-cache",
"/usr/bin/apt-cdrom",
"/usr/bin/apt-config",
"/usr/bin/apt-get",
"/usr/bin/apt-mark",
"/usr/lib/apt/apt-extracttemplates",
"/usr/lib/apt/apt-helper",
"/usr/lib/apt/apt.systemd.daily",
"/usr/lib/apt/methods/cdrom",
"/usr/lib/apt/methods/copy",
"/usr/lib/apt/methods/file",
"/usr/lib/apt/methods/gpgv",
"/usr/lib/apt/methods/http",
"/usr/lib/apt/methods/mirror",
"/usr/lib/apt/methods/rred",
"/usr/lib/apt/methods/sqv",
"/usr/lib/apt/methods/store",
"/usr/lib/apt/solvers/dump",
"/usr/lib/dpkg/methods/apt/desc.apt",
"/usr/lib/dpkg/methods/apt/install",
"/usr/lib/dpkg/methods/apt/names",
"/usr/lib/dpkg/methods/apt/setup",
"/usr/lib/dpkg/methods/apt/update",
"/usr/lib/systemd/system/apt-daily-upgrade.service",
"/usr/lib/systemd/system/apt-daily-upgrade.timer",
"/usr/lib/systemd/system/apt-daily.service",
"/usr/lib/systemd/system/apt-daily.timer",
"/usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0",
"/usr/share/apt/default-sequoia.config",
"/usr/share/bash-completion/completions/apt",
"/usr/share/bug/apt/script",
"/usr/share/doc/apt/NEWS.Debian.gz",
"/usr/share/doc/apt/README.md.gz",
"/usr/share/doc/apt/changelog.gz",
"/usr/share/doc/apt/copyright",
"/usr/share/doc/apt/examples/apt.conf",
"/usr/share/doc/apt/examples/configure-index",
"/usr/share/doc/apt/examples/debian.sources",
"/usr/share/doc/apt/examples/preferences",
"/usr/share/lintian/overrides/apt",
"/usr/share/locale/ar/LC_MESSAGES/apt.mo",
"/usr/share/locale/ast/LC_MESSAGES/apt.mo",
"/usr/share/locale/bg/LC_MESSAGES/apt.mo",
"/usr/share/locale/bs/LC_MESSAGES/apt.mo",
"/usr/share/locale/ca/LC_MESSAGES/apt.mo",
"/usr/share/locale/cs/LC_MESSAGES/apt.mo",
"/usr/share/locale/cy/LC_MESSAGES/apt.mo",
"/usr/share/locale/da/LC_MESSAGES/apt.mo",
"/usr/share/locale/de/LC_MESSAGES/apt.mo",
"/usr/share/locale/dz/LC_MESSAGES/apt.mo",
"/usr/share/locale/el/LC_MESSAGES/apt.mo",
"/usr/share/locale/es/LC_MESSAGES/apt.mo",
"/usr/share/locale/eu/LC_MESSAGES/apt.mo",
"/usr/share/locale/fi/LC_MESSAGES/apt.mo",
"/usr/share/locale/fr/LC_MESSAGES/apt.mo",
"/usr/share/locale/gl/LC_MESSAGES/apt.mo",
"/usr/share/locale/hu/LC_MESSAGES/apt.mo",
"/usr/share/locale/it/LC_MESSAGES/apt.mo",
"/usr/share/locale/ja/LC_MESSAGES/apt.mo",
"/usr/share/locale/km/LC_MESSAGES/apt.mo",
"/usr/share/locale/ko/LC_MESSAGES/apt.mo",
"/usr/share/locale/ku/LC_MESSAGES/apt.mo",
"/usr/share/locale/lt/LC_MESSAGES/apt.mo",
"/usr/share/locale/mr/LC_MESSAGES/apt.mo",
"/usr/share/locale/nb/LC_MESSAGES/apt.mo",
"/usr/share/locale/ne/LC_MESSAGES/apt.mo",
"/usr/share/locale/nl/LC_MESSAGES/apt.mo",
"/usr/share/locale/nn/LC_MESSAGES/apt.mo",
"/usr/share/locale/pl/LC_MESSAGES/apt.mo",
"/usr/share/locale/pt/LC_MESSAGES/apt.mo",
"/usr/share/locale/pt_BR/LC_MESSAGES/apt.mo",
"/usr/share/locale/ro/LC_MESSAGES/apt.mo",
"/usr/share/locale/ru/LC_MESSAGES/apt.mo",
"/usr/share/locale/sk/LC_MESSAGES/apt.mo",
"/usr/share/locale/sl/LC_MESSAGES/apt.mo",
"/usr/share/locale/sv/LC_MESSAGES/apt.mo",
"/usr/share/locale/th/LC_MESSAGES/apt.mo",
"/usr/share/locale/tl/LC_MESSAGES/apt.mo",
"/usr/share/locale/tr/LC_MESSAGES/apt.mo",
"/usr/share/locale/uk/LC_MESSAGES/apt.mo",
"/usr/share/locale/vi/LC_MESSAGES/apt.mo",
"/usr/share/locale/zh_CN/LC_MESSAGES/apt.mo",
"/usr/share/locale/zh_TW/LC_MESSAGES/apt.mo",
"/usr/share/man/de/man1/apt-transport-http.1.gz",
"/usr/share/man/de/man1/apt-transport-https.1.gz",
"/usr/share/man/de/man1/apt-transport-mirror.1.gz",
"/usr/share/man/de/man5/apt.conf.5.gz",
"/usr/share/man/de/man5/apt_auth.conf.5.gz",
"/usr/share/man/de/man5/apt_preferences.5.gz",
"/usr/share/man/de/man5/sources.list.5.gz",
"/usr/share/man/de/man7/apt-patterns.7.gz",
"/usr/share/man/de/man8/apt-cache.8.gz",
"/usr/share/man/de/man8/apt-cdrom.8.gz",
"/usr/share/man/de/man8/apt-config.8.gz",
"/usr/share/man/de/man8/apt-get.8.gz",
"/usr/share/man/de/man8/apt-mark.8.gz",
"/usr/share/man/de/man8/apt-secure.8.gz",
"/usr/share/man/de/man8/apt.8.gz",
"/usr/share/man/es/man5/apt_preferences.5.gz",
"/usr/share/man/es/man8/apt-cache.8.gz",
"/usr/share/man/es/man8/apt-cdrom.8.gz",
"/usr/share/man/es/man8/apt-config.8.gz",
"/usr/share/man/fr/man1/apt-transport-http.1.gz",
"/usr/share/man/fr/man1/apt-transport-https.1.gz",
"/usr/share/man/fr/man1/apt-transport-mirror.1.gz",
"/usr/share/man/fr/man5/apt.conf.5.gz",
"/usr/share/man/fr/man5/apt_auth.conf.5.gz",
"/usr/share/man/fr/man5/apt_preferences.5.gz",
"/usr/share/man/fr/man5/sources.list.5.gz",
"/usr/share/man/fr/man7/apt-patterns.7.gz",
"/usr/share/man/fr/man8/apt-cache.8.gz",
"/usr/share/man/fr/man8/apt-cdrom.8.gz",
"/usr/share/man/fr/man8/apt-config.8.gz",
"/usr/share/man/fr/man8/apt-get.8.gz",
"/usr/share/man/fr/man8/apt-mark.8.gz",
"/usr/share/man/fr/man8/apt-secure.8.gz",
"/usr/share/man/fr/man8/apt.8.gz",
"/usr/share/man/it/man5/apt.conf.5.gz",
"/usr/share/man/it/man5/apt_preferences.5.gz",
"/usr/share/man/it/man8/apt-cache.8.gz",
"/usr/share/man/it/man8/apt-cdrom.8.gz",
"/usr/share/man/it/man8/apt-config.8.gz",
"/usr/share/man/it/man8/apt-mark.8.gz",
"/usr/share/man/it/man8/apt.8.gz",
"/usr/share/man/ja/man5/apt.conf.5.gz",
"/usr/share/man/ja/man5/apt_preferences.5.gz",
"/usr/share/man/ja/man8/apt-cache.8.gz",
"/usr/share/man/ja/man8/apt-cdrom.8.gz",
"/usr/share/man/ja/man8/apt-config.8.gz",
"/usr/share/man/ja/man8/apt-mark.8.gz",
"/usr/share/man/ja/man8/apt.8.gz",
"/usr/share/man/man1/apt-transport-http.1.gz",
"/usr/share/man/man1/apt-transport-https.1.gz",
"/usr/share/man/man1/apt-transport-mirror.1.gz",
"/usr/share/man/man5/apt.conf.5.gz",
"/usr/share/man/man5/apt_auth.conf.5.gz",
"/usr/share/man/man5/apt_preferences.5.gz",
"/usr/share/man/man5/sources.list.5.gz",
"/usr/share/man/man7/apt-patterns.7.gz",
"/usr/share/man/man8/apt-cache.8.gz",
"/usr/share/man/man8/apt-cdrom.8.gz",
"/usr/share/man/man8/apt-config.8.gz",
"/usr/share/man/man8/apt-get.8.gz",
"/usr/share/man/man8/apt-mark.8.gz",
"/usr/share/man/man8/apt-secure.8.gz",
"/usr/share/man/man8/apt.8.gz",
"/usr/share/man/nl/man1/apt-transport-http.1.gz",
"/usr/share/man/nl/man1/apt-transport-https.1.gz",
"/usr/share/man/nl/man1/apt-transport-mirror.1.gz",
"/usr/share/man/nl/man5/apt.conf.5.gz",
"/usr/share/man/nl/man5/apt_auth.conf.5.gz",
"/usr/share/man/nl/man5/apt_preferences.5.gz",
"/usr/share/man/nl/man5/sources.list.5.gz",
"/usr/share/man/nl/man7/apt-patterns.7.gz",
"/usr/share/man/nl/man8/apt-cache.8.gz",
"/usr/share/man/nl/man8/apt-cdrom.8.gz",
"/usr/share/man/nl/man8/apt-config.8.gz",
"/usr/share/man/nl/man8/apt-get.8.gz",
"/usr/share/man/nl/man8/apt-mark.8.gz",
"/usr/share/man/nl/man8/apt-secure.8.gz",
"/usr/share/man/nl/man8/apt.8.gz",
"/usr/share/man/pl/man5/apt_preferences.5.gz",
"/usr/share/man/pl/man8/apt-cache.8.gz",
"/usr/share/man/pl/man8/apt-cdrom.8.gz",
"/usr/share/man/pl/man8/apt-config.8.gz",
"/usr/share/man/pt/man1/apt-transport-http.1.gz",
"/usr/share/man/pt/man1/apt-transport-https.1.gz",
"/usr/share/man/pt/man1/apt-transport-mirror.1.gz",
"/usr/share/man/pt/man5/apt.conf.5.gz",
"/usr/share/man/pt/man5/apt_auth.conf.5.gz",
"/usr/share/man/pt/man5/apt_preferences.5.gz",
"/usr/share/man/pt/man5/sources.list.5.gz",
"/usr/share/man/pt/man7/apt-patterns.7.gz",
"/usr/share/man/pt/man8/apt-cache.8.gz",
"/usr/share/man/pt/man8/apt-cdrom.8.gz",
"/usr/share/man/pt/man8/apt-config.8.gz",
"/usr/share/man/pt/man8/apt-get.8.gz",
"/usr/share/man/pt/man8/apt-mark.8.gz",
"/usr/share/man/pt/man8/apt-secure.8.gz",
"/usr/share/man/pt/man8/apt.8.gz"
]
},
{
"ID": "base-files@13.8+deb13u2",
"Name": "base-files",
"Identifier": {
"PURL": "pkg:deb/debian/base-files@13.8%2Bdeb13u2?arch=amd64\u0026distro=debian-13.2",
"UID": "361ae6696fe84a0d"
},
"Version": "13.8+deb13u2",
"Arch": "amd64",
"SrcName": "base-files",
"SrcVersion": "13.8+deb13u2",
"Licenses": [
"GPL-2.0-or-later",
"verbatim"
],
"Maintainer": "Santiago Vila \u003csanvila@debian.org\u003e",
"Layer": {
"Digest": "sha256:0e4bc2bd6656e6e004e3c749af70e5650bac2258243eb0949dea51cb8b7863db",
"DiffID": "sha256:70a290c5e58b68f39496ab93a62f21b8b2ca0502e97905131838de1b39a37cbb"
},
"InstalledFiles": [
"/usr/lib/os-release",
"/usr/share/base-files/dot.bashrc",
"/usr/share/base-files/dot.profile",
"/usr/share/base-files/dot.profile.md5sums",
"/usr/share/base-files/info.dir",
"/usr/share/base-files/motd",
"/usr/share/base-files/profile",
"/usr/share/base-files/profile.md5sums",
"/usr/share/base-files/staff-group-for-usr-local",
"/usr/share/common-licenses/Apache-2.0",
"/usr/share/common-licenses/Artistic",
"/usr/share/common-licenses/BSD",
"/usr/share/common-licenses/CC0-1.0",
"/usr/share/common-licenses/GFDL-1.2",
"/usr/share/common-licenses/GFDL-1.3",
"/usr/share/common-licenses/GPL-1",
"/usr/share/common-licenses/GPL-2",
"/usr/share/common-licenses/GPL-3",
"/usr/share/common-licenses/LGPL-2",
"/usr/share/common-licenses/LGPL-2.1",
"/usr/share/common-licenses/LGPL-3",
"/usr/share/common-licenses/MPL-1.1",
"/usr/share/common-licenses/MPL-2.0",
"/usr/share/doc/base-files/NEWS.Debian.gz",
"/usr/share/doc/base-files/README",
"/usr/share/doc/base-files/README.FHS",
"/usr/share/doc/base-files/changelog.gz",
"/usr/share/doc/base-files/copyright",
"/usr/share/lintian/overrides/base-files"
]
},
{
"ID": "base-passwd@3.6.7",
"Name": "base-passwd",
"Identifier": {
"PURL": "pkg:deb/debian/base-passwd@3.6.7?arch=amd64\u0026distro=debian-13.2",
"UID": "e32fda680625d96d"
},
"Version": "3.6.7",
"Arch": "amd64",
"SrcName": "base-passwd",
"SrcVersion": "3.6.7",
"Licenses": [
"GPL-2.0-only",
"public-domain"
],
"Maintainer": "Shadow package maintainers \u003cpkg-shadow-devel@lists.alioth.debian.org\u003e",
"DependsOn": [
"libc6@2.41-12",
"libdebconfclient0@0.280",
"libselinux1@3.8.1-1"
],
"Layer": {
"Digest": "sha256:0e4bc2bd6656e6e004e3c749af70e5650bac2258243eb0949dea51cb8b7863db",
"DiffID": "sha256:70a290c5e58b68f39496ab93a62f21b8b2ca0502e97905131838de1b39a37cbb"
},
"InstalledFiles": [
"/usr/sbin/update-passwd",
"/usr/share/base-passwd/group.master",
"/usr/share/base-passwd/passwd.master",
"/usr/share/doc-base/base-passwd.users-and-groups",
"/usr/share/doc/base-passwd/README",
"/usr/share/doc/base-passwd/changelog.gz",
"/usr/share/doc/base-passwd/copyright",
"/usr/share/doc/base-passwd/users-and-groups.html",
"/usr/share/doc/base-passwd/users-and-groups.txt.gz",
"/usr/share/lintian/overrides/base-passwd",
"/usr/share/man/de/man8/update-passwd.8.gz",
"/usr/share/man/es/man8/update-passwd.8.gz",
"/usr/share/man/fr/man8/update-passwd.8.gz",
"/usr/share/man/ja/man8/update-passwd.8.gz",
"/usr/share/man/man8/update-passwd.8.gz",
"/usr/share/man/pl/man8/update-passwd.8.gz",
"/usr/share/man/ro/man8/update-passwd.8.gz",
"/usr/share/man/ru/man8/update-passwd.8.gz"
]
},
{
"ID": "bash@5.2.37-2+b5",
"Name": "bash",
"Identifier": {
"PURL": "pkg:deb/debian/bash@5.2.37-2%2Bb5?arch=amd64\u0026distro=debian-13.2",
"UID": "45cfeabe81518977"
},
"Version": "5.2.37",
"Release": "2+b5",
"Arch": "amd64",
"SrcName": "bash",
"SrcVersion": "5.2.37",
"SrcRelease": "2",
"Licenses": [
"GPL-3.0-or-later",
"GPL-3.0-only",
"GPL-3+ with Bison exception",
"GPL-2.0-or-later",
"GPL-2.0-only",
"GFDL-1.3-no-invariants-only",
"GFDL-1.3-only",
"Latex2e",
"BSD-4-Clause-UC",
"MIT",
"permissive"
],
"Maintainer": "Matthias Klose \u003cdoko@debian.org\u003e",
"DependsOn": [
"base-files@13.8+deb13u2",
"debianutils@5.23.2"
],
"Layer": {
"Digest": "sha256:0e4bc2bd6656e6e004e3c749af70e5650bac2258243eb0949dea51cb8b7863db",
"DiffID": "sha256:70a290c5e58b68f39496ab93a62f21b8b2ca0502e97905131838de1b39a37cbb"
},
"InstalledFiles": [
"/usr/bin/bash",
"/usr/bin/bashbug",
"/usr/bin/clear_console",
"/usr/share/debianutils/shells.d/bash",
"/usr/share/doc/bash/CHANGES.gz",
"/usr/share/doc/bash/COMPAT.gz",
"/usr/share/doc/bash/INTRO.gz",
"/usr/share/doc/bash/NEWS.gz",
"/usr/share/doc/bash/POSIX.gz",
"/usr/share/doc/bash/RBASH",
"/usr/share/doc/bash/README.Debian.gz",
"/usr/share/doc/bash/README.abs-guide",
"/usr/share/doc/bash/README.commands.gz",
"/usr/share/doc/bash/README.gz",
"/usr/share/doc/bash/changelog.Debian.amd64.gz",
"/usr/share/doc/bash/changelog.Debian.gz",
"/usr/share/doc/bash/changelog.gz",
"/usr/share/doc/bash/copyright",
"/usr/share/doc/bash/inputrc.arrows",
"/usr/share/lintian/overrides/bash",
"/usr/share/locale/af/LC_MESSAGES/bash.mo",
"/usr/share/locale/bg/LC_MESSAGES/bash.mo",
"/usr/share/locale/ca/LC_MESSAGES/bash.mo",
"/usr/share/locale/cs/LC_MESSAGES/bash.mo",
"/usr/share/locale/da/LC_MESSAGES/bash.mo",
"/usr/share/locale/de/LC_MESSAGES/bash.mo",
"/usr/share/locale/el/LC_MESSAGES/bash.mo",
"/usr/share/locale/en@boldquot/LC_MESSAGES/bash.mo",
"/usr/share/locale/en@quot/LC_MESSAGES/bash.mo",
"/usr/share/locale/eo/LC_MESSAGES/bash.mo",
"/usr/share/locale/es/LC_MESSAGES/bash.mo",
"/usr/share/locale/et/LC_MESSAGES/bash.mo",
"/usr/share/locale/fi/LC_MESSAGES/bash.mo",
"/usr/share/locale/fr/LC_MESSAGES/bash.mo",
"/usr/share/locale/ga/LC_MESSAGES/bash.mo",
"/usr/share/locale/gl/LC_MESSAGES/bash.mo",
"/usr/share/locale/hr/LC_MESSAGES/bash.mo",
"/usr/share/locale/hu/LC_MESSAGES/bash.mo",
"/usr/share/locale/id/LC_MESSAGES/bash.mo",
"/usr/share/locale/it/LC_MESSAGES/bash.mo",
"/usr/share/locale/ja/LC_MESSAGES/bash.mo",
"/usr/share/locale/ko/LC_MESSAGES/bash.mo",
"/usr/share/locale/lt/LC_MESSAGES/bash.mo",
"/usr/share/locale/nb/LC_MESSAGES/bash.mo",
"/usr/share/locale/nl/LC_MESSAGES/bash.mo",
"/usr/share/locale/pl/LC_MESSAGES/bash.mo",
"/usr/share/locale/pt/LC_MESSAGES/bash.mo",
"/usr/share/locale/pt_BR/LC_MESSAGES/bash.mo",
"/usr/share/locale/ro/LC_MESSAGES/bash.mo",
"/usr/share/locale/ru/LC_MESSAGES/bash.mo",
"/usr/share/locale/sk/LC_MESSAGES/bash.mo",
"/usr/share/locale/sl/LC_MESSAGES/bash.mo",
"/usr/share/locale/sr/LC_MESSAGES/bash.mo",
"/usr/share/locale/sv/LC_MESSAGES/bash.mo",
"/usr/share/locale/tr/LC_MESSAGES/bash.mo",
"/usr/share/locale/uk/LC_MESSAGES/bash.mo",
"/usr/share/locale/vi/LC_MESSAGES/bash.mo",
"/usr/share/locale/zh_CN/LC_MESSAGES/bash.mo",
"/usr/share/locale/zh_TW/LC_MESSAGES/bash.mo",
"/usr/share/man/man1/bash.1.gz",
"/usr/share/man/man1/bashbug.1.gz",
"/usr/share/man/man1/clear_console.1.gz",
"/usr/share/man/man1/rbash.1.gz",
"/usr/share/man/man7/bash-builtins.7.gz",
"/usr/share/menu/bash"
]
},
{
"ID": "bsdutils@1:2.41-5",
"Name": "bsdutils",
"Identifier": {
"PURL": "pkg:deb/debian/bsdutils@2.41-5?arch=amd64\u0026distro=debian-13.2\u0026epoch=1",
"UID": "c9de60be80a96a27"
},
"Version": "2.41",
"Release": "5",
"Epoch": 1,
"Arch": "amd64",
"SrcName": "util-linux",
"SrcVersion": "2.41",
"SrcRelease": "5",
"Licenses": [
"GPL-2.0-or-later",
"GPL-2.0-only",
"GPL-3.0-or-later",
"LGPL-2.1-or-later",
"public-domain",
"BSD-4-Clause",
"MIT",
"ISC",
"BSD-3-Clause",
"BSLA",
"LGPL-2.0-or-later",
"BSD-2-Clause",
"LGPL-3.0-or-later",
"GPL-3.0-only",
"LGPL-2.0-only",
"LGPL-2.1-only",
"LGPL-3.0-only"
],
"Maintainer": "Chris Hofstaedtler \u003czeha@debian.org\u003e",
"Layer": {
"Digest": "sha256:0e4bc2bd6656e6e004e3c749af70e5650bac2258243eb0949dea51cb8b7863db",
"DiffID": "sha256:70a290c5e58b68f39496ab93a62f21b8b2ca0502e97905131838de1b39a37cbb"
},
"InstalledFiles": [
"/usr/bin/logger",
"/usr/bin/renice",
"/usr/bin/script",
"/usr/bin/scriptlive",
"/usr/bin/scriptreplay",
"/usr/bin/wall",
"/usr/share/bash-completion/completions/logger",
"/usr/share/bash-completion/completions/renice",
"/usr/share/bash-completion/completions/script",
"/usr/share/bash-completion/completions/scriptlive",
"/usr/share/bash-completion/completions/scriptreplay",
"/usr/share/bash-completion/completions/wall",
"/usr/share/doc/bsdutils/NEWS.Debian.gz",
"/usr/share/doc/bsdutils/changelog.Debian.gz",
"/usr/share/doc/bsdutils/changelog.gz",
"/usr/share/doc/bsdutils/copyright",
"/usr/share/lintian/overrides/bsdutils",
"/usr/share/man/man1/logger.1.gz",
"/usr/share/man/man1/renice.1.gz",
"/usr/share/man/man1/script.1.gz",
"/usr/share/man/man1/scriptlive.1.gz",
"/usr/share/man/man1/scriptreplay.1.gz",
"/usr/share/man/man1/wall.1.gz"
]
},
{
"ID": "ca-certificates@20250419",
"Name": "ca-certificates",
"Identifier": {
"PURL": "pkg:deb/debian/ca-certificates@20250419?arch=all\u0026distro=debian-13.2",
"UID": "99473214bfaddad8"
},
"Version": "20250419",
"Arch": "all",
"SrcName": "ca-certificates",
"SrcVersion": "20250419",
"Licenses": [
"GPL-2.0-or-later",
"GPL-2.0-only",
"MPL-2.0"
],
"Maintainer": "Julien Cristau \u003cjcristau@debian.org\u003e",
"DependsOn": [
"debconf@1.5.91",
"openssl@3.5.4-1~deb13u1"
],
"Layer": {
"Digest": "sha256:490b9a1c25e472ab1cceab4ed6f3bd252006f7c6eea0ef7ba845c996adb6f302",
"DiffID": "sha256:ae5637ef40a1f05635c94c972959f0b21ed1120dbcfa4bc8ef9f8ae771b58d0b"
},
"InstalledFiles": [
"/usr/sbin/update-ca-certificates",
"/usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt",
"/usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt",
"/usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.crt",
"/usr/share/ca-certificates/mozilla/ANF_Secure_Server_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt",
"/usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt",
"/usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt",
"/usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt",
"/usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt",
"/usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt",
"/usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt",
"/usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt",
"/usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt",
"/usr/share/ca-certificates/mozilla/Atos_TrustedRoot_Root_CA_ECC_TLS_2021.crt",
"/usr/share/ca-certificates/mozilla/Atos_TrustedRoot_Root_CA_RSA_TLS_2021.crt",
"/usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt",
"/usr/share/ca-certificates/mozilla/BJCA_Global_Root_CA1.crt",
"/usr/share/ca-certificates/mozilla/BJCA_Global_Root_CA2.crt",
"/usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt",
"/usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt",
"/usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt",
"/usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/Certainly_Root_E1.crt",
"/usr/share/ca-certificates/mozilla/Certainly_Root_R1.crt",
"/usr/share/ca-certificates/mozilla/Certigna.crt",
"/usr/share/ca-certificates/mozilla/Certigna_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/Certum_EC-384_CA.crt",
"/usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt",
"/usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt",
"/usr/share/ca-certificates/mozilla/Certum_Trusted_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/CommScope_Public_Trust_ECC_Root-01.crt",
"/usr/share/ca-certificates/mozilla/CommScope_Public_Trust_ECC_Root-02.crt",
"/usr/share/ca-certificates/mozilla/CommScope_Public_Trust_RSA_Root-01.crt",
"/usr/share/ca-certificates/mozilla/CommScope_Public_Trust_RSA_Root-02.crt",
"/usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt",
"/usr/share/ca-certificates/mozilla/D-TRUST_BR_Root_CA_1_2020.crt",
"/usr/share/ca-certificates/mozilla/D-TRUST_BR_Root_CA_2_2023.crt",
"/usr/share/ca-certificates/mozilla/D-TRUST_EV_Root_CA_1_2020.crt",
"/usr/share/ca-certificates/mozilla/D-TRUST_EV_Root_CA_2_2023.crt",
"/usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt",
"/usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_TLS_ECC_P384_Root_G5.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_TLS_RSA4096_Root_G5.crt",
"/usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt",
"/usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt",
"/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt",
"/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt",
"/usr/share/ca-certificates/mozilla/FIRMAPROFESIONAL_CA_ROOT-A_WEB.crt",
"/usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt",
"/usr/share/ca-certificates/mozilla/GLOBALTRUST_2020.crt",
"/usr/share/ca-certificates/mozilla/GTS_Root_R1.crt",
"/usr/share/ca-certificates/mozilla/GTS_Root_R2.crt",
"/usr/share/ca-certificates/mozilla/GTS_Root_R3.crt",
"/usr/share/ca-certificates/mozilla/GTS_Root_R4.crt",
"/usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt",
"/usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt",
"/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt",
"/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt",
"/usr/share/ca-certificates/mozilla/GlobalSign_Root_E46.crt",
"/usr/share/ca-certificates/mozilla/GlobalSign_Root_R46.crt",
"/usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt",
"/usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt",
"/usr/share/ca-certificates/mozilla/HARICA_TLS_ECC_Root_CA_2021.crt",
"/usr/share/ca-certificates/mozilla/HARICA_TLS_RSA_Root_CA_2021.crt",
"/usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt",
"/usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt",
"/usr/share/ca-certificates/mozilla/HiPKI_Root_CA_-_G1.crt",
"/usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_3.crt",
"/usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt",
"/usr/share/ca-certificates/mozilla/ISRG_Root_X2.crt",
"/usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt",
"/usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt",
"/usr/share/ca-certificates/mozilla/Izenpe.com.crt",
"/usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt",
"/usr/share/ca-certificates/mozilla/Microsoft_ECC_Root_Certificate_Authority_2017.crt",
"/usr/share/ca-certificates/mozilla/Microsoft_RSA_Root_Certificate_Authority_2017.crt",
"/usr/share/ca-certificates/mozilla/NAVER_Global_Root_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt",
"/usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt",
"/usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt",
"/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt",
"/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt",
"/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt",
"/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt",
"/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt",
"/usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt",
"/usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt",
"/usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt",
"/usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt",
"/usr/share/ca-certificates/mozilla/SSL.com_TLS_ECC_Root_CA_2022.crt",
"/usr/share/ca-certificates/mozilla/SSL.com_TLS_RSA_Root_CA_2022.crt",
"/usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt",
"/usr/share/ca-certificates/mozilla/Sectigo_Public_Server_Authentication_Root_E46.crt",
"/usr/share/ca-certificates/mozilla/Sectigo_Public_Server_Authentication_Root_R46.crt",
"/usr/share/ca-certificates/mozilla/SecureSign_Root_CA12.crt",
"/usr/share/ca-certificates/mozilla/SecureSign_Root_CA14.crt",
"/usr/share/ca-certificates/mozilla/SecureSign_Root_CA15.crt",
"/usr/share/ca-certificates/mozilla/SecureTrust_CA.crt",
"/usr/share/ca-certificates/mozilla/Secure_Global_CA.crt",
"/usr/share/ca-certificates/mozilla/Security_Communication_ECC_RootCA1.crt",
"/usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt",
"/usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt",
"/usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt",
"/usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt",
"/usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt",
"/usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt",
"/usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt",
"/usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt",
"/usr/share/ca-certificates/mozilla/TWCA_CYBER_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/Telekom_Security_TLS_ECC_Root_2020.crt",
"/usr/share/ca-certificates/mozilla/Telekom_Security_TLS_RSA_Root_2023.crt",
"/usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt",
"/usr/share/ca-certificates/mozilla/Telia_Root_CA_v2.crt",
"/usr/share/ca-certificates/mozilla/TrustAsia_Global_Root_CA_G3.crt",
"/usr/share/ca-certificates/mozilla/TrustAsia_Global_Root_CA_G4.crt",
"/usr/share/ca-certificates/mozilla/Trustwave_Global_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P256_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P384_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/TunTrust_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/UCA_Extended_Validation_Root.crt",
"/usr/share/ca-certificates/mozilla/UCA_Global_G2_Root.crt",
"/usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt",
"/usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt",
"/usr/share/ca-certificates/mozilla/certSIGN_Root_CA_G2.crt",
"/usr/share/ca-certificates/mozilla/e-Szigno_Root_CA_2017.crt",
"/usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt",
"/usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_C3.crt",
"/usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_G3.crt",
"/usr/share/ca-certificates/mozilla/emSign_Root_CA_-_C1.crt",
"/usr/share/ca-certificates/mozilla/emSign_Root_CA_-_G1.crt",
"/usr/share/ca-certificates/mozilla/vTrus_ECC_Root_CA.crt",
"/usr/share/ca-certificates/mozilla/vTrus_Root_CA.crt",
"/usr/share/doc/ca-certificates/README.Debian",
"/usr/share/doc/ca-certificates/changelog.gz",
"/usr/share/doc/ca-certificates/copyright",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/Makefile",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/README",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/ca-certificates-local.triggers",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/changelog",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/compat",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/control",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/copyright",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/postrm",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/rules",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/source/format",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/local/Local_Root_CA.crt",
"/usr/share/doc/ca-certificates/examples/ca-certificates-local/local/Makefile",
"/usr/share/man/man8/update-ca-certificates.8.gz"
]
},
{
"ID": "coreutils@9.7-3",
"Name": "coreutils",
"Identifier": {
"PURL": "pkg:deb/debian/coreutils@9.7-3?arch=amd64\u0026distro=debian-13.2",
"UID": "a90cbdbcbab1768e"
},
"Version": "9.7",
"Release": "3",
"Arch": "amd64",
"SrcName": "coreutils",
"SrcVersion": "9.7",
"SrcRelease": "3",
"Licenses": [
"GPL-3.0-or-later",
"BSD-4-Clause-UC",
"GPL-3.0-only",
"ISC",
"FSFULLR",
"GFDL-1.3-no-invariants-only",
"GFDL-1.3-only"
],
"Maintainer": "Michael Stone \u003cmstone@debian.org\u003e",
"Layer": {
"Digest": "sha256:0e4bc2bd6656e6e004e3c749af70e5650bac2258243eb0949dea51cb8b7863db",
"DiffID": "sha256:70a290c5e58b68f39496ab93a62f21b8b2ca0502e97905131838de1b39a37cbb"
},
"InstalledFiles": [
"/usr/bin/[",
"/usr/bin/arch",
"/usr/bin/b2sum",
"/usr/bin/base32",
"/usr/bin/base64",