-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtechstack.yml
1998 lines (1998 loc) · 78.2 KB
/
techstack.yml
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
repo_name: IHTSDO/MLDS
report_id: ea45968d704df4abf9f47fd5f3f4145c
version: 0.1
repo_type: Public
timestamp: '2024-03-21T12:57:39+00:00'
requested_by: dmcgihtsdo
provider: github
branch: master
detected_tools_count: 147
tools:
- name: CSS 3
description: The latest evolution of the Cascading Style Sheets language
website_url: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS3
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/6727/css.png
detection_source_url: https://github.com/IHTSDO/MLDS
detection_source: Repo Metadata
- name: CoffeeScript
description: A little language that compiles into JavaScript
website_url: http://coffeescript.org/
version: 1.4.0
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1178/slQydAMv.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/webapp/bower_components/ngInfiniteScroll/package.json
detection_source: src/main/webapp/bower_components/ngInfiniteScroll/Gruntfile.coffee
last_updated_by: David Jones
last_updated_on: 2014-08-18 14:34:52.000000000 Z
- name: EJS
description: An Embedded JavaScript templating Language
website_url: https://ejs.co/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Templating Languages & Extensions
image_url: https://img.stackshare.io/no-img-open-source.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/webapp/bower_components/intl-tel-input/package.json
detection_source: src/main/webapp/bower_components/intl-tel-input/package.json
last_updated_by: Michael Buckley
last_updated_on: 2014-07-21 18:43:57.000000000 Z
- name: Java
description: A concurrent, class-based, object-oriented, language specifically designed
to have as few implementation dependencies as possible
website_url: https://www.java.com
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/995/K85ZWV2F.png
detection_source_url: https://github.com/IHTSDO/MLDS
detection_source: Repo Metadata
- name: JavaScript
description: Lightweight, interpreted, object-oriented language with first-class
functions
website_url: https://developer.mozilla.org/en-US/docs/Web/JavaScript
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1209/javascript.jpeg
detection_source_url: https://github.com/IHTSDO/MLDS
detection_source: Repo Metadata
- name: SQL
description: It is a domain-specific language used in programming
website_url: https://en.wikipedia.org/wiki/SQL
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/2271/default_068d33483bba6b81ee13fbd4dc7aab9780896a54.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/backup.sql
detection_source: backup.sql
last_updated_by: David Jones
last_updated_on: 2014-08-19 14:27:06.000000000 Z
- name: Spring Framework
description: An application framework and inversion of control container for the
Java platform
website_url: https://spring.io/projects/spring-framework
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/2006/spring-framework-project-logo.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: pgwilliams
last_updated_on: 2021-05-18 13:31:11.000000000 Z
- name: guava
description: Google Core Libraries for Java 6+
website_url: https://github.com/google/guava
version: '30.0'
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Java Tools
image_url: https://img.stackshare.io/service/2970/wBjKn0ol.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Michael Buckley
last_updated_on: 2014-08-27 16:16:06.000000000 Z
- name: jQuery
description: The Write Less, Do More, JavaScript Library.
website_url: http://jquery.com/
version: 1.10.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript UI Libraries
image_url: https://img.stackshare.io/service/1021/lxEKmMnB_400x400.jpg
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/bower.json
detection_source: bower.json
last_updated_by: anson-chung
last_updated_on: 2014-06-18 17:25:16.000000000 Z
- name: Ehcache
description: Java's Most Widely-Used Cache
website_url: http://ehcache.org/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Cache
image_url: https://img.stackshare.io/service/3093/EhcacheTwitterIcon.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Peter Groves Williams
last_updated_on: 2017-07-28 10:57:23.000000000 Z
- name: H2 Database
description: A relational database management system written in Java
website_url: http://www.h2database.com/
open_source: false
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/3105/h2-logo_square_400x400.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-17 14:34:56.000000000 Z
- name: Hibernate
description: Idiomatic persistence for Java and relational databases.
website_url: http://hibernate.org/
open_source: false
hosted_saas: false
category: Data Stores
sub_category: Object Relational Mapper (ORM)
image_url: https://img.stackshare.io/service/1756/1uNl_IZX.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-17 14:34:56.000000000 Z
- name: Liquibase
description: Easily track, version & deploy database changes
website_url: https://www.liquibase.com
license: Apache-2.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Database Tools
image_url: https://img.stackshare.io/service/1398/y1As8_s5_400x400.jpg
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-17 14:34:56.000000000 Z
- name: MySQL
description: The world's most popular open source database
website_url: http://www.mysql.com
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1025/logo-mysql-170x170.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Michael Buckley
last_updated_on: 2014-05-22 14:52:39.000000000 Z
- name: Ansible
description: Radically simple configuration-management, application deployment,
task-execution, and multi-node orchestration engine
website_url: http://www.ansible.com/
license: GPL-3.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Server Configuration and Automation
image_url: https://img.stackshare.io/service/663/ElOjna20.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/ansible/ansible.cfg
detection_source: src/main/ansible/ansible.cfg
last_updated_by: Michael Buckley
last_updated_on: 2014-06-03 19:22:06.000000000 Z
- name: Bower
description: A package manager for the web
website_url: http://bower.io
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Package Managers
image_url: https://img.stackshare.io/service/847/66db62603f426a8fc6664081811be6d4.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/package.json
detection_source: package.json
last_updated_by: Rory Davidson
last_updated_on: 2022-04-14 09:33:02.000000000 Z
- name: Chai
description: A BDD / TDD assertion library
website_url: http://chaijs.com/
version: 1.4.0
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/1725/chai.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/webapp/bower_components/ngInfiniteScroll/package.json
detection_source: src/main/webapp/bower_components/ngInfiniteScroll/package.json
last_updated_by: David Jones
last_updated_on: 2014-08-18 14:34:52.000000000 Z
- name: Git
description: Fast, scalable, distributed revision control system
website_url: http://git-scm.com/
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Version Control System
image_url: https://img.stackshare.io/service/1046/git.png
detection_source_url: https://github.com/IHTSDO/MLDS
detection_source: Repo Metadata
- name: Grunt
description: The JavaScript Task Runner
website_url: http://gruntjs.com/
version: 1.3.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: JS Build Tools / JS Task Runners
image_url: https://img.stackshare.io/service/845/falgg2jybmhgk16y62lr.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/package.json
detection_source: package.json
last_updated_by: Rory Davidson
last_updated_on: 2022-04-14 09:33:02.000000000 Z
- name: Jasmine
description: DOM-less simple JavaScript testing framework
website_url: http://jasmine.github.io/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/831/7c0b595409af531b9cdeb07f8c513e8b.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/package.json
detection_source: package.json
last_updated_by: Rory Davidson
last_updated_on: 2022-04-14 09:33:02.000000000 Z
- name: Karma
description: Spectacular Test Runner for JavaScript
website_url: http://karma-runner.github.io/
version: 6.3.16
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Browser Testing
image_url: https://img.stackshare.io/service/1420/TidYGd6a.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/package.json
detection_source: package.json
last_updated_by: Rory Davidson
last_updated_on: 2022-04-14 09:33:02.000000000 Z
- name: LiveReload
description: CSS edits and image changes apply live. CoffeeScript, SASS, LESS and
others just work.
website_url: http://livereload.com
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Live Reloading
image_url: https://img.stackshare.io/service/2601/128.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/webapp/bower_components/ng-csv/package.json
detection_source: src/main/webapp/bower_components/ng-csv/package.json
last_updated_by: David Jones
last_updated_on: 2014-12-29 21:40:10.000000000 Z
- name: Logback
description: A logging framework for Java applications
website_url: https://logback.qos.ch/
open_source: false
hosted_saas: false
category: Monitoring
sub_category: Log Management
image_url: https://img.stackshare.io/service/2923/05518ecaa42841e834421e9d6987b04f_400x400.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/resources/logback.xml
detection_source: src/main/resources/logback.xml
last_updated_by: Michael Buckley
last_updated_on: 2014-06-10 18:50:21.000000000 Z
- name: PhantomJS
description: Scriptable Headless WebKit
website_url: https://phantomjs.org/
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Headless Browsers
image_url: https://img.stackshare.io/service/1832/phantomjs.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/package.json
detection_source: package.json
last_updated_by: Rory Davidson
last_updated_on: 2022-04-14 09:33:02.000000000 Z
- name: RequireJS
description: JavaScript file and module loader
website_url: http://requirejs.org/
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Front End Package Manager
image_url: https://img.stackshare.io/service/852/1781835.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/package.json
detection_source: package.json
last_updated_by: Rory Davidson
last_updated_on: 2022-04-14 09:33:02.000000000 Z
- name: Travis CI
description: A hosted continuous integration service for open source and private
projects
website_url: http://travis-ci.com/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Integration
image_url: https://img.stackshare.io/service/460/Lu6cGu0z_400x400.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/webapp/bower_components/angular-dynamic-locale/.travis.yml
detection_source: src/main/webapp/bower_components/angular-dynamic-locale/.travis.yml
last_updated_by: Michael Buckley
last_updated_on: 2014-06-10 18:50:21.000000000 Z
- name: Vagrant
description: A tool for building and distributing development environments
website_url: http://www.vagrantup.com/
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Virtual Machine Management
image_url: https://img.stackshare.io/service/768/150px-Vagrant.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/ansible/Vagrantfile
detection_source: src/main/ansible/Vagrantfile
last_updated_by: Michael Buckley
last_updated_on: 2014-06-03 19:22:06.000000000 Z
- name: npm
description: The package manager for JavaScript.
website_url: https://www.npmjs.com/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Front End Package Manager
image_url: https://img.stackshare.io/service/1120/lejvzrnlpb308aftn31u.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/webapp/bower_components/ngInfiniteScroll/package.json
detection_source: src/main/webapp/bower_components/ngInfiniteScroll/package.json
last_updated_by: David Jones
last_updated_on: 2014-08-18 14:34:52.000000000 Z
- name: Apache Camel
description: A versatile open source integration framework
website_url: https://camel.apache.org/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Application Hosting
sub_category: Platform as a Service
image_url: https://img.stackshare.io/service/3276/xWt1RFo6_400x400.jpg
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/resources/config/application.properties
detection_source: src/main/resources/config/application.properties
last_updated_by: jaykamal
last_updated_on: 2023-05-29 08:07:48.000000000 Z
- name: Firefox
description: Mozilla's Web Browser
website_url: https://www.mozilla.org/en-US/firefox/
open_source: false
hosted_saas: false
category: Back Office
sub_category: Web Browser
image_url: https://img.stackshare.io/service/8705/768px-Firefox_Logo__2017.svg.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/src/main/webapp/bower_components/angular-dynamic-locale/package.json
detection_source: src/main/webapp/bower_components/angular-dynamic-locale/package.json
last_updated_by: Michael Buckley
last_updated_on: 2014-06-10 18:50:21.000000000 Z
- name: Font Awesome
description: The internet's most popular icon toolkit
website_url: https://fontawesome.com/
version: 4.2.0
open_source: true
hosted_saas: false
category: Design
sub_category: Fonts
image_url: https://img.stackshare.io/service/3244/1_Mr1Fy00XjPGNf1Kkp_hWtw_2x.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/bower.json
detection_source: bower.json
last_updated_by: David Jones
last_updated_on: 2014-12-29 21:40:24.000000000 Z
- name: Modernizr
description: Respond to your user’s browser features
website_url: https://modernizr.com/
version: 3.7.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/2440/9TeXWBzR_400x400.jpg
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/bower.json
detection_source: bower.json
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-10 07:23:48.000000000 Z
- name: Moment.js
description: A JavaScript date library for parsing, validating, manipulating, and
formatting dates
website_url: http://momentjs.com/
version: 2.11.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/3643/Xrtdc94q_400x400.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/bower.json
detection_source: bower.json
last_updated_by: jaykamal
last_updated_on: 2023-06-07 08:21:16.000000000 Z
- name: Shell
description: A shell is a text-based terminal, used for manipulating programs and
files. Shell scripts typically manage program execution.
website_url: https://en.wikipedia.org/wiki/Shell_script
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/4631/default_c2062d40130562bdc836c13dbca02d318205a962.png
detection_source_url: https://github.com/IHTSDO/MLDS
detection_source: Repo Metadata
- name: com.fasterxml.jackson.datatype:jackson-datatype-joda
description: Add-on module for Jackson
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: com.fasterxml.jackson.datatype:jackson-datatype-json-org
description: Support for datatypes of "org.json" JSON library
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: com.google.guava:guava
description: Guava is a suite of core and expanded libraries that include utility
classes
version: '30.0'
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
vulnerabilities:
- name: Guava vulnerable to insecure use of temporary directory
cve_id: CVE-2023-2976
cve_url: https://github.com/advisories/GHSA-7g45-4rm6-3mm3
detected_date: Jun 15
severity: moderate
first_patched: 32.0.0-android
- name: Information Disclosure in Guava
cve_id: CVE-2020-8908
cve_url: https://github.com/advisories/GHSA-5mg8-w23w-74h3
detected_date: Aug 22
severity: low
first_patched: 32.0.0-android
- name: com.h2database:h2
description: H2 Database Engine
license: MIT-feh
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: com.jayway.awaitility:awaitility
description: A Java DSL for synchronizing asynchronous operations
version: 1.4.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: com.jayway.jsonpath:json-path
description: Java port of Stefan Goessner JsonPath
version: 2.2.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
vulnerabilities:
- name: json-path Out-of-bounds Write vulnerability
cve_id: CVE-2023-51074
cve_url: https://github.com/advisories/GHSA-pfh2-hfmq-phg5
detected_date: Jan 18
severity: moderate
first_patched: 2.9.0
- name: com.mattbertolini:liquibase-slf4j
description: Liquibase SLF4J Logger
version: 1.2.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: com.rometools:rome
description: All Roads Lead to ROME
version: 1.15.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: com.ryantenney.metrics:metrics-spring
description: Spring integration for Coda Hale's Metrics Library
version: 3.0.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: com.zaxxer:HikariCP
description: Ultimate JDBC Connection Pool
version: 1.3.8
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: commons-io:commons-io
description: The Apache Commons IO library contains utility classes
version: '2.4'
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Peter G. Williams
last_updated_on: 2015-01-13 14:39:14.000000000 Z
vulnerabilities:
- name: Path Traversal and Improper Input Validation in Apache Commons IO
cve_id: CVE-2021-29425
cve_url: https://github.com/advisories/GHSA-gwrp-pvrq-jmwv
detected_date: Aug 22
severity: moderate
first_patched: '2.7'
- name: commons-lang:commons-lang
description: Commons Lang
version: '2.6'
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Peter G. Williams
last_updated_on: 2015-01-13 14:39:14.000000000 Z
- name: io.dropwizard.metrics:metrics-core
description: Metrics is a Java library which gives you unparalleled insight into
what your code does in production
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-17 14:34:56.000000000 Z
- name: io.dropwizard.metrics:metrics-graphite
description: A reporter for Metrics which announces measurements to a Graphite server
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Peter Groves Williams
last_updated_on: 2017-07-03 14:23:20.000000000 Z
- name: io.dropwizard.metrics:metrics-servlets
description: A set of utility servlets for Metrics
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Rory Davidson
last_updated_on: 2017-11-21 09:23:56.000000000 Z
- name: javax.inject:javax.inject
description: The javax.inject API
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-17 14:34:56.000000000 Z
- name: javax.xml.bind:jaxb-api
description: JAXB
version: 2.3.1
license: CDDL-1.1,CNRI-Python-GPL-Compatible
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-17 14:34:56.000000000 Z
- name: joda-time:joda-time
description: Date and time library to replace JDK date handling
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: pgwilliams
last_updated_on: 2020-11-30 17:38:54.000000000 Z
- name: joda-time:joda-time-hibernate
description: Contribution to Joda-Time that adds Hibernate support
version: '1.3'
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-17 14:34:56.000000000 Z
- name: mysql:mysql-connector-java
description: MySQL JDBC Type 4 driver
version: 8.0.22
license: GPL-3.0-only
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-17 14:34:56.000000000 Z
vulnerabilities:
- name: Incorrect Authorization in MySQL Connector Java
cve_id: CVE-2021-2471
cve_url: https://github.com/advisories/GHSA-w6f2-8wx4-47r5
detected_date: Jun 23
severity: moderate
first_patched: 8.0.27
- name: Improper Handling of Insufficient Permissions or Privileges in MySQL Connectors
Java
cve_id: CVE-2022-21363
cve_url: https://github.com/advisories/GHSA-g76j-4cxx-23h9
detected_date: Jun 21
severity: moderate
first_patched: 8.0.28
- name: net.java.dev.jna:jna
description: Java Native Access
version: 5.7.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-17 14:34:56.000000000 Z
- name: org.apache.httpcomponents:httpclient
description: Apache HttpComponents Client
version: 4.5.2
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
vulnerabilities:
- name: Cross-site scripting in Apache HttpClient
cve_id: CVE-2020-13956
cve_url: https://github.com/advisories/GHSA-7r82-7xv7-xcpj
detected_date: Aug 22
severity: moderate
first_patched: 4.5.13
- name: org.assertj:assertj-core
description: Rich and fluent assertions for testing for Java
version: 1.6.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.hibernate:hibernate-core
description: Hibernate's core ORM functionality
license: LGPL-2.0-only,GPL-3.0-or-later
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.hibernate:hibernate-ehcache
description: Integration for using Ehcache 2.x as a Hibernate second-level-cache
provider
license: LGPL-2.0-only,GPL-3.0-or-later
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.hibernate:hibernate-entitymanager
description: ''
license: LGPL-2.0-only,GPL-3.0-or-later
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.hibernate:hibernate-validator
description: Hibernate's Bean Validation
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.jadira.usertype:usertype.core
description: Classes utilising Joda Time
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.jsoup:jsoup
description: Jsoup is a Java library for working with real-world HTML
version: 1.14.3
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
vulnerabilities:
- name: jsoup may not sanitize code injection XSS attempts if SafeList.preserveRelativeLinks
is enabled
cve_id: CVE-2022-36033
cve_url: https://github.com/advisories/GHSA-gp7f-rwcx-9369
detected_date: Sep 2
severity: moderate
first_patched: 1.15.3
- name: org.liquibase:liquibase-core
description: Liquibase is a tool for managing and executing database changes
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-actuator
description: Spring Boot Actuator
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-autoconfigure
description: Spring Boot AutoConfigure
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-loader-tools
description: Spring Boot Loader Tools
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-starter-aop
description: Starter for aspect-oriented programming with Spring AOP and AspectJ
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-starter-data-jpa
description: Starter for using Spring Data JPA with Hibernate
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-starter-logging
description: Starter for logging using Logback. Default logging starter
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-starter-mail
description: Starter for using Java Mail and Spring Framework's email sending support
version: 2.4.5
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-starter-security
description: Starter for using Spring Security
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-starter-test
description: Starter for testing Spring Boot applications with libraries including
JUnit
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-starter-thymeleaf
description: Starter for building MVC web applications using Thymeleaf views
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/IHTSDO/MLDS/blob/master/pom.xml
detection_source: pom.xml
last_updated_by: Aravinth Aasai
last_updated_on: 2023-05-23 08:27:14.000000000 Z
- name: org.springframework.boot:spring-boot-starter-tomcat
description: Starter for using Tomcat as the embedded servlet container