-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtechstack.yml
1343 lines (1343 loc) · 54.5 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: kclhi/phenoflow
report_id: 647b5f87b1d7ebcdaa8ea8cadb6679b4
version: 0.1
repo_type: Public
timestamp: '2024-02-11T18:36:21+00:00'
requested_by: martinchapman
provider: github
branch: git-backend
detected_tools_count: 89
tools:
- 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/kclhi/phenoflow
detection_source: Repo Metadata
- name: Python
description: A clear and powerful object-oriented programming language, comparable
to Perl, Ruby, Scheme, or Java.
website_url: https://www.python.org
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/993/pUBY5pVj.png
detection_source_url: https://github.com/kclhi/phenoflow
detection_source: Repo Metadata
- name: ceph
description: A free-software storage platform
website_url: http://ceph.com/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: File Storage
image_url: https://img.stackshare.io/service/1818/cephglyph_copy_400x400.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/docker-compose.yml
detection_source: importer/docker-compose.yml
last_updated_by: Martin Chapman
last_updated_on: 2020-04-17 19:28:32.000000000 Z
- name: ExpressJS
description: Sinatra inspired web development framework for node.js -- insanely
fast, flexible, and simple
website_url: http://expressjs.com/
version: 4.17.3
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Microframeworks (Backend)
image_url: https://img.stackshare.io/service/1163/hashtag.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-08-04 19:52:33.000000000 Z
- name: Node.js
description: A platform built on Chrome's JavaScript runtime for easily building
fast, scalable network applications
website_url: http://nodejs.org/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/1011/n1JRsFeB_400x400.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/clt/images/node/Dockerfile
detection_source: generator/clt/images/node/Dockerfile
last_updated_by: Martin Chapman
last_updated_on: 2020-06-04 19:39:51.000000000 Z
- name: MongoDB
description: The database for giant ideas
website_url: http://www.mongodb.com/
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1030/leaf-360x360.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/visualiser/docker-compose.yml
detection_source: visualiser/docker-compose.yml
last_updated_by: Martin Chapman
last_updated_on: 2022-08-04 19:09:34.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/kclhi/phenoflow/blob/git-backend/importer/docker-compose.yml
detection_source: importer/docker-compose.yml
last_updated_by: Martin Chapman
last_updated_on: 2020-04-17 19:28:32.000000000 Z
- name: SQLite
description: A software library that implements a self-contained, serverless, zero-configuration,
transactional SQL database engine
website_url: http://www.sqlite.org/
open_source: false
hosted_saas: true
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1071/sqlite.jpg
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2020-03-23 12:39:19.000000000 Z
- name: Sequelize
description: Easy-to-use multi SQL dialect ORM for Node.js
website_url: https://sequelize.org/
version: 6.17.0
license: MIT
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Object Relational Mapper (ORM)
image_url: https://img.stackshare.io/service/3211/3591786.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-03-30 17:23:32.000000000 Z
- name: Apache HTTP Server
description: Open-source HTTP server for modern operating systems including UNIX
and Windows
website_url: https://httpd.apache.org/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Application Hosting
sub_category: Web Servers
image_url: https://img.stackshare.io/service/1051/default_9e444e0d6cc9f4f55f1b86979900673af4de46aa.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/test/fixtures/templates/i2b2/docker-compose.yml
detection_source: importer/test/fixtures/templates/i2b2/docker-compose.yml
last_updated_by: Martin Chapman
last_updated_on: 2020-06-04 19:39:51.000000000 Z
- name: Chai
description: A BDD / TDD assertion library
website_url: http://chaijs.com/
version: 4.3.6
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/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2020-03-23 12:39:19.000000000 Z
- name: Docker
description: Enterprise Container Platform for High-Velocity Innovation.
website_url: https://www.docker.com/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Virtual Machine Platforms & Containers
image_url: https://img.stackshare.io/service/586/n4u37v9t_400x400.png
detection_source_url: https://github.com/kclhi/phenoflow
detection_source: Repo Metadata
- name: Dotenv
description: Loads environment variables from .env for Nodejs projects
website_url: https://github.com/motdotla/dotenv
license: BSD-2-Clause
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Server Configuration and Automation
image_url: https://img.stackshare.io/service/8067/default_90dcb1286af7685c68df319c764b80704df1155b.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-03-30 17:23:32.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/kclhi/phenoflow
detection_source: Repo Metadata
- name: Mocha
description: Simple, flexible, fun javascript test framework for node.js & the
browser
website_url: http://mochajs.org/
version: 9.2.2
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/832/mocha.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-11-17 14:55:40.000000000 Z
- name: NGINX
description: A high performance free open source web server powering busiest sites
on the Internet.
website_url: http://nginx.org
open_source: false
hosted_saas: false
category: Application Hosting
sub_category: Web Servers
image_url: https://img.stackshare.io/service/1052/YMxUfyWf.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/docker-compose.yml
detection_source: importer/docker-compose.yml
last_updated_by: Martin Chapman
last_updated_on: 2020-04-17 19:28:32.000000000 Z
- name: Octokit
description: GitHub API Client Library for .NET
website_url: https://github.com/octokit/octokit.net
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Tools for GitHub
image_url: https://img.stackshare.io/service/9827/octokit-dotnet_2.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-09-08 23:49:02.000000000 Z
- name: PyPI
description: A repository of software for the Python programming language
website_url: https://pypi.org/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Hosted Package Repository
image_url: https://img.stackshare.io/service/12572/-RIWgodF_400x400.jpg
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/requirements.txt
detection_source: importer/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2020-04-01 10:14:53.000000000 Z
- name: Wildfly
description: A Java EE8 Application Server
website_url: https://www.wildfly.org/
open_source: false
hosted_saas: false
category: Application Hosting
sub_category: Web Servers
image_url: https://img.stackshare.io/service/3411/R_inOTNM_400x400.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/test/fixtures/templates/i2b2/docker-compose.yml
detection_source: importer/test/fixtures/templates/i2b2/docker-compose.yml
last_updated_by: Martin Chapman
last_updated_on: 2020-06-04 19:39:51.000000000 Z
- name: isomorphic-git
description: A JavaScript implementation of Git
website_url: https://isomorphic-git.org/
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Version Control System
image_url: https://img.stackshare.io/service/21667/default_8e23e4cc0689aed92d026d2671e52e24c5940d14.jpg
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-03-30 17:23:32.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/kclhi/phenoflow/blob/git-backend/parser/package.json
detection_source: parser/package.json
last_updated_by: Martin Chapman
last_updated_on: 2020-03-23 12:39:19.000000000 Z
- name: Mongo
description: Heroku provides services and tools to build, run, and scale web applications.
Follow @herokustatus for platform updates. A @salesforce company.
website_url: http://wedesignapps.herokuapp.com
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/3519/3wgIDj3j_normal.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/visualiser/docker-compose.yml
detection_source: visualiser/docker-compose.yml
last_updated_by: Martin Chapman
last_updated_on: 2022-08-04 19:09:34.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/kclhi/phenoflow
detection_source: Repo Metadata
- name: Ubuntu
description: The leading OS for PC, tablet, phone and cloud
website_url: http://www.ubuntu.com/
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Operating Systems
image_url: https://img.stackshare.io/service/3511/cof_orange_hex.jpg
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/clt/images/knime/Dockerfile
detection_source: generator/clt/images/knime/Dockerfile
last_updated_by: Martin Chapman
last_updated_on: 2020-03-06 01:01:52.000000000 Z
- name: Websockets
description: A technology that makes it possible to open a two-way interactive communication
website_url: https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API
version: 11.0.2
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/4220/LNPwoiWi_400x400.jpg
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: Winston
description: a multi-transport async logging library for node.js
website_url: https://github.com/winstonjs/winston
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/6668/9682013.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:47:14.000000000 Z
- name: PyYAML
description: YAML parser and emitter for Python
package_url: https://pypi.org/project/PyYAML
version: '6.0'
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19829/default_74a61b43bdb9fc0cba2978316b9976f43545029b.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: Pygments
description: Pygments is a syntax highlighting package written in Python
package_url: https://pypi.org/project/Pygments
version: 2.15.0
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19858/default_4d761b2257a1435539d6dc92346974d9f1d55c70.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: SecretStorage
description: Python bindings to FreeDesktop.org Secret Service API
package_url: https://pypi.org/project/SecretStorage
version: 3.3.3
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: bleach
description: An easy safelist-based HTML-sanitizing tool
package_url: https://pypi.org/project/bleach
version: 6.0.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20045/default_b0b684477aefb2da4c92a4bafd91d26e16511cd1.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: certifi
description: Python package for providing Mozilla's CA Bundle
package_url: https://pypi.org/project/certifi
version: 2022.12.7
license: MPL-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19849/default_75c38a39b9f0062814489e2ec2cbfca0ca15d9ba.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
vulnerabilities:
- name: Removal of e-Tugra root certificate
cve_id: CVE-2023-37920
cve_url: https://github.com/advisories/GHSA-xqr8-7jwr-rhp7
detected_date: Jul 26
severity: high
first_patched: 2023.7.22
- name: cffi
description: Foreign Function Interface for Python calling C code
package_url: https://pypi.org/project/cffi
version: 1.15.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19909/default_67f813d4aac73d024261bcfded6ef2b918e384a0.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: chardet
description: Universal encoding detector for Python 2 and 3
package_url: https://pypi.org/project/chardet
version: 5.1.0
license: LGPL-2.1
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19856/default_4a8a8fdc10130068bf295812b98e9b72fb42fe70.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: click
description: Composable command line interface toolkit
package_url: https://pypi.org/project/click
version: 8.1.3
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19830/default_74a61b43bdb9fc0cba2978316b9976f43545029b.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: cryptography
description: Cryptography is a package which provides cryptographic recipes and
primitives to Python developers
package_url: https://pypi.org/project/cryptography
version: 40.0.2
license: BSD-3-Clause,Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19850/default_db2ab2702f70e20c272f6ce65251108fb2b8f1ea.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
vulnerabilities:
- name: cryptography mishandles SSH certificates
cve_id: CVE-2023-38325
cve_url: https://github.com/advisories/GHSA-cf7p-gm2m-833m
detected_date: Jul 15
severity: high
first_patched: 41.0.2
- name: cryptography vulnerable to NULL-dereference when loading PKCS7 certificates
cve_id: CVE-2023-49083
cve_url: https://github.com/advisories/GHSA-jfhm-5ghh-2f97
detected_date: Nov 29
severity: moderate
first_patched: 41.0.6
- name: Python Cryptography package vulnerable to Bleichenbacher timing oracle attack
cve_id: CVE-2023-50782
cve_url: https://github.com/advisories/GHSA-3ww4-gg4f-jr7f
detected_date: Feb 6
severity: moderate
first_patched: 42.0.0
- name: Vulnerable OpenSSL included in cryptography wheels
cve_id:
cve_url: https://github.com/advisories/GHSA-5cpq-8wj7-hf2v
detected_date: Jun 3
severity: low
first_patched: 41.0.0
- name: pyca/cryptography's wheels include vulnerable OpenSSL
cve_id:
cve_url: https://github.com/advisories/GHSA-jm77-qphf-c4w8
detected_date: Aug 2
severity: low
first_patched: 41.0.3
- name: Vulnerable OpenSSL included in cryptography wheels
cve_id:
cve_url: https://github.com/advisories/GHSA-v8gr-m533-ghj9
detected_date: Sep 22
severity: low
first_patched: 41.0.4
- name: docutils
description: Docutils -- Python Documentation Utilities
package_url: https://pypi.org/project/docutils
version: '0.19'
license: Unlicense,Python-2.0,BSD-2-Clause,CNRI-Python-GPL-Compatible
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19874/default_7ed3c4ccf2a3218ae3655165b980bd4a90a445dc.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: gitdb
description: Git Object Database
package_url: https://pypi.org/project/gitdb
version: 4.0.10
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: h11
description: A pure-Python
package_url: https://pypi.org/project/h11
version: 0.14.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: httptools
description: A collection of framework independent HTTP protocol utils
package_url: https://pypi.org/project/httptools
version: 0.5.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: httpx
description: The next generation HTTP client
package_url: https://pypi.org/project/httpx
version: 0.24.0
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20315/default_5f4e928dbcb1c4db4050881fc2e0229785fc931c.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: idna
description: Internationalized Domain Names in Applications
package_url: https://pypi.org/project/idna
version: '3.4'
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19863/default_f24e00e4cb7620e436f9d06e0305070e1335922a.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: jeepney
description: Low-level, pure Python DBus protocol wrapper
package_url: https://pypi.org/project/jeepney
version: 0.8.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: keyring
description: Store and access your passwords safely
package_url: https://pypi.org/project/keyring
version: 23.13.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19953/default_fbe690a687f1af7dc36ac3d526708be3294c4cc9.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: nodeenv
description: Node.js virtual environment builder
package_url: https://pypi.org/project/nodeenv
version: 1.7.0
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: nose
description: Nose extends unittest to make testing easier
package_url: https://pypi.org/project/nose
version: 1.3.7
license: LGPL-2.1+
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19887/default_680f9274a97353753534797409b2c06b6bd32266.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: oyaml
description: 'Ordered YAML: drop-in replacement for PyYAML which preserves dict
ordering'
package_url: https://pypi.org/project/oyaml
version: '1.0'
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: pkginfo
description: Query metadatdata from sdists / bdists / installed packages
package_url: https://pypi.org/project/pkginfo
version: 1.9.6
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20081/default_37d5d9a0fd58ccb83ff41d58247ae840c789ee9e.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: pycparser
description: C parser in Python
package_url: https://pypi.org/project/pycparser
version: '2.21'
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20072/default_d7fc4eabe57370d13c2a8ad2f7f6bb876c96c66d.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: requests
description: Python HTTP for Humans
package_url: https://pypi.org/project/requests
version: 2.28.2
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19826/default_d7c684bf2673f008a9f02ac93901229297a22d7e.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
vulnerabilities:
- name: Unintended leak of Proxy-Authorization header in requests
cve_id: CVE-2023-32681
cve_url: https://github.com/advisories/GHSA-j8r2-6x86-q33q
detected_date: May 23
severity: moderate
first_patched: 2.31.0
- name: requests-toolbelt
description: A utility belt for advanced users of python-requests
package_url: https://pypi.org/project/requests-toolbelt
version: 0.10.1
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20128/default_3146a05cf4dd77d8b50cff25709373c081ac5053.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: ruamel.yaml
description: Ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation
of comments
package_url: https://pypi.org/project/ruamel.yaml
version: 0.16.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19918/default_c8be5290cb8d8a8b578535a2c6475d1057ff4ea4.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: six
description: Python 2 and 3 compatibility utilities
package_url: https://pypi.org/project/six
version: 1.16.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19827/default_74a61b43bdb9fc0cba2978316b9976f43545029b.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: starlette
description: The little ASGI library that shines
package_url: https://pypi.org/project/starlette
version: 0.26.1
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20295/default_640b00772a7025571fa2ac02de971e76f9662aa9.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
vulnerabilities:
- name: Starlette Content-Type Header ReDoS
cve_id:
cve_url: https://github.com/advisories/GHSA-93gm-qmq6-w238
detected_date: Feb 6
severity: high
first_patched: 0.36.2
- name: 'Duplicate Advisory: Starlette vulnerable to directory traversal'
cve_id:
cve_url: https://github.com/advisories/GHSA-qj8w-rv5x-2v9h
detected_date: Jun 6
severity: high
first_patched: 0.27.0
- name: Starlette has Path Traversal vulnerability in StaticFiles
cve_id: CVE-2023-29159
cve_url: https://github.com/advisories/GHSA-v5gw-mw7f-84px
detected_date: May 17
severity: low
first_patched: 0.27.0
- name: tqdm
description: Fast, Extensible Progress Meter
package_url: https://pypi.org/project/tqdm
version: 4.65.0
license: MPL-2.0,MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19846/default_accee5d2b8ed75c2245f13504daf75b1cbc8cc9f.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: twine
description: Collection of utilities for publishing packages on PyPI
package_url: https://pypi.org/project/twine
version: 4.0.2
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19935/default_63c8e7696ded615c51302c06e54b0d0c8ae9af3f.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: urllib3
description: HTTP library with thread-safe connection pooling
package_url: https://pypi.org/project/urllib3
version: 1.26.15
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19842/default_4604ff5dcb7f4d9c7b3833591c2142493951b19c.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
vulnerabilities:
- name: urllib3's request body not stripped after redirect from 303 status changes
request method to GET
cve_id: CVE-2023-45803
cve_url: https://github.com/advisories/GHSA-g4mx-q9vg-27p4
detected_date: Oct 18
severity: moderate
first_patched: 1.26.18
- name: "`Cookie` HTTP header isn't stripped on cross-origin redirects"
cve_id: CVE-2023-43804
cve_url: https://github.com/advisories/GHSA-v845-jxx5-vc9f
detected_date: Oct 3
severity: moderate
first_patched: 1.26.17
- name: uvicorn
description: The lightning-fast ASGI server
package_url: https://pypi.org/project/uvicorn
version: 0.21.1
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20431/default_f824837db22536768ec317b67275fa384fad7d47.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: uvloop
description: Fast implementation of asyncio event loop on top of libuv
package_url: https://pypi.org/project/uvloop
version: 0.17.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20187/default_c5c395350b07388a35a5e9efffb0ea706d6e196d.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: webencodings
description: Character encoding aliases for legacy web content
package_url: https://pypi.org/project/webencodings
version: 0.5.1
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20327/default_1342a7e78c3c34f58715077849cd487ffddd263d.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: websockets
description: An implementation of the WebSocket Protocol
package_url: https://pypi.org/project/websockets
version: 11.0.2
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19951/default_fbe690a687f1af7dc36ac3d526708be3294c4cc9.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/generator/requirements.txt
detection_source: generator/requirements.txt
last_updated_by: Martin Chapman
last_updated_on: 2023-04-20 17:33:27.000000000 Z
- name: "@octokit/rest"
description: GitHub REST API client for Node.js
package_url: https://www.npmjs.com/@octokit/rest
version: 19.0.4
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16999/default_43f23668e39c9b3381720c9c76540776b8a49167.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-09-08 23:49:02.000000000 Z
- name: adm-zip
description: Javascript implementation of zip for nodejs with support for electron
original-fs
package_url: https://www.npmjs.com/adm-zip
version: 0.5.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16663/default_e654289254bcb9b55e3dca992739e962dc0c7297.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2021-11-25 15:05:32.000000000 Z
- name: bcrypt
description: A bcrypt library for NodeJS
package_url: https://www.npmjs.com/bcrypt
version: 5.0.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16526/default_0a704f5fac0bffcf529c9a61658d0b9ddbf7504e.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2021-05-25 18:24:30.000000000 Z
- name: body-parser
description: Node.js body parsing middleware
package_url: https://www.npmjs.com/body-parser
version: 1.19.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15906/default_7c39a83d4acd952df89b1ebfdb94c8646324fbf1.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-03-30 17:23:32.000000000 Z
- name: chai-http
description: Extend Chai Assertion library with tests for http apis
package_url: https://www.npmjs.com/chai-http
version: 4.3.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16767/default_aa2369d4412b5a2c6812de3c666299e0ccd25ea2.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-03-30 17:23:32.000000000 Z
- name: compromise
description: Modest natural language processing
package_url: https://www.npmjs.com/compromise
version: 13.11.4
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Package Managers
image_url: https://img.stackshare.io/package/npm/image.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/parser/package-lock.json
detection_source: parser/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-08-02 18:32:46.000000000 Z
- name: config
description: Configuration control for production node deployments
package_url: https://www.npmjs.com/config
version: 3.3.7
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16353/default_b5c8f3c8e46d368f74a982d06d7f13291fe651ea.png
detection_source_url: https://github.com/kclhi/phenoflow/blob/git-backend/importer/package-lock.json
detection_source: importer/package.json
last_updated_by: Martin Chapman
last_updated_on: 2022-03-30 17:23:32.000000000 Z
- name: cookie-parser
description: Parse HTTP request cookies
package_url: https://www.npmjs.com/cookie-parser
version: 1.4.6
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16136/default_def3edb85d7fbd20200a5cd7d0a1679e31bc8b3d.png