forked from ossf/alpha-omega
-
Notifications
You must be signed in to change notification settings - Fork 2
/
github_repos.txt
5143 lines (5143 loc) · 194 KB
/
github_repos.txt
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
DictReader
http://github.com/addaleax/natives
http://github.com/jonschlinkert/kind-of
http://github.com/juliangruber/isarray
http://github.com/ljharb/qs
http://github.com/nodejs/readable-stream
http://github.com/nodejs/string_decoder
http://github.com/qos-ch/logback
http://github.com/substack/minimist
https://github.com/0xfe/vexflow
https://github.com/0xfml/poc
https://github.com/0xProject/0x-monorepo
https://github.com/10up/ElasticPress
https://github.com/11ty/eleventy
https://github.com/18F/18f.gsa.gov
https://github.com/18F/identity-idp
https://github.com/2600hz/kazoo
https://github.com/2factorauth/twofactorauth
https://github.com/360Controller/360Controller
https://github.com/3b1b/manim
https://github.com/3dmol/3Dmol.js
https://github.com/42wim/matterbridge
https://github.com/4ian/GDevelop
https://github.com/99designs/aws-vault
https://github.com/99designs/gqlgen
https://github.com/a11yproject/a11yproject.com
https://github.com/abapGit/abapGit
https://github.com/abo-abo/swiper
https://github.com/abonas/kubeclient
https://github.com/abpframework/abp
https://github.com/abraunegg/onedrive
https://github.com/abrt/abrt
https://github.com/abseil/abseil-cpp
https://github.com/AcademySoftwareFoundation/openexr
https://github.com/acassen/keepalived
https://github.com/acemod/ACE3
https://github.com/acmesh-official/acme.sh
https://github.com/acornjs/acorn
https://github.com/acpica/acpica
https://github.com/acquia/blt
https://github.com/actionhero/actionhero
https://github.com/actions/cache
https://github.com/actions/runner
https://github.com/actions/setup-node
https://github.com/actions/virtual-environments
https://github.com/activeadmin/activeadmin
https://github.com/activemerchant/active_merchant
https://github.com/activerecord-hackery/ransack
https://github.com/activescaffold/active_scaffold
https://github.com/Activiti/Activiti
https://github.com/actix/actix
https://github.com/actix/actix-net
https://github.com/actix/actix-web
https://github.com/actor-framework/actor-framework
https://github.com/adaltas/node-csv-parse
https://github.com/adambard/learnxinyminutes-docs
https://github.com/Adapter-Hub/adapter-transformers
https://github.com/AdaptiveConsulting/ReactiveTraderCloud
https://github.com/adaptlearning/adapt_framework
https://github.com/adempiere/adempiere
https://github.com/AdguardTeam/AdguardFilters
https://github.com/AdguardTeam/AdGuardHome
https://github.com/adobe/brackets
https://github.com/Adobe-Consulting-Services/acs-aem-commons
https://github.com/adobe/react-spectrum
https://github.com/adobe-type-tools/afdko
https://github.com/AdoptOpenJDK/openjdk-build
https://github.com/AdrienTorris/awesome-blazor
https://github.com/adrienverge/yamllint
https://github.com/adventuregamestudio/ags
https://github.com/AElfProject/AElf
https://github.com/aerogear/graphback
https://github.com/aFarkas/lazysizes
https://github.com/AFLplusplus/AFLplusplus
https://github.com/AFNetworking/AFNetworking
https://github.com/afragen/github-updater
https://github.com/aframevr/aframe
https://github.com/agda/agda
https://github.com/agda/agda-stdlib
https://github.com/agenda/agenda
https://github.com/ag-grid/ag-grid
https://github.com/agherzan/meta-raspberrypi
https://github.com/ai/autoprefixer-rails
https://github.com/aio-libs/aiohttp
https://github.com/Airblader/i3
https://github.com/airblade/vim-gitgutter
https://github.com/airbnb/javascript
https://github.com/airbnb/lottie-android
https://github.com/airbnb/lottie-web
https://github.com/airbnb/react-dates
https://github.com/airbrake/airbrake
https://github.com/Aircoookie/WLED
https://github.com/aircrack-ng/aircrack-ng
https://github.com/ai/size-limit
https://github.com/ajaxorg/ace
https://github.com/ajv-validator/ajv
https://github.com/akaunting/akaunting
https://github.com/akeneo/pim-community-dev
https://github.com/akiran/react-slick
https://github.com/akka/akka
https://github.com/akka/akka-http
https://github.com/akka/alpakka
https://github.com/akkadotnet/akka.net
https://github.com/alacritty/alacritty
https://github.com/Alamofire/Alamofire
https://github.com/alan-turing-institute/MLJ.jl
https://github.com/alan-turing-institute/sktime
https://github.com/alan-turing-institute/the-turing-way
https://github.com/AlchemyCMS/alchemy_cms
https://github.com/alephdata/aleph
https://github.com/alerta/alerta
https://github.com/Alexander-Miller/treemacs
https://github.com/Alexays/Waybar
https://github.com/Alexey-T/CudaText
https://github.com/alexkappa/terraform-provider-auth0
https://github.com/alexreisner/geocoder
https://github.com/alextselegidis/easyappointments
https://github.com/algolia/docsearch-configs
https://github.com/algolia/instantsearch.js
https://github.com/algolia/react-instantsearch
https://github.com/AliasIO/wappalyzer
https://github.com/aliasrobotics/RVD
https://github.com/alibaba/arthas
https://github.com/alibaba/cloud-kernel
https://github.com/alibaba/druid
https://github.com/alibaba/fastjson
https://github.com/alibaba/ice
https://github.com/alibaba/nacos
https://github.com/alibaba/Sentinel
https://github.com/alibaba/spring-cloud-alibaba
https://github.com/allenai/allennlp
https://github.com/allinurl/goaccess
https://github.com/Alluxio/alluxio
https://github.com/alphagov/govuk-frontend
https://github.com/alphagov/whitehall
https://github.com/alpinejs/alpine
https://github.com/alpinelinux/aports
https://github.com/alxshelepenok/gatsby-starter-lumen
https://github.com/amark/gun
https://github.com/amazeeio/lagoon
https://github.com/amethyst/amethyst
https://github.com/ampache/ampache
https://github.com/ampproject
https://github.com/ampproject/amphtml
https://github.com/ampproject/amp-wp
https://github.com/AMReX-Codes/amrex
https://github.com/anacrolix/torrent
https://github.com/AnalogJ/lexicon
https://github.com/androidx/androidx
https://github.com/andymccurdy/redis-py
https://github.com/angr/angr
https://github.com/angular/angular
https://github.com/angular/angular-cli
https://github.com/angular/angularfire
https://github.com/angular/angular.js
https://github.com/angular/components
https://github.com/angular/material
https://github.com/angularsen/UnitsNet
https://github.com/angular-ui/ui-router
https://github.com/angular/universal
https://github.com/angular/vscode-ng-language-service
https://github.com/animate-css/animate.css
https://github.com/ankane/pghero
https://github.com/ankane/searchkick
https://github.com/ankidroid/Anki-Android
https://github.com/ankitects/anki
https://github.com/ansible/ansible
https://github.com/ansible/ansible-runner
https://github.com/ansible/awx
https://github.com/ansible-collections/community.general
https://github.com/ansible/community
https://github.com/ansible-community/molecule
https://github.com/ansible/galaxy
https://github.com/ansible/workshops
https://github.com/ant-design/ant-design
https://github.com/ant-design/ant-design-pro
https://github.com/ant-design-blazor/ant-design-blazor
https://github.com/ant-design/pro-components
https://github.com/AntennaPod/AntennaPod
https://github.com/anthonyjgrove/react-google-login
https://github.com/antlr/antlr4
https://github.com/antlr/grammars-v4
https://github.com/ANTsX/ANTs
https://github.com/antvis/G2
https://github.com/antvis/G6
https://github.com/antvis/X6
https://github.com/Anuken/Mindustry
https://github.com/anuko/timetracker
https://github.com/aonez/Keka
https://github.com/aosp-mirror/kernel_common
https://github.com/aosp-mirror/platform_frameworks_base
https://github.com/aosp-mirror/platform_system_core
https://github.com/apache
https://github.com/apache/accumulo
https://github.com/apache/activemq
https://github.com/apache/activemq-artemis
https://github.com/apache/airflow
https://github.com/apache/ant
https://github.com/apache/apisix
https://github.com/apache/archiva
https://github.com/apache/arrow
https://github.com/apache/avro
https://github.com/apache/beam
https://github.com/apache/bigtop
https://github.com/apache/bookkeeper
https://github.com/apache/calcite
https://github.com/apache/camel
https://github.com/apache/carbondata
https://github.com/apache/cassandra
https://github.com/apache/cloudstack
https://github.com/apache/commons-codec
https://github.com/apache/commons-collections
https://github.com/apache/commons-io
https://github.com/apache/commons-lang
https://github.com/apache/commons-math
https://github.com/apache/cordova-android
https://github.com/apache/cordova-cli
https://github.com/apache/cordova-ios
https://github.com/apache/cordova-plugin-inappbrowser
https://github.com/apache/couchdb
https://github.com/apache/curator
https://github.com/apache/cxf
https://github.com/apache/drill
https://github.com/apache/druid
https://github.com/apache/dubbo
https://github.com/apache/dubbo-go
https://github.com/apache/echarts
https://github.com/apache/fineract
https://github.com/apache/flink
https://github.com/apache/geode
https://github.com/apache/groovy
https://github.com/apache/hadoop
https://github.com/apache/hbase
https://github.com/apache/hive
https://github.com/apache/httpcomponents-client
https://github.com/apache/httpcomponents-core
https://github.com/apache/httpd
https://github.com/apache/iceberg
https://github.com/apache/ignite
https://github.com/apache/incubator-dolphinscheduler
https://github.com/apache/incubator-echarts
https://github.com/apache/incubator-mxnet
https://github.com/apache/incubator-nuttx
https://github.com/apache/incubator-pinot
https://github.com/apache/iotdb
https://github.com/apache/isis
https://github.com/apache/jackrabbit-oak
https://github.com/apache/james-project
https://github.com/apache/jena
https://github.com/apache/jmeter
https://github.com/apache/kafka
https://github.com/apache/karaf
https://github.com/apache/kylin
https://github.com/apache/libcloud
https://github.com/apache/logging-log4j2
https://github.com/apache/lucene-solr
https://github.com/apache/maven
https://github.com/apache/maven-surefire
https://github.com/apache/mesos
https://github.com/apache/netbeans
https://github.com/apache/nifi
https://github.com/apache/ofbiz-framework
https://github.com/apache/orc
https://github.com/apache/ozone
https://github.com/apache/parquet-mr
https://github.com/apache/phoenix
https://github.com/apache/poi
https://github.com/apache/pulsar
https://github.com/apache/rocketmq
https://github.com/apache/royale-asjs
https://github.com/apache/shardingsphere
https://github.com/apache/shiro
https://github.com/apache/skywalking
https://github.com/apache/spark
https://github.com/apache/storm
https://github.com/apache/struts
https://github.com/apache/subversion
https://github.com/apache/superset
https://github.com/apache/systemds
https://github.com/apache/thrift
https://github.com/apache/tika
https://github.com/apache/tinkerpop
https://github.com/apache/tomcat
https://github.com/apache/tomee
https://github.com/apache/trafficserver
https://github.com/apache/tvm
https://github.com/apache/wicket
https://github.com/apache/zeppelin
https://github.com/apache/zookeeper
https://github.com/apereo/cas
https://github.com/apexcharts/apexcharts.js
https://github.com/apiaryio/dredd
https://github.com/api-platform/core
https://github.com/apitrace/apitrace
https://github.com/ApolloAuto/apollo
https://github.com/apollographql/apollo
https://github.com/apollographql/apollo-android
https://github.com/apollographql/apollo-client
https://github.com/apollographql/apollo-ios
https://github.com/apollographql/apollo-server
https://github.com/apollographql/apollo-tooling
https://github.com/apostrophecms/apostrophe
https://github.com/appbaseio/reactivesearch
https://github.com/appcelerator/alloy
https://github.com/appcelerator/titanium_mobile
https://github.com/appium/appium
https://github.com/apple/foundationdb
https://github.com/apple/swift
https://github.com/apple/swift-corelibs-foundation
https://github.com/apple/swift-nio
https://github.com/apple/swift-package-manager
https://github.com/appneta/tcpreplay
https://github.com/appsmithorg/appsmith
https://github.com/appwrite/appwrite
https://github.com/arangodb/arangodb
https://github.com/AravisProject/aravis
https://github.com/architect/architect
https://github.com/archlinuxarm/PKGBUILDs
https://github.com/archlinuxcn/repo
https://github.com/ardatan/graphql-tools
https://github.com/Ardour/ardour
https://github.com/arduino/Arduino
https://github.com/arduino/arduino-cli
https://github.com/ArduPilot/ardupilot
https://github.com/ArduPilot/ardupilot_wiki
https://github.com/arendst/Tasmota
https://github.com/argoproj/argo
https://github.com/argoproj/argo-cd
https://github.com/ariya/phantomjs
https://github.com/ArkEcosystem/core
https://github.com/armbian/build
https://github.com/ARMmbed/mbed-os
https://github.com/ARMmbed/mbedtls
https://github.com/ARM-software/arm-trusted-firmware
https://github.com/ARM-software/CMSIS_5
https://github.com/arrow-py/arrow
https://github.com/artf/grapesjs
https://github.com/artsy/eigen
https://github.com/artsy/force
https://github.com/artsy/metaphysics
https://github.com/artsy/reaction
https://github.com/arvidn/libtorrent
https://github.com/asciidoctor/asciidoctor
https://github.com/asciidoctor/asciidoctor-intellij-plugin
https://github.com/asciidoctor/asciidoctorj
https://github.com/asciidoctor/asciidoctor-pdf
https://github.com/asdf-vm/asdf
https://github.com/aseprite/aseprite
https://github.com/asim/go-micro
https://github.com/aspnetboilerplate/aspnetboilerplate
https://github.com/AssemblyScript/assemblyscript
https://github.com/assertj/assertj-core
https://github.com/AssetSync/asset_sync
https://github.com/assimp/assimp
https://github.com/asterisk/asterisk
https://github.com/astropy/astropy
https://github.com/astropy/astroquery
https://github.com/AsyncHttpClient/async-http-client
https://github.com/atlassian-api/atlassian-python-api
https://github.com/Atmosphere-NX/Atmosphere
https://github.com/atom/apm
https://github.com/atom/atom
https://github.com/atom/github
https://github.com/atom-minimap/minimap
https://github.com/audacity/audacity
https://github.com/AudioKit/AudioKit
https://github.com/AugurProject/augur
https://github.com/aurelia/aurelia
https://github.com/aurelia/cli
https://github.com/austintoddj/canvas
https://github.com/auth0/auth0.js
https://github.com/auth0/docs
https://github.com/auth0/lock
https://github.com/authelia/authelia
https://github.com/Autodesk/maya-usd
https://github.com/autofac/Autofac
https://github.com/AutoFixture/AutoFixture
https://github.com/AutoMapper/AutoMapper
https://github.com/Automattic/jetpack
https://github.com/Automattic/mongoose
https://github.com/Automattic/node-canvas
https://github.com/Automattic/sensei
https://github.com/Automattic/simplenote-android
https://github.com/Automattic/wp-calypso
https://github.com/automl/auto-sklearn
https://github.com/autotools-mirror
https://github.com/autozimu/LanguageClient-neovim
https://github.com/avajs/ava
https://github.com/AvaloniaUI/Avalonia
https://github.com/avelino/awesome-go
https://github.com/avocado-framework/avocado
https://github.com/awesome-selfhosted/awesome-selfhosted
https://github.com/awesomeWM/awesome
https://github.com/aws/amazon-freertos
https://github.com/aws/amazon-vpc-cni-k8s
https://github.com/aws-amplify/amplify-cli
https://github.com/aws-amplify/amplify-js
https://github.com/aws-amplify/aws-sdk-ios
https://github.com/aws-amplify/docs
https://github.com/aws/aws-cdk
https://github.com/aws/aws-cli
https://github.com/aws/aws-sam-cli
https://github.com/aws/aws-sdk-cpp
https://github.com/aws/aws-sdk-go
https://github.com/aws/aws-sdk-go-v2
https://github.com/aws/aws-sdk-java
https://github.com/aws/aws-sdk-java-v2
https://github.com/aws/aws-sdk-js
https://github.com/aws/aws-sdk-js-v3
https://github.com/aws/aws-sdk-net
https://github.com/aws/aws-sdk-php
https://github.com/aws/aws-sdk-ruby
https://github.com/aws/chalice
https://github.com/aws-cloudformation/cfn-python-lint
https://github.com/awsdocs/aws-doc-sdk-examples
https://github.com/aws/jsii
https://github.com/awslabs/cdk8s
https://github.com/awslabs/s2n
https://github.com/aws/sagemaker-python-sdk
https://github.com/aws/serverless-application-model
https://github.com/axboe/fio
https://github.com/axboe/liburing
https://github.com/axiomatic-systems/Bento4
https://github.com/axios/axios
https://github.com/AxonFramework/AxonFramework
https://github.com/azerothcore/azerothcore-wotlk
https://github.com/azkaban/azkaban
https://github.com/azl397985856/leetcode
https://github.com/AzuraCast/AzuraCast
https://github.com/AzureAD/microsoft-authentication-library-for-dotnet
https://github.com/AzureAD/microsoft-authentication-library-for-js
https://github.com/Azure/AKS
https://github.com/Azure/aks-engine
https://github.com/Azure/autorest
https://github.com/Azure/azure-cli
https://github.com/Azure/azure-functions-host
https://github.com/Azure/azure-iot-sdk-c
https://github.com/Azure/azure-iot-sdk-csharp
https://github.com/Azure/azure-powershell
https://github.com/Azure/azure-quickstart-templates
https://github.com/Azure/azure-rest-api-specs
https://github.com/Azure/azure-sdk-for-go
https://github.com/Azure/azure-sdk-for-java
https://github.com/Azure/azure-sdk-for-js
https://github.com/Azure/azure-sdk-for-net
https://github.com/Azure/azure-sdk-for-python
https://github.com/Azure/azure-sdk-for-ruby
https://github.com/Azure/azure-service-operator
https://github.com/Azure/iotedge
https://github.com/azure-rtos/usbx
https://github.com/Azure/sonic-buildimage
https://github.com/Azure/WALinuxAgent
https://github.com/babel/babel
https://github.com/babel/babel-loader
https://github.com/babel/website
https://github.com/BabylonJS/Babylon.js
https://github.com/backdrop/backdrop
https://github.com/backstage/backstage
https://github.com/backup/backup
https://github.com/baconjs/bacon.js
https://github.com/badges/shields
https://github.com/bagisto/bagisto
https://github.com/balderdashy/sails
https://github.com/baldurk/renderdoc
https://github.com/balena-os/balena-engine
https://github.com/balena-os/meta-balena
https://github.com/ballerina-platform/ballerina-lang
https://github.com/baomidou/mybatis-plus
https://github.com/baresip/baresip
https://github.com/barryvdh/laravel-debugbar
https://github.com/barryvdh/laravel-ide-helper
https://github.com/baserproject/basercms
https://github.com/BaseXdb/basex
https://github.com/Bash-it/bash-it
https://github.com/basho/riak
https://github.com/batfish/batfish
https://github.com/bats-core/bats-core
https://github.com/Baystation12/Baystation12
https://github.com/bazelbuild/bazel
https://github.com/bazelbuild/bazel-gazelle
https://github.com/bazelbuild/buildtools
https://github.com/bazelbuild/rules_docker
https://github.com/bazelbuild/rules_go
https://github.com/bazelbuild/rules_nodejs
https://github.com/bbatsov/prelude
https://github.com/bbatsov/projectile
https://github.com/bbc/psammead
https://github.com/bbc/simorgh
https://github.com/bbidulock/icewm
https://github.com/bblimke/webmock
https://github.com/bbuchfink/diamond
https://github.com/bcbio/bcbio-nextgen
https://github.com/bcgit/bc-java
https://github.com/bchavez/Bogus
https://github.com/bcit-ci/CodeIgniter
https://github.com/beagleboard/linux
https://github.com/beakerbrowser/beaker
https://github.com/BeamMW/beam
https://github.com/beancount/beancount
https://github.com/beautify-web/js-beautify
https://github.com/beefproject/beef
https://github.com/beego/bee
https://github.com/beego/beego
https://github.com/beekeeper-studio/beekeeper-studio
https://github.com/Beep6581/RawTherapee
https://github.com/beetbox/beets
https://github.com/beeware/toga
https://github.com/Behat/Behat
https://github.com/belaban/JGroups
https://github.com/benedmunds/CodeIgniter-Ion-Auth
https://github.com/benjamn/recast
https://github.com/ben-manes/caffeine
https://github.com/ben-manes/gradle-versions-plugin
https://github.com/benmosher/eslint-plugin-import
https://github.com/benoitc/gunicorn
https://github.com/benoitc/hackney
https://github.com/bestpractical/rt
https://github.com/betaflight/betaflight-configurator
https://github.com/BetterErrors/better_errors
https://github.com/BetterThanTomorrow/calva
https://github.com/bevyengine/bevy
https://github.com/bigbluebutton/bigbluebutton
https://github.com/bigbluebutton/greenlight
https://github.com/BigTiger2020/word-press
https://github.com/bigtreecms/BigTree-CMS
https://github.com/bigtreetech/BIGTREETECH-TouchScreenFirmware
https://github.com/billz/raspap
https://github.com/billz/raspap-webgui
https://github.com/Binaryify/NeteaseCloudMusicApi
https://github.com/bioconda/bioconda-recipes
https://github.com/biojava/biojava
https://github.com/biolab/orange3
https://github.com/biopython/biopython
https://github.com/bisq-network/bisq
https://github.com/Bitcoin-ABC/bitcoin-abc
https://github.com/bitcoin/bips
https://github.com/bitcoin/bitcoin
https://github.com/bitcoin-core/secp256k1
https://github.com/bitcoin-dot-org/Bitcoin.org
https://github.com/bitcoinj/bitcoinj
https://github.com/bitcraze/crazyflie-firmware
https://github.com/bitfocus/companion
https://github.com/bitnami/charts
https://github.com/bitpay/bitcore
https://github.com/bitpay/wallet
https://github.com/bkaradzic/bgfx
https://github.com/bkimminich/juice-shop
https://github.com/BlackArch/blackarch
https://github.com/blackjack4494/yt-dlc
https://github.com/Blazemeter/taurus
https://github.com/BlazingDB/blazingsql
https://github.com/bleachbit/bleachbit
https://github.com/blender/blender
https://github.com/blitz-js/blitz
https://github.com/blockchain/blockchain-wallet-v4-frontend
https://github.com/BlockChainsSecurity/EtherTokens
https://github.com/blocks/blocks
https://github.com/blockstack/stacks-blockchain
https://github.com/bloomberg/bde
https://github.com/blueimp/jQuery-File-Upload
https://github.com/bluejekyll/trust-dns
https://github.com/BlueWallet/BlueWallet
https://github.com/bminor/glibc
https://github.com/bmuschko/gradle-docker-plugin
https://github.com/bndtools/bnd
https://github.com/bobthecow/psysh
https://github.com/BOINC/boinc
https://github.com/bokeh/bokeh
https://github.com/bolt/bolt
https://github.com/boogie-org/boogie
https://github.com/BookStackApp/BookStack
https://github.com/boostorg/boost
https://github.com/boostorg/geometry
https://github.com/bootstrap-vue/bootstrap-vue
https://github.com/Borewit/music-metadata
https://github.com/borgbackup/borg
https://github.com/borglab/gtsam
https://github.com/boto/boto3
https://github.com/boto/botocore
https://github.com/botpress/botpress
https://github.com/bottlepy/bottle
https://github.com/bower/bower
https://github.com/bpampuch/pdfmake
https://github.com/bpmn-io/bpmn-js
https://github.com/braintree/braintree_ios
https://github.com/brave/brave-browser
https://github.com/brave/brave-ios
https://github.com/breadwallet/breadwallet-android
https://github.com/brefphp/bref
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit
https://github.com/brettwooldridge/HikariCP
https://github.com/brewsci/homebrew-bio
https://github.com/brianc/node-postgres
https://github.com/brianfrankcooper/YCSB
https://github.com/briannesbitt/Carbon
https://github.com/briansmith/ring
https://github.com/bridgecrewio/checkov
https://github.com/broadinstitute/cromwell
https://github.com/broadinstitute/picard
https://github.com/BroadleafCommerce/BroadleafCommerce
https://github.com/browscap/browscap
https://github.com/browserify/resolve
https://github.com/browserslist/browserslist
https://github.com/BrowserSync/browser-sync
https://github.com/brython-dev/brython
https://github.com/BSData/wh40k
https://github.com/btcpayserver/btcpayserver
https://github.com/btcsuite/btcd
https://github.com/buefy/buefy
https://github.com/buildbot/buildbot
https://github.com/buildkite/agent
https://github.com/buildpacks/pack
https://github.com/buildroot/buildroot
https://github.com/bulletphysics/bullet3
https://github.com/bumptech/glide
https://github.com/BurntSushi/ripgrep
https://github.com/bvaughn/react-virtualized
https://github.com/BVLC/caffe
https://github.com/bytecodealliance/wasmtime
https://github.com/bytedeco/javacpp-presets
https://github.com/C2FO/fast-csv
https://github.com/CachetHQ/Cachet
https://github.com/Cacti/cacti
https://github.com/caddyserver/caddy
https://github.com/cake-build/cake
https://github.com/CakeDC/users
https://github.com/cakephp/app
https://github.com/cakephp/cakephp
https://github.com/cakephp/debug_kit
https://github.com/cakephp/docs
https://github.com/cakephp/phinx
https://github.com/calamares/calamares
https://github.com/callstack/react-native-paper
https://github.com/CamDavidsonPilon/lifelines
https://github.com/camunda/camunda-bpm-platform
https://github.com/camunda/camunda-modeler
https://github.com/CanalTP/navitia
https://github.com/CanCanCommunity/cancancan
https://github.com/canjs/canjs
https://github.com/canonical/cloud-init
https://github.com/canonical-web-and-design/vanilla-framework
https://github.com/Canop/broot
https://github.com/caolan/async
https://github.com/capistrano/capistrano
https://github.com/capistrano/sshkit
https://github.com/capnproto/capnproto
https://github.com/cappuccino/cappuccino
https://github.com/carbon-design-system/carbon
https://github.com/carbon-design-system/carbon-charts
https://github.com/c-ares/c-ares
https://github.com/carla-simulator/carla
https://github.com/carp-lang/Carp
https://github.com/carrierwaveuploader/carrierwave
https://github.com/Carthage/Carthage
https://github.com/CartoDB/cartodb
https://github.com/casbin/casbin
https://github.com/CasparCG/server
https://github.com/CastagnaIT/plugin.video.netflix
https://github.com/castwide/solargraph
https://github.com/catboost/catboost
https://github.com/catchorg/Catch2
https://github.com/Catel/Catel
https://github.com/Catrobat/Catroid
https://github.com/cbeust/testng
https://github.com/cBioPortal/cbioportal
https://github.com/cbsd/cbsd
https://github.com/cc65/cc65
https://github.com/ccache/ccache
https://github.com/ccrisan/motioneye
https://github.com/ccrisan/motioneyeos
https://github.com/ccxt/ccxt
https://github.com/cdapio/cdap
https://github.com/cdimascio/express-openapi-validator
https://github.com/cdk/cdk
https://github.com/cdnjs/cdnjs
https://github.com/cdr/code-server
https://github.com/cefsharp/CefSharp
https://github.com/celery/celery
https://github.com/celery/kombu
https://github.com/celery/py-amqp
https://github.com/CellProfiler/CellProfiler
https://github.com/celluloid/celluloid
https://github.com/CenterForOpenScience/osf.io
https://github.com/centreon/centreon
https://github.com/ceph/ceph
https://github.com/ceph/ceph-ansible
https://github.com/ceph/ceph-container
https://github.com/ceph/ceph-csi
https://github.com/cerebris/jsonapi-resources
https://github.com/ceres-solver/ceres-solver
https://github.com/certbot/certbot
https://github.com/certtools/intelmq
https://github.com/cesanta/mjs
https://github.com/cesanta/mongoose
https://github.com/CesiumGS/cesium
https://github.com/CESNET/libyang
https://github.com/cfengine/core
https://github.com/CFPAOrg/Minecraft-Mod-Language-Package
https://github.com/CGAL/cgal
https://github.com/cgeo/cgeo
https://github.com/cgrates/cgrates
https://github.com/chainer/chainer
https://github.com/ChainSafe/web3.js
https://github.com/chakra-ui/chakra-ui
https://github.com/chalk/chalk
https://github.com/chamilo/chamilo-lms
https://github.com/chaoss/augur
https://github.com/chapel-lang/chapel
https://github.com/Charcoal-SE/SmokeDetector
https://github.com/chartjs/Chart.js
https://github.com/chatty/chatty
https://github.com/checkpoint-restore/criu
https://github.com/checkstyle/checkstyle
https://github.com/cheeriojs/cheerio
https://github.com/chef/bento
https://github.com/chef/chef
https://github.com/chef/chef-server
https://github.com/chef/ohai
https://github.com/chef/omnibus
https://github.com/cherrypy/cherrypy
https://github.com/Chia-Network/chia-blockchain
https://github.com/ChilliCream/hotchocolate
https://github.com/chkr1011/MQTTnet
https://github.com/Chocobozzz/PeerTube
https://github.com/chocolatey-community/chocolatey-coreteampackages
https://github.com/chrislusf/seaweedfs
https://github.com/chromium/chromium
https://github.com/chronotope/chrono
https://github.com/chshcms/cscms
https://github.com/ChurchCRM/CRM
https://github.com/cibernox/ember-power-select
https://github.com/cilium/cilium
https://github.com/cinder/Cinder
https://github.com/circe/circe
https://github.com/circleci/circleci-docs
https://github.com/cisco-system-traffic-generator/trex-core
https://github.com/CISOfy/lynis
https://github.com/citation-style-language/styles
https://github.com/citizenfx/fivem
https://github.com/citra-emu/citra
https://github.com/citusdata/citus
https://github.com/civetweb/civetweb
https://github.com/civicrm/civicrm-core
https://github.com/ckan/ckan
https://github.com/ckeditor/ckeditor4
https://github.com/ckeditor/ckeditor5
https://github.com/clap-rs/clap
https://github.com/clash-lang/clash-compiler
https://github.com/clasp-developers/clasp
https://github.com/clementine-player/Clementine
https://github.com/CleverRaven/Cataclysm-DDA
https://github.com/ClickHouse/ClickHouse
https://github.com/cli/cli
https://github.com/CliMA/ClimateMachine.jl
https://github.com/CliMA/Oceananigans.jl
https://github.com/clojure/clojure
https://github.com/clojure-emacs/cider
https://github.com/clojure-lsp/clojure-lsp
https://github.com/cloudera/hue
https://github.com/cloudflare/cloudflared
https://github.com/cloudflare/cloudflare-go
https://github.com/cloudflare/wrangler
https://github.com/cloudfoundry/bosh
https://github.com/cloudfoundry/cli
https://github.com/cloudfoundry/java-buildpack
https://github.com/cloudfoundry/uaa
https://github.com/cloudnativelabs/kube-router
https://github.com/cloudtools/troposphere
https://github.com/cloudwu/skynet
https://github.com/clulab/processors
https://github.com/ClusterLabs/pacemaker
https://github.com/ClusterLabs/resource-agents
https://github.com/clux/kube-rs
https://github.com/cmangos/mangos-classic
https://github.com/cmangos/mangos-tbc
https://github.com/cmangos/mangos-wotlk
https://github.com/cmderdev/cmder
https://github.com/cms-sw/cmssw
https://github.com/CMU-Perceptual-Computing-Lab/openpose
https://github.com/cmus/cmus
https://github.com/cncf/k8s-conformance
https://github.com/cncf/landscape
https://github.com/cnr-isti-vclab/meshlab
https://github.com/cobbler/cobbler
https://github.com/coccinelle/coccinelle
https://github.com/Cockatrice/Cockatrice
https://github.com/cockpit-project/cockpit
https://github.com/cockroachdb/cockroach
https://github.com/CocoaLumberjack/CocoaLumberjack
https://github.com/CocoaPods/CocoaPods
https://github.com/CocoaPods/Specs
https://github.com/CocoaPods/Xcodeproj
https://github.com/cocos2d/cocos2d-x
https://github.com/cocos-creator/cocos2d-x-lite
https://github.com/cocos-creator/engine
https://github.com/cocotb/cocotb
https://github.com/codecentric/spring-boot-admin
https://github.com/Codeception/Codeception
https://github.com/codeceptjs/CodeceptJS
https://github.com/codecombat/codecombat
https://github.com/codecov/codecov-node
https://github.com/code-dot-org/code-dot-org
https://github.com/codeigniter4/CodeIgniter4
https://github.com/codemirror/CodeMirror
https://github.com/codenameone/CodenameOne
https://github.com/coderaiser/cloudcmd
https://github.com/code-ready/crc
https://github.com/codesandbox/codesandbox-client
https://github.com/codespell-project/codespell
https://github.com/codetriage/CodeTriage
https://github.com/CodingTrain/website
https://github.com/coelckers/gzdoom
https://github.com/CoinAlpha/hummingbot
https://github.com/coleifer/peewee
https://github.com/collectd/collectd
https://github.com/collectiveidea/awesome_nested_set
https://github.com/ColorlibHQ/AdminLTE
https://github.com/Combodo/iTop
https://github.com/commaai/openpilot
https://github.com/commanded/commanded
https://github.com/commercialhaskell/stack
https://github.com/commercialhaskell/stackage
https://github.com/commons-app/apps-android-commons
https://github.com/company-mode/company-mode
https://github.com/compiler-explorer/compiler-explorer
https://github.com/ComplianceAsCode/content
https://github.com/composer/composer
https://github.com/composer/installers
https://github.com/composite-primary-keys/composite_primary_keys
https://github.com/conan-io/conan
https://github.com/conan-io/conan-center-index
https://github.com/concourse/concourse
https://github.com/concrete5/concrete5
https://github.com/conda/conda
https://github.com/conda/conda-build
https://github.com/conda-forge/staged-recipes
https://github.com/confluentinc/ksql
https://github.com/confluentinc/schema-registry
https://github.com/ConsenSys/mythril
https://github.com/consul/consul
https://github.com/containerd/containerd
https://github.com/containerd/cri
https://github.com/containernetworking/cni
https://github.com/containernetworking/plugins
https://github.com/containers/buildah
https://github.com/containers/image
https://github.com/containers/podman
https://github.com/containers/skopeo
https://github.com/containers/storage
https://github.com/containrrr/watchtower
https://github.com/contentful/contentful.js
https://github.com/contiki-ng/contiki-ng
https://github.com/controlsfx/controlsfx
https://github.com/conventional-changelog/commitlint
https://github.com/conventional-changelog/conventional-changelog
https://github.com/conventional-changelog/standard-version
https://github.com/conversejs/converse.js
https://github.com/convox/rack
https://github.com/cookpete/react-player
https://github.com/CoolProp/CoolProp
https://github.com/coolsnowwolf/lede
https://github.com/coopcycle/coopcycle-web
https://github.com/coq/coq
https://github.com/coralproject/talk
https://github.com/corda/corda
https://github.com/cordova-rtc/cordova-plugin-iosrtc
https://github.com/coreboot/coreboot
https://github.com/coredns/coredns
https://github.com/CoreELEC/CoreELEC
https://github.com/coreos/flannel
https://github.com/coreos/rpm-ostree
https://github.com/coreruleset/coreruleset
https://github.com/coreutils/coreutils
https://github.com/corona-warn-app/cwa-app-android
https://github.com/corona-warn-app/cwa-app-ios
https://github.com/cortexproject/cortex
https://github.com/cosmos/cosmos-sdk
https://github.com/CosmosOS/Cosmos
https://github.com/coteditor/CotEditor
https://github.com/couchbase/couchbase-lite-ios
https://github.com/couchbase/sync_gateway
https://github.com/coursier/coursier
https://github.com/coverlet-coverage/coverlet
https://github.com/COVID19Tracking/website
https://github.com/cp2k/cp2k
https://github.com/cplusplus/draft
https://github.com/cpputest/cpputest
https://github.com/craftcms/cms
https://github.com/crate/crate
https://github.com/crawl/crawl
https://github.com/cri-o/cri-o
https://github.com/crossbario/autobahn-python
https://github.com/crossbario/crossbar
https://github.com/crossbeam-rs/crossbeam
https://github.com/crossplane/crossplane
https://github.com/crosstool-ng/crosstool-ng
https://github.com/CrunchyData/postgres-operator
https://github.com/cryptomator/cryptomator
https://github.com/crystal-lang/crystal
https://github.com/csete/gqrx
https://github.com/csound/csound
https://github.com/cssinjs/jss
https://github.com/cssnano/cssnano
https://github.com/ctran/annotate_models
https://github.com/ctripcorp/apollo
https://github.com/cube-js/cube.js
https://github.com/cuberite/cuberite
https://github.com/cucumber/aruba
https://github.com/cucumber/cucumber
https://github.com/cucumber/cucumber-js
https://github.com/cucumber/cucumber-jvm
https://github.com/cucumber/cucumber-ruby
https://github.com/cuelang/cue
https://github.com/cupy/cupy
https://github.com/cure53/DOMPurify
https://github.com/curl/curl
https://github.com/cuthbertLab/music21
https://github.com/CVC4/CVC4
https://github.com/Cvjark/Poc
https://github.com/cvxgrp/cvxpy
https://github.com/cwida/duckdb
https://github.com/Cyan4973/xxHash
https://github.com/cyberark/conjur
https://github.com/cyberbotics/webots
https://github.com/cypress-io/cypress
https://github.com/cypress-io/cypress-documentation
https://github.com/cyrusimap/cyrus-imapd
https://github.com/cython/cython
https://github.com/cytoscape/cytoscape.js
https://github.com/cyu/rack-cors
https://github.com/D0neMkj/POC_BSOD
https://github.com/d1tto/IoT-vuln
https://github.com/d2l-ai/d2l-en
https://github.com/d3/d3
https://github.com/d4wner/Vulnerabilities-Report
https://github.com/daattali/beautiful-jekyll
https://github.com/dadhi/DryIoc
https://github.com/dagster-io/dagster
https://github.com/damienbod/angular-auth-oidc-client
https://github.com/danger/danger
https://github.com/danger/danger-js
https://github.com/danielaparker/jsoncons
https://github.com/danieleteti/delphimvcframework
https://github.com/danielhrisca/asammdf
https://github.com/danielpalme/ReportGenerator
https://github.com/dankamongmen/notcurses
https://github.com/danmar/cppcheck
https://github.com/daos-stack/daos
https://github.com/dapr/dapr
https://github.com/darkreader/darkreader
https://github.com/darktable-org/darktable
https://github.com/darlinghq/darling
https://github.com/Darry-lang1/vuln
https://github.com/Dart-Code/Dart-Code
https://github.com/dart-lang/build
https://github.com/dart-lang/dartdoc
https://github.com/dart-lang/linter
https://github.com/dart-lang/pub
https://github.com/dart-lang/sdk
https://github.com/dart-lang/site-www
https://github.com/dart-lang/test
https://github.com/Dash-Industry-Forum/dash.js
https://github.com/dask/dask
https://github.com/dask/distributed
https://github.com/DataBiosphere/toil
https://github.com/databricks/koalas
https://github.com/DataDog/datadog-agent
https://github.com/DataDog/integrations-core
https://github.com/DataTables/Plugins
https://github.com/datawire/ambassador
https://github.com/date-fns/date-fns
https://github.com/datorama/akita
https://github.com/DaveGamble/cJSON
https://github.com/davidhalter/jedi
https://github.com/davidhalter/jedi-vim
https://github.com/davidjbradshaw/iframe-resizer
https://github.com/davidkpiano/xstate
https://github.com/davisking/dlib
https://github.com/day8/re-frame
https://github.com/daylightstudio/FUEL-CMS
https://github.com/dbcli/pgcli
https://github.com/dbeaver/dbeaver
https://github.com/dbry/WavPack
https://github.com/dcloudio/uni-app
https://github.com/dcm4che/dcm4chee-arc-light
https://github.com/dcos/dcos
https://github.com/dealii/dealii
https://github.com/debezium/debezium
https://github.com/Debian/apt
https://github.com/debops/debops
https://github.com/decidim/decidim
https://github.com/decred/dcrd
https://github.com/dedis/cothority
https://github.com/deepchem/deepchem
https://github.com/deepstreamIO/deepstream.io
https://github.com/DefectDojo/django-DefectDojo
https://github.com/DefinitelyTyped/DefinitelyTyped
https://github.com/defold/defold
https://github.com/deivid-rodriguez/byebug
https://github.com/deltachat/deltachat-android