-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtools.yaml
2122 lines (2119 loc) · 84.7 KB
/
tools.yaml
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
---
# `description` will be truncated at 250 characters
# `categories` values MUST be the keys from `tool-categories.yml` file
- name: CycloneDX Core for Java
publisher: CycloneDX
description: Library which facilitates the creation of SBOMs from Java objects,
parsing of existing SBOMs into an object model, and validation of SBOMs
repoUrl: https://github.com/CycloneDX/cyclonedx-core-java
websiteUrl: https://github.com/CycloneDX/cyclonedx-core-java
categories:
- opensource
- library
- name: CycloneDX for .NET
publisher: CycloneDX
description: Creates CycloneDX Software Bill of Materials (SBOM) from .NET Projects
repoUrl: https://github.com/CycloneDX/cyclonedx-dotnet
websiteUrl: https://www.nuget.org/packages/CycloneDX/
categories:
- opensource
- build-integration
- name: CycloneDX Libraries for .NET
publisher: CycloneDX
description: ".NET libraries to consume and produce CycloneDX Software Bill of Materials (SBOM)"
repoUrl: https://github.com/CycloneDX/cyclonedx-dotnet-library
websiteUrl: https://www.nuget.org/profiles/CycloneDX
categories:
- opensource
- library
- name: CycloneDX JavaScript Library
publisher: CycloneDX
description: Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser) written in TypeScript.
repoUrl: https://github.com/CycloneDX/cyclonedx-javascript-library
websiteUrl: https://www.npmjs.com/package/%40cyclonedx/cyclonedx-library
categories:
- opensource
- library
- name: CycloneDX for Node.js
publisher: CycloneDX
description: Creates CycloneDX SBOMs for Node.js projects.
repoUrl: https://github.com/CycloneDX/cyclonedx-node-module
websiteUrl: https://www.npmjs.com/package/%40cyclonedx/bom
categories:
- opensource
- build-integration
- name: CycloneDX for NPM
publisher: CycloneDX
description: Creates CycloneDX SBOMs for Node.js NPM projects.
repoUrl: https://github.com/CycloneDX/cyclonedx-node-npm
websiteUrl: https://www.npmjs.com/package/%40cyclonedx/cyclonedx-npm
categories:
- opensource
- build-integration
- name: CycloneDX for Yarn
publisher: CycloneDX
description: Create CycloneDX Software Bill of Materials (SBOM) from Node.js Yarn projects.
repoUrl: https://github.com/CycloneDX/cyclonedx-node-yarn
websiteUrl: https://yarnpkg.com/package?name=%40cyclonedx%2Fyarn-plugin-cyclonedx
categories:
- opensource
- build-integration
- name: CycloneDX for Webpack
publisher: CycloneDX
description: Creates CycloneDX SBOMs for frontend Javascript applications that have
been bundled with webpack.
repoUrl: https://github.com/CycloneDX/cyclonedx-webpack-plugin
websiteUrl: https://github.com/CycloneDX/cyclonedx-webpack-plugin
categories:
- opensource
- build-integration
- name: CycloneDX for Maven
publisher: CycloneDX
description: Creates CycloneDX SBOMs for Java (Maven) projects
repoUrl: https://github.com/CycloneDX/cyclonedx-maven-plugin
websiteUrl: https://github.com/CycloneDX/cyclonedx-maven-plugin
categories:
- opensource
- build-integration
- name: CycloneDX library for Go
publisher: CycloneDX
description: Go library to consume and produce CycloneDX Software Bill of Materials
(SBOM)
repoUrl: https://github.com/CycloneDX/cyclonedx-go
websiteUrl: https://github.com/CycloneDX/cyclonedx-go
categories:
- opensource
- library
- name: CycloneDX for Go modules
publisher: CycloneDX
description: Creates CycloneDX Software Bill of Materials (SBOM) from Go modules
repoUrl: https://github.com/CycloneDX/cyclonedx-gomod
websiteUrl: https://github.com/CycloneDX/cyclonedx-gomod
categories:
- opensource
- build-integration
- name: CycloneDX for Gradle
publisher: CycloneDX
description: Creates CycloneDX SBOMs for Java (Gradle) projects
repoUrl: https://github.com/CycloneDX/cyclonedx-gradle-plugin
websiteUrl: https://plugins.gradle.org/plugin/org.cyclonedx.bom
categories:
- opensource
- build-integration
- name: CycloneDX for PHP Composer
publisher: CycloneDX
description: Creates CycloneDX SBOMs for PHP Composer projects
repoUrl: https://github.com/CycloneDX/cyclonedx-php-composer
websiteUrl: https://packagist.org/packages/cyclonedx/cyclonedx-php-composer
categories:
- opensource
- build-integration
- name: CycloneDX PHP Library
publisher: CycloneDX
description: Work with CycloneDX data format in PHP
repoUrl: https://github.com/CycloneDX/cyclonedx-php-library
websiteUrl: https://packagist.org/packages/cyclonedx/cyclonedx-library
categories:
- opensource
- library
- name: CycloneDX for Python
publisher: CycloneDX
description: Creates CycloneDX SBOMs for Python projects
repoUrl: https://github.com/CycloneDX/cyclonedx-python
websiteUrl: https://pypi.org/project/cyclonedx-bom/
categories:
- opensource
- build-integration
- name: CycloneDX Python Library
publisher: CycloneDX
description: Python Library for generating CycloneDX SBOMs
repoUrl: https://github.com/CycloneDX/cyclonedx-python-lib
websiteUrl: https://pypi.org/project/cyclonedx-python-lib/
categories:
- opensource
- library
- name: CycloneDX for Ruby Gems
publisher: CycloneDX
description: Creates CycloneDX SBOMs for Ruby projects
repoUrl: https://github.com/CycloneDX/cyclonedx-ruby-gem
websiteUrl: https://rubygems.org/gems/cyclonedx-ruby
categories:
- opensource
- build-integration
- name: CycloneDX for Rust Cargo
publisher: CycloneDX
description: Creates CycloneDX SBOMs for Rust Cargo projects
repoUrl: https://github.com/CycloneDX/cyclonedx-rust-cargo
websiteUrl: https://crates.io/crates/cyclonedx-bom
categories:
- opensource
- build-integration
- name: CycloneDX for SBT (Scala)
publisher: Fabrizio Di Giuseppe
description: Creates CycloneDX SBOMs for SBT (Scala) projects
repoUrl: https://github.com/siculo/sbt-bom
websiteUrl: https://github.com/siculo/sbt-bom
categories:
- opensource
- build-integration
- name: CycloneDX for Erlang/Elixir (Mix)
publisher: Bram Verburg
description: Creates CycloneDX SBOMs for Mix projects
repoUrl: https://github.com/voltone/sbom
websiteUrl: https://hex.pm/packages/sbom
categories:
- opensource
- build-integration
- name: CycloneDX for Erlang/Elixir (Rebar3)
publisher: Bram Verburg
description: Creates CycloneDX SBOMs for Rebar3 projects
repoUrl: https://github.com/voltone/rebar3_sbom
websiteUrl: https://hex.pm/packages/rebar3_sbom
categories:
- opensource
- build-integration
- name: CycloneDX for Go
publisher: OZON
description: Creates CycloneDX SBOMs for Go projects
repoUrl: https://github.com/ozonru/cyclonedx-go
websiteUrl: https://github.com/ozonru/cyclonedx-go
categories:
- opensource
- build-integration
- name: CycloneDX for Bower
publisher: Hans Thorhauge Dam
description: Creates CycloneDX SBOMs for Javascript projects using Bower
repoUrl: https://github.com/hanstdam/cdx-bower-bom
websiteUrl: https://www.npmjs.com/package/cdx-bower-bom
categories:
- opensource
- build-integration
- name: cdxgen
publisher: CycloneDX
description: Creates CycloneDX Software Bill of Materials (SBOM) for multiple languages,
container images, and OS. Use as a CLI tool or integrate as a library
repoUrl: https://github.com/CycloneDX/cdxgen
websiteUrl: https://github.com/CycloneDX/cdxgen
categories:
- opensource
- build-integration
- name: CycloneDX-Buildroot
publisher: CycloneDX
description: The CycloneDX-buildroot module creates a valid CycloneDX
bill of materials from buildroot manifest.csv files. Note that any formatted manifest.csv can
be parsed for an arbitrary project spread sheet of software packages as indicated in the documentation.
repoUrl: https://github.com/CycloneDX/cyclonedx-buildroot
websiteUrl: https://github.com/CycloneDX/cyclonedx-buildroot
categories:
- opensource
- build-integration
- name: Eclipse SW360 Antenna
publisher: Eclipse
description: Creates CycloneDX SBOMs from Maven projects
repoUrl: https://github.com/eclipse/antenna
websiteUrl: https://www.eclipse.org/antenna
categories:
- opensource
- build-integration
- name: CycloneDX Node.js Generate SBOM
publisher: CycloneDX
description: Creates CycloneDX SBOMs from Node.js (NPM) projects via GitHub action
repoUrl: https://github.com/CycloneDX/gh-node-module-generatebom
websiteUrl: https://github.com/marketplace/actions/cyclonedx-node-js-generate-sbom
categories:
- opensource
- github-action
- name: CycloneDX .NET Generate SBOM
publisher: CycloneDX
description: Creates CycloneDX SBOMs from .NET projects via GitHub action
repoUrl: https://github.com/CycloneDX/gh-dotnet-generate-sbom
websiteUrl: https://github.com/marketplace/actions/cyclonedx-net-generate-sbom
categories:
- opensource
- github-action
- name: CycloneDX PHP Composer Generate SBOM
publisher: CycloneDX
description: Creates CycloneDX SBOMs from PHP Composer projects via GitHub action
repoUrl: https://github.com/CycloneDX/gh-php-composer-generate-sbom
websiteUrl: https://github.com/marketplace/actions/cyclonedx-php-composer-generate-sbom
categories:
- opensource
- github-action
- name: CycloneDX Python Generate SBOM
publisher: CycloneDX
description: Creates CycloneDX SBOMs from Python projects via GitHub action
repoUrl: https://github.com/CycloneDX/gh-python-generate-sbom
websiteUrl: https://github.com/marketplace/actions/cyclonedx-python-generate-sbom
categories:
- opensource
- github-action
- name: Generate SBoM for Elixir project
publisher: Red Shirts
description: Creates CycloneDX SBOMs from Erlang/Elixir Mix projects via GitHub
action
repoUrl: https://github.com/red-shirts/action-mix-sbom
websiteUrl: https://github.com/marketplace/actions/generate-sbom-for-elixir-project
categories:
- opensource
- github-action
- name: OSS Review Toolkit (ORT)
publisher: OSS Review Toolkit
description: A suite of tools to assist with reviewing Open Source Software dependencies.
repoUrl: https://github.com/oss-review-toolkit/ort
websiteUrl: http://oss-review-toolkit.org/
categories:
- opensource
- build-integration
- transform
- library
- name: Retire.js
publisher: RetireJS
description: Scanner that detects the use of JavaScript libraries with known vulnerabilities
repoUrl: https://github.com/RetireJS/retire.js
websiteUrl: https://retirejs.github.io/retire.js
categories:
- opensource
- name: Dependency-Track
publisher: OWASP
description: Supply Chain Component Analysis platform that allows organizations
to identify and reduce risk from the use of third-party and open source components
repoUrl: https://github.com/DependencyTrack/dependency-track
websiteUrl: https://dependencytrack.org/
categories:
- opensource
- analysis
- name: Dependency-Track Jenkins Plugin
publisher: OWASP
description: Publishes SBOMs to Dependency-Track for per-build analysis, result
visualization, and configurable risk thresholds
repoUrl: https://github.com/jenkinsci/dependency-track-plugin
websiteUrl: https://plugins.jenkins.io/dependency-track
categories:
- opensource
- build-integration
- name: Dependency-Track Maven Plugin
publisher: Paul McKeown
description: Maven plugin that integrates with a Dependency-Track server to submit
SBOMs and optionally fail execution when vulnerable dependencies are found.
repoUrl: https://github.com/pmckeown/dependency-track-maven-plugin
websiteUrl: https://github.com/pmckeown/dependency-track-maven-plugin#readme
categories:
- opensource
- build-integration
- name: dtrack-audit
publisher: OZON
description: Publishes SBOMs to Dependency-Track for analysis and displays visualization
from the command-line
repoUrl: https://github.com/ozonru/dtrack-audit
websiteUrl: https://github.com/ozonru/dtrack-audit
categories:
- opensource
- build-integration
- name: ShiftLeft Scan
publisher: ShiftLeft
description: An open-source security tool for modern DevSecOps teams that can detect
various kinds of security flaws in your application and infrastructure code in
a single fast scan
repoUrl: https://github.com/ShiftLeftSecurity/sast-scan
websiteUrl: https://www.shiftleft.io/scan/
categories:
- opensource
- analysis
- name: SCANOSS
publisher: SCANOSS
description: An open source inventory engine built for modern development teams
repoUrl: https://github.com/scanoss/engine
websiteUrl: https://scanoss.com/
categories:
- opensource
- analysis
- name: oss_inventory
publisher: Thiago Pinto
description: Import CycloneDX BOMs and see OSS statistics
repoUrl: https://github.com/thspinto/oss_inventory
websiteUrl: https://github.com/thspinto/oss_inventory
categories:
- opensource
- analysis
- name: Auditjs
publisher: Sonatype
description: Audits an NPM package.json file to identify known vulnerabilities
repoUrl: https://github.com/sonatype-nexus-community/auditjs
websiteUrl: https://github.com/sonatype-nexus-community/auditjs
categories:
- opensource
- build-integration
- name: Chelsea
publisher: Sonatype
description: Dependency vulnerability auditor for Ruby
repoUrl: https://github.com/sonatype-nexus-community/chelsea
websiteUrl: https://github.com/sonatype-nexus-community/chelsea
categories:
- opensource
- build-integration
- name: Jake
publisher: Sonatype
description: An OSS Index integration to check your Conda environments for vulnerable
Open Source packages
repoUrl: https://github.com/sonatype-nexus-community/jake
websiteUrl: https://github.com/sonatype-nexus-community/jake
categories:
- opensource
- build-integration
- name: Nancy
publisher: Sonatype
description: A tool to check for vulnerabilities in your Golang dependencies, powered
by Sonatype OSS Index
repoUrl: https://github.com/sonatype-nexus-community/nancy
websiteUrl: https://github.com/sonatype-nexus-community/nancy
categories:
- opensource
- build-integration
- name: Go Sonatypes
publisher: Sonatype
description: Common utility packages for working with OSS Index, Nexus IQ Server,
CycloneDX SBOMs or getting a user-agent
repoUrl: https://github.com/sonatype-nexus-community/go-sona-types
websiteUrl: https://github.com/sonatype-nexus-community/go-sona-types
categories:
- opensource
- library
- name: Valaa Stack
publisher: Valaa Technologies
description: SBoMDoc is a VDoc extension which uses CycloneDX namespaces and can
emit BOM documents in various formats
repoUrl: https://github.com/valaatech/kernel
websiteUrl: https://valospace.org/
categories:
- opensource
- transform
- name: Nexus IQ
publisher: Sonatype
description: Software Composition Analysis (SCA) platform that can consume, analyze,
and produce CycloneDX SBOMs
websiteUrl: https://www.sonatype.com/product-nexus-lifecycle
categories:
- proprietary
- analysis
- name: Nexus Lifecycle Jenkins Plugin
publisher: Sonatype
description: Publishes CycloneDX SBOMs to Nexus IQ for per-build analysis, result
visualization, and policy evaluation
repoUrl: https://github.com/jenkinsci/nexus-platform-plugin
websiteUrl: https://plugins.jenkins.io/nexus-jenkins-plugin
categories:
- opensource
- build-integration
- name: MedScan
publisher: MedSec
description: Consumes SBOM’s for helping hospitals manage medical device assets
websiteUrl: https://www.medsec.com/medscan/
categories:
- proprietary
- analysis
- name: Reliza Hub
publisher: Reliza
description: Publishes Reliza Hub metadata as SBOM for use in other tools or ingests
SBOMs produced in other tools to update Reliza Hub metadata
websiteUrl: https://relizahub.com/
categories:
- proprietary
- name: SwiftBOM
publisher: CERT Coordination Center (CERT/CC)
description: Generates SBOMs for demo and PoC purposes
repoUrl: https://github.com/CERTCC/SBOM
websiteUrl: https://sbom.democert.org/sbom/
categories:
- opensource
- author
- name: DtrackAuditor
publisher: Thinksabin
description: Publishes SBOMs to Dependency-Track for analysis and results through
command line.
repoUrl: https://github.com/thinksabin/DTrackAuditor
websiteUrl: https://github.com/thinksabin/DTrackAuditor
categories:
- opensource
- build-integration
- name: Syft
publisher: Anchore
description: CLI tool and library for generating a Software Bill of Materials from
container images and filesystems.
repoUrl: https://github.com/anchore/syft
websiteUrl: https://github.com/anchore/syft
categories:
- opensource
- build-integration
- library
- name: Grype
publisher: Anchore
description: A vulnerability scanner for container images and filesystems.
repoUrl: https://github.com/anchore/grype
websiteUrl: https://github.com/anchore/grype
categories:
- opensource
- build-integration
- name: CycloneDX CLI
publisher: CycloneDX
description: >
A command line tool incorporating many common utilities including:
alter an SBOM,
convert between SBOM formats,
merge multiple SBOMs,
sign an SBOM file,
validate an SBOM,
verify signatures in an SBOM
repoUrl: https://github.com/CycloneDX/cyclonedx-cli
websiteUrl: https://github.com/CycloneDX/cyclonedx-cli
categories:
- opensource
- transform
- signing-notary
- analysis
- name: CycloneDX Web Tool
publisher: CycloneDX
description: >
A web based tool incorporating many common utilities including:
convert between SBOM formats,
merge multiple SBOMs,
validate an SBOM
repoUrl: https://github.com/CycloneDX/cyclonedx-web-tool
websiteUrl: https://cyclonedx.github.io/cyclonedx-web-tool/
categories:
- opensource
- transform
- name: CycloneDX Rust
publisher: Mark Dodgson
description: A Rust library to encode and decode the CycloneDX object model
repoUrl: https://github.com/doddi/cyclonedx-rust
websiteUrl: https://github.com/doddi/cyclonedx-rust
categories:
- opensource
- library
- name: CycloneDX for Cocoapods
publisher: CycloneDX
description: Creates CycloneDX SBOMs for iOS Objective-C and Swift projects
repoUrl: https://github.com/CycloneDX/cyclonedx-cocoapods
websiteUrl: https://github.com/CycloneDX/cyclonedx-cocoapods
categories:
- opensource
- build-integration
- name: mdbom
publisher: Robert Hansel
description: Transforms CycloneDX SBOMs to Markdown
repoUrl: https://github.com/HaRo87/mdbom
websiteUrl: https://haro87.github.io/mdbom/
categories:
- opensource
- transform
- name: OpenRewrite
publisher: OpenRewrite Project
description: Rewrite is a mass refactoring system, designed to eliminate technical
debt across an engineering. The project can generate CycloneDX SBOMs when refactoring
repoUrl: https://github.com/openrewrite/rewrite
websiteUrl: https://github.com/openrewrite/rewrite
categories:
- opensource
- name: Defect Dojo
publisher: OWASP
description: Open source vulnerability management and automation platform that can
import CycloneDX SBOMs containing vulnerability information
repoUrl: https://github.com/DefectDojo/django-DefectDojo
websiteUrl: https://www.defectdojo.org/
categories:
- opensource
- analysis
- name: OSS Inventory
publisher: Thiago Pinto
description: Imports CycloneDX SBOMs and visualizes OSS statistics
repoUrl: https://github.com/thspinto/oss_inventory
websiteUrl: https://github.com/thspinto/oss_inventory
categories:
- opensource
- name: Fortress File Integrity Assurance
publisher: Fortress Information Security
description: Creates SBOM from binary or archive, consumes externally provided SBOM,
enriches SBOM with Fortress risk analysis, integrates via API to support continuous
monitoring of software assurance.
websiteUrl: https://fortressinfosec.com/solutions/file-integrity-assurance
categories:
- proprietary
- analysis
- name: Fortress Asset 2 Vendor
publisher: Fortress Information Security
description: Comprehensive Cyber Supply Chain Risk Management data library that
ingests, analyzes and securely shares SBOMs, HBOMs and other supply chain attestations
via SaaS and permissioned blockchain solutions to facilitate Supplier to Asset
Owner trust conversations.
websiteUrl: https://assettovendor.com/
categories:
- proprietary
- distribute
- name: Software Assurance Guardian Point Man
publisher: Reliable Energy Analytics LLC
description: SAG-PM processes CycloneDX SBOM’s as part of a seven step software
supply chain risk assessment
websiteUrl: https://reliableenergyanalytics.com/products
categories:
- proprietary
- analysis
- name: Cybeats SBOM Studio
publisher: Cybeats Technologies Inc.
description: Manage SBOMs at scale and proactively discover & reduce risk across the entire
software supply chain, from development through deployment.
websiteUrl: https://cybeats.com
categories:
- proprietary
- author
- analysis
- transform
- build-integration
- distribute
- name: TrustSource
publisher: TrustSource
description: TrustSource is a SaaS platform for implementing and maintaining open
source compliance (ISO 5230 compliant). It can import CycloneDX, match them with
its own information and add them to projects as modules for further analysis.
websiteUrl: https://www.trustsource.io/
categories:
- proprietary
- analysis
- name: JDisc Discovery
publisher: JDisc
description: Network discovery and IT inventory that can discover CycloneDX SBOMs
on enterprise assets and ingest component inventory into the platform.
websiteUrl: https://www.jdisc.com/
categories:
- proprietary
- analysis
- name: PulseUno Plugin for Dimensions CM
publisher: Micro Focus
description: PulseUno enables development teams to continually build and inspect
the health and quality of code using plugins such as CycloneDX. Teams can use
this information to help decide when changes are ready to be merged, deployed,
and released.
websiteUrl: https://www.microfocus.com/en-us/products/dimensions-cm
categories:
- proprietary
- build-integration
- name: CycloneDX GoMod Generate SBOM
publisher: CycloneDX
description: GitHub action which generates CycloneDX SBOMs from Go modules
repoUrl: https://github.com/CycloneDX/gh-gomod-generate-sbom
websiteUrl: https://github.com/marketplace/actions/cyclonedx-gomod-generate-sbom
categories:
- opensource
- github-action
- name: BOM Repository Server
publisher: CycloneDX
description: 'A lightweight repository server used to publish, manage, and distribute
CycloneDX SBOMs '
repoUrl: https://github.com/CycloneDX/cyclonedx-bom-repo-server
websiteUrl: https://github.com/CycloneDX/cyclonedx-bom-repo-server
categories:
- opensource
- distribute
- name: ittosai
publisher: DevOps KungFu Masters
description: ittosai is a CycloneDX SBOM vulnerability analyzer that analyzes SBOMs
every time a developer commits code to a repository
repoUrl: https://github.com/devops-kung-fu/ittosai
websiteUrl: https://dkfm.io/
categories:
- opensource
- analysis
- name: CodeSentry
publisher: GrammaTech
description: Software Composition Analysis (SCA) platform that leverages binary
analysis to identify components, inherited risk, and communicates inventory through
CycloneDX SBOMs
websiteUrl: https://www.grammatech.com/codesentry-sca
categories:
- proprietary
- analysis
- name: Heimdall
publisher: Medcrypt
description: Automatically extract or manually upload your Software Bill of Materials
(SBOM), and Heimdall will, on a continual basis, identify known vulnerabilities
affecting your software components
websiteUrl: https://medcrypt.com/heimdall.html
categories:
- proprietary
- analysis
- name: Contrast Security
publisher: Contrast Security
description: Automatically generates component inventory from runtime analysis (IAST
or RASP) and generates CycloneDX SBOMs
websiteUrl: https://www.contrastsecurity.com/
categories:
- proprietary
- analysis
- name: Salus
publisher: Coinbase
description: Salus is a tool for coordinating the execution of security scanners.
Salus can generate CycloneDX SBOMs from many language ecosystems.
repoUrl: https://github.com/coinbase/salus
websiteUrl: https://github.com/coinbase/salus
categories:
- opensource
- analysis
- build-integration
- name: Codenotary vcn
publisher: Codenotary
description: Protects an organizations software development pipeline from supply
chain attacks. Codenotary natively supports CycloneDX SBOMs.
repoUrl: https://github.com/codenotary/vcn
websiteUrl: https://codenotary.com/
categories:
- opensource
- signing-notary
- name: CodeNotary CAS
publisher: CodeNotary
description: CAS is an open source attestation service for the community. Notarize
and authorize files, directories, git repos and Build SBOMs of containers. CAS
natively supports CycloneDX SBOMs.
repoUrl: https://github.com/codenotary/cas
websiteUrl: https://cas.codenotary.com/
categories:
- opensource
- signing-notary
- name: Codenotary CAS Notarize Docker Image and SBOM
publisher: Codenotary
description: A GitHub Action which notarizes and creates an SBOM for Docker images.
repoUrl: https://github.com/codenotary/cas-notarize-docker-image-bom-github-action
websiteUrl: https://cas.codenotary.com/
categories:
- opensource
- signing-notary
- github-action
- name: Codenotary CAS Authenticate Docker Image and SBOM
publisher: Codenotary
description: A GitHub Action which authenticates notarized Docker images and SBOMs.
repoUrl: https://github.com/codenotary/cas-authenticate-docker-bom-github-action
websiteUrl: https://cas.codenotary.com/
categories:
- opensource
- signing-notary
- github-action
- name: Cosign
publisher: Sigstore
description: Container Signing, Verification and Storage in an OCI registry, including
CycloneDX SBOMs
repoUrl: https://github.com/sigstore/cosign
websiteUrl: https://sigstore.dev/
categories:
- opensource
- signing-notary
- name: Tern
publisher: Tern
description: Tern is a software composition analysis tool and Python library that
generates a Software Bill of Materials for container images and Dockerfiles.
repoUrl: https://github.com/tern-tools/tern
websiteUrl: https://github.com/tern-tools/tern
categories:
- opensource
- analysis
- build-integration
- name: Cybellum SBOM
publisher: Cybellum Technologies LTD.
description: Analyzes binary artifacts to generate SBoM including context based
analysis to perform accurate vulnerability assessment
websiteUrl: https://cybellum.com
categories:
- proprietary
- analysis
- name: Scancode Toolkit
publisher: nexB
description: ScanCode detects licenses, copyrights, package manifests & dependencies
and more by scanning code to discover and inventory open source and third-party
packages.
repoUrl: https://github.com/nexB/scancode-toolkit
websiteUrl: https://github.com/nexB/scancode-toolkit
categories:
- opensource
- analysis
- name: swift-package-sbom-generator
publisher: Mattt
description: A software bill of materials (SBOM) generator for Swift packages
repoUrl: https://github.com/mattt/swift-package-sbom
websiteUrl: https://github.com/mattt/swift-package-sbom
categories:
- opensource
- build-integration
- name: SRC:CLR SBOM Generator
publisher: Veracode
description: Generates a Software Bill of Materials in CycloneDX JSON Format from
Veracode SCA Agent results.
repoUrl: https://github.com/veracode/srcclr_sbom_gen
websiteUrl: https://github.com/veracode/srcclr_sbom_gen
categories:
- opensource
- transform
- name: NowSecure Platform
publisher: NowSecure
description: NowSecure automates security and privacy testing of mobile applications
through static and dynamic binary analysis. NowSecure identifies packages and
native components bundled with mobile apps and exports inventory in CycloneDX
format.
websiteUrl: https://www.nowsecure.com/
categories:
- proprietary
- analysis
- name: Ion Channel Platform
publisher: Ion Channel
description: Ion Channel is a software supply chain assurance platform that transforms
software inventory data into positive control of known and potential risks. Ion
Channel consumes, analyzes, and exports CycloneDX SBOMs.
websiteUrl: https://ionchannel.io/
categories:
- proprietary
- analysis
- name: CycloneDX for Conan1
publisher: CycloneDX
description: Creates CycloneDX Software Bill of Materials (SBOM) for C/C++ projects
using Conan (archived project)
repoUrl: https://github.com/CycloneDX/cyclonedx-conan
websiteUrl: https://github.com/CycloneDX/cyclonedx-conan
categories:
- opensource
- build-integration
- name: CycloneDX for Conan2
publisher: Conan-IO
description: Creates CycloneDX Software Bill of Materials (SBOM) for C/C++ projects
using Conan-extension
repoUrl: https://github.com/conan-io/conan-extensions
websiteUrl: https://github.com/conan-io/conan-extensions
categories:
- opensource
- build-integration
- name: Checkov
publisher: Checkov
description: Prevent cloud misconfigurations during build-time for Terraform, Cloudformation,
Kubernetes, Serverless framework and other infrastructure-as-code-languages with
Checkov by Bridgecrew. Can output to CycloneDX.
repoUrl: https://github.com/bridgecrewio/checkov
websiteUrl: https://www.checkov.io/
categories:
- opensource
- analysis
- name: SBOM CLI
publisher: Defense Unicorns
description: Creates CycloneDX SBOMs from Kubernetes Helm charts
repoUrl: https://github.com/defenseunicorns/sbom-cli
websiteUrl: https://github.com/defenseunicorns/sbom-cli
categories:
- opensource
- build-integration
- name: CxSCA
publisher: Checkmarx
description: Checkmarx SCA is a Software Composition Analysis (SCA) platform that
can produce CycloneDX SBOMs
websiteUrl: https://checkmarx.com/product/cxsca-open-source-scanning
categories:
- proprietary
- analysis
- name: Ochrona CLI
publisher: Ochrona
description: A command line tool for detecting vulnerabilities in Python dependencies
and doing safe package installs. Output CycloneDX of all dependencies.
repoUrl: https://github.com/ochronasec/ochrona-cli
websiteUrl: https://ochrona.dev/
categories:
- opensource
- analysis
- build-integration
- name: pip-audit
publisher: Trail of Bits
description: Audits Python environments and dependency trees for known vulnerabilities.
Generates CycloneDX SBOM of vulnerable components.
repoUrl: https://github.com/trailofbits/pip-audit
websiteUrl: https://github.com/trailofbits/pip-audit
categories:
- opensource
- build-integration
- analysis
- name: RKVST SBOM Hub
publisher: RKVST
description: A free SaaS repo to find and fetch public or private CycloneDX v1.4
BOMs. RKVST sustains and enhances SaaS/S/H/C-BOM or VEX publishing and consumption
by tracing provenance, governing permissioned distribution and proving immutable
assurance...
repoUrl: https://github.com/jitsuin-inc/archivist-samples
websiteUrl: https://sbom.rkvst.io
categories:
- proprietary
- distribute
- name: WpBom
publisher: Sepbit
description: WordPress integration with OWASP CycloneDX and Dependency Track
repoUrl: https://github.com/sepbit/wpbom
websiteUrl: https://wordpress.org/plugins/wpbom/
categories:
- opensource
- build-integration
- name: Meterian BOSS scanner
publisher: Meterian
description: Software composition analysis for codebases providing precise and comprehensive
CycloneDX SBOMs for open source and private source code projects. Supports all
major ecosystems Java, NodeJS, .NET, Go, Rust, Swift, Python, Ruby, PHP, C/C++,
Perl
websiteUrl: https://meterian.io/products/boss
categories:
- proprietary
- github-action
- build-integration
- name: Spack
publisher: Spack
description: Spack is a package manager for supercomputers, Linux, and macOS. The
package managers can export inventory in CycloneDX.
repoUrl: https://github.com/spack/spack-sbom
websiteUrl: https://spack.io/
categories:
- opensource
- build-integration
- name: build-info-go
publisher: JFrog
description: build-info-go is a Go library and a CLI, which allows generating build-info
and CycloneDX for a source code project.
repoUrl: https://github.com/jfrog/build-info-go
websiteUrl: https://github.com/jfrog/build-info-go
categories:
- opensource
- build-integration
- name: Kyverno
publisher: Kyverno
description: Kyverno is a policy engine designed for Kubernetes. It can validate,
mutate, and generate configurations using admission controls and background scans.
repoUrl: https://github.com/kyverno/kyverno
websiteUrl: https://github.com/kyverno/kyverno
categories:
- opensource
- name: jbom
publisher: Contrast Security
description: jbom generates a CycloneDX Software Bill of Materials (SBOM) for apps
on a running JVM
repoUrl: https://github.com/Contrast-Security-OSS/jbom
websiteUrl: https://github.com/Contrast-Security-OSS/jbom
categories:
- opensource
- name: KICS
publisher: Checkmarx
description: Find security vulnerabilities, compliance issues, and infrastructure
misconfigurations early in the development cycle of your infrastructure-as-code
with KICS by Checkmarx.
repoUrl: https://github.com/Checkmarx/kics
websiteUrl: https://www.kics.io/
categories:
- opensource
- name: Xray
publisher: JFrog
description: JFrog Xray is a software composition analysis (SCA) solution that proactively
identifies vulnerabilities and license violations in open source. Xray generates
CycloneDX SBOMs.
websiteUrl: https://jfrog.com/xray/
categories:
- proprietary
- name: apt2sbom
publisher: Eliot Lear
description: Build an SBOM out of APT and python information
websiteUrl: https://github.com/elear/apt2sbom
repoUrl: https://github.com/elear/apt2sbom
categories:
- opensource
- build-integration
- name: NetRise Turbine
publisher: NetRise
description: NetRise Turbine is a firmware analysis platform that creates SBOMs
by analyzing binary artifacts and other key components such as configuration files,
credentials and cryptographic artifacts for maximum visibility and holistic risk
identification.
websiteUrl: https://www.netrise.io/
categories:
- proprietary
- name: Rebom
publisher: Reliza
websiteUrl: https://rebomdemo.relizahub.com
repoUrl: https://github.com/relizaio/rebom
description: Rebom by Reliza is an open source catalog of Software Bills of Materials
that supports CycloneDX in JSON format
categories:
- opensource
- distribute
- name: cve-bin-tool
publisher: Intel
description: CVE bin tool scans for a number of common, vulnerable components to
let you know if your system includes common libraries with known vulnerabilities
and outputs into CycloneDX format.
repoUrl: https://github.com/intel/cve-bin-tool
websiteUrl: https://cve-bin-tool.readthedocs.io/en/latest/
categories:
- opensource
- analysis
- name: Jetstack Secure
publisher: Jetstack
description: Jetstack Secure manages your machine identities across Cloud Native
Kubernetes and OpenShift environments and builds a detailed view of the enterprise
security posture.
repoUrl: https://github.com/jetstack/jetstack-secure
websiteUrl: https://www.jetstack.io/jetstack-secure/
categories:
- opensource
- name: Keysight IoT Security Assessment
publisher: Keysight
description: Keysight Automated Firmware Analysis, part of the Keysight IoT Security Assessment product, delivers highly accurate SBOMs and identifies CVEs, misconfigurations, hardcoded credentials, weak cryptography, and potential zero-day vulnerabilities.
websiteUrl: https://www.keysight.com/be/en/products/network-security/iot-security-assessment.html
categories:
- proprietary
- name: Ko
publisher: Google
description: Build and deploy Go applications on Kubernetes. Generates CycloneDX
SBOMs for all project dependencies.
repoUrl: https://github.com/google/ko
websiteUrl: https://github.com/google/ko
categories:
- opensource
- build-integration
- name: Sonatype Lift
publisher: Sonatype
description: Sonatype Lift is a cloud-native, collaborative, code analysis platform
built for developers. It analyzes each developer pull request to find and fix
security, performance, reliability, and style issues, and generates CycloneDX
SBOMs.
repoUrl: https://lift.sonatype.com/
websiteUrl: https://lift.sonatype.com/
categories:
- proprietary
- build-integration
- name: spdxcyclone
publisher: Gary O'Neall
description: Prototype utility that converts SBOM documents between SPDX and CycloneDX.
repoUrl: https://github.com/goneall/spdxcyclone
websiteUrl: https://github.com/goneall/spdxcyclone
categories:
- opensource
- transform
- name: Trivy
publisher: Aqua Security
description: Trivy is an open source cloud native security scanner. It can scan a variety
of targets (containers, code repositories, VMs, clusters), and find there a variety of