forked from fossabot/trivy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiotList.txt
More file actions
1872 lines (1872 loc) · 72.8 KB
/
iotList.txt
File metadata and controls
1872 lines (1872 loc) · 72.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
https://github.com/grommunio/gromox
https://github.com/pkuvcl/davs2
https://github.com/systemd/systemd
https://github.com/tbeu/matio
https://github.com/Matthias-Wandel/jhead
https://github.com/wez/atomicparsley
https://github.com/slicer69/doas
https://github.com/cesanta/mjs
https://github.com/ostreedev/ostree
https://github.com/u-boot/u-boot
https://github.com/ClusterLabs/libqb
https://github.com/kspalaiologos/bzip3
https://github.com/facebook/wangle
https://github.com/grke/burp
https://github.com/libyal/liblnk
https://github.com/tojocky/node-printer
https://github.com/kn007/silk-v3-decoder
https://github.com/latchset/tang
https://github.com/machyve/xhyve
https://github.com/ibus/ibus
https://github.com/vincentbernat/lldpd
https://github.com/kevinboone/epub2txt2
https://github.com/richardcochran/linuxptp
https://github.com/libproxy/libproxy
https://github.com/fribidi/fribidi
https://github.com/coreboot/coreboot
https://github.com/openthread/wpantund
https://github.com/nmap/npcap
https://github.com/quassel/quassel
https://github.com/mz-automation/libiec61850
https://github.com/Matroska-Org/libmatroska
https://github.com/mysecureshell/mysecureshell
https://github.com/irontec/sngrep
https://github.com/wireshark/wireshark
https://github.com/ocornut/imgui_test_engine
https://github.com/nlohmann/json
https://github.com/carbon-language/carbon-lang
https://github.com/microsoft/calculator
https://github.com/facebook/folly
https://github.com/cmderdev/cmder
https://github.com/ossrs/srs
https://github.com/microsoft/winget-cli
https://github.com/gabime/spdlog
https://github.com/google/libphonenumber
https://github.com/pybind/pybind11_json
https://github.com/chenshuo/muduo-tutorial
https://github.com/Tencent/rapidjson
https://github.com/abseil/abseil-cpp
https://github.com/ceph/ceph
https://github.com/ZLMediaKit/ZLMediaKit
https://github.com/yhirose/cpp-httplib
https://github.com/DayBreak-u/chineseocr_lite
https://github.com/capnproto/capnproto
https://github.com/Alinshans/MyTinySTL
https://github.com/openframeworks/openFrameworks
https://github.com/microsoft/STL
https://github.com/gzc/CLRS
https://github.com/zeromq/libzmq
https://github.com/opencv/opencv_contrib
https://github.com/TrinityCore/TrinityCore
https://github.com/cameron314/concurrentqueue
https://github.com/Maximus5/ConEmu
https://github.com/Mooophy/Cpp-Primer
https://github.com/AGWA/git-crypt
https://github.com/microsoft/cpprestsdk
https://github.com/open-source-parsers/jsoncpp
https://github.com/hluk/CopyQ
https://github.com/oatpp/oatpp
https://github.com/progschj/ThreadPool
https://github.com/idea4good/GuiLiteSamples
https://github.com/cartographer-project/cartographer_ros
https://github.com/project-chip/connectedhomeip
https://github.com/brndnmtthws/conky
https://github.com/google/glog
https://github.com/360Controller/360Controller
https://github.com/zaphoyd/websocketpp
https://github.com/bblanchon/ArduinoJson
https://github.com/Stellarium/stellarium
https://github.com/colmap/colmap
https://github.com/cemu-project/Cemu
https://github.com/Project-OSRM/osrm-backend
https://github.com/juce-framework/JUCE
https://github.com/ArthurSonzogni/FTXUI
https://github.com/doctest/doctest
https://github.com/swig/swig
https://github.com/cinder/Cinder-OpenCV
https://github.com/asmuth/clip
https://github.com/xtaci/algorithms
https://github.com/jrouwe/JoltPhysics
https://github.com/hsutter/cppfront
https://github.com/arvidn/libtorrent
https://github.com/emcrisostomo/fswatch
https://github.com/leethomason/tinyxml2
https://github.com/gibsjose/cpp-cheat-sheet
https://github.com/amhndu/SimpleNES
https://github.com/jbeder/yaml-cpp
https://github.com/lballabio/QuantLib
https://github.com/chriskohlhoff/asio
https://github.com/nghttp2/nghttp2
https://github.com/XRPLF/rippled
https://github.com/weidai11/cryptopp
https://github.com/CGAL/cgal-swig-bindings
https://github.com/arrayfire/arrayfire-js
https://github.com/sass/libsass
https://github.com/libigl/libigl
https://github.com/Neargye/magic_enum
https://github.com/supertuxkart/stk-code
https://github.com/lava/matplotlib-cpp
https://github.com/boostorg/beast
https://github.com/ethereum/aleth
https://github.com/ericniebler/range-v3
https://github.com/USCiLab/cereal
https://github.com/clangen/musikcube
https://github.com/jarro2783/cxxopts
https://github.com/JakubVojvoda/design-patterns-cpp
https://github.com/ThePhD/sol2
https://github.com/jrowberg/i2cdevlib
https://github.com/baidu/braft
https://github.com/zeux/pugixml
https://github.com/include-what-you-use/include-what-you-use
https://github.com/MaskRay/ccls
https://github.com/google/oboe
https://github.com/bombela/backward-cpp
https://github.com/ceres-solver/ceres-solver
https://github.com/sylar-yin/sylar
https://github.com/Qihoo360/evpp
https://github.com/harfbuzz/harfbuzz
https://github.com/google/fully-homomorphic-encryption
https://github.com/google/orbit
https://github.com/google/zopfli
https://github.com/cameron314/readerwriterqueue
https://github.com/google/robotstxt
https://github.com/Tencent/phxpaxos
https://github.com/root-project/cling
https://github.com/pezy/CppPrimer
https://github.com/NVlabs/tiny-cuda-nn
https://github.com/giuspen/cherrytree
https://github.com/lewissbaker/cppcoro
https://github.com/xtensor-stack/xtensor-blas
https://github.com/rttrorg/rttr
https://github.com/google/cdc-file-transfer
https://github.com/chromiumembedded/cef
https://github.com/sharkdp/dbg-macro
https://github.com/mbasso/asm-dom
https://github.com/gflags/gflags
https://github.com/chrisant996/clink
https://github.com/p-ranav/indicators
https://github.com/ggerganov/imtui
https://github.com/MasteringOpenCV/code
https://github.com/PetoiCamp/OpenCat
https://github.com/andreasfertig/cppinsights
https://github.com/BehaviorTree/BehaviorTree.CPP
https://github.com/CrowCpp/Crow
https://github.com/protobuf-c/protobuf-c
https://github.com/seladb/PcapPlusPlus
https://github.com/dropbox/json11
https://github.com/ShahjalalShohag/code-library
https://github.com/jolibrain/deepdetect
https://github.com/BernardoGiordano/Checkpoint
https://github.com/khizmax/libcds
https://github.com/arximboldi/immer
https://github.com/grame-cncm/faust
https://github.com/PlatformLab/NanoLog
https://github.com/google/cpu_features
https://github.com/STEllAR-GROUP/hpx
https://github.com/jacobdufault/cquery
https://github.com/li-plus/chatglm.cpp
https://github.com/crosswalk-project/crosswalk
https://github.com/shouxieai/tensorRT_Pro
https://github.com/bqi343/cp-notebook
https://github.com/CppCon/CppCon2014
https://github.com/vczh-libraries/GacUI
https://github.com/p-ranav/argparse
https://github.com/REhints/HexRaysCodeXplorer
https://github.com/simbody/simbody
https://github.com/ndeadly/MissionControl
https://github.com/socketio/socket.io-client-cpp
https://github.com/opencurve/curve
https://github.com/crawl/crawl
https://github.com/alecthomas/entityx
https://github.com/andrewssobral/bgslibrary
https://github.com/ccache/ccache
https://github.com/seanbaxter/circle
https://github.com/Cxbx-Reloaded/Cxbx-Reloaded
https://github.com/SergiusTheBest/plog
https://github.com/dfeneyrou/palanteer
https://github.com/yse/easy_profiler
https://github.com/dpayne/cli-visualizer
https://github.com/ben-strasser/fast-cpp-csv-parser
https://github.com/nodejs/node-addon-api
https://github.com/rdp/screen-capture-recorder-to-video-windows-free
https://github.com/richgel999/miniz
https://github.com/xtensor-stack/xsimd
https://github.com/facebookresearch/SparseConvNet
https://github.com/charto/nbind
https://github.com/wjwwood/serial
https://github.com/lvandeve/lodepng
https://github.com/projectchrono/chrono
https://github.com/David-Haim/concurrencpp
https://github.com/Dobiasd/FunctionalPlus
https://github.com/HuTianQi/SmartOpenCV
https://github.com/herumi/xbyak
https://github.com/cryfs/cryfs
https://github.com/sanni/cartreader
https://github.com/Neargye/nameof
https://github.com/Tencent/phxrpc
https://github.com/DISTRHO/Cardinal
https://github.com/Corvusoft/restbed
https://github.com/PJLab-ADG/SensorsCalibration
https://github.com/mfontanini/libtins
https://github.com/kyubotics/coolq-http-api
https://github.com/cocos2d/cocos2d-js
https://github.com/syoyo/tinygltf
https://github.com/Andersbakken/rtags
https://github.com/sogou/srpc
https://github.com/CppCon/CppCon2016
https://github.com/QianMo/OpenCV3-Intro-Book-Src
https://github.com/downdemo/Cpp-Concurrency-in-Action-2ed
https://github.com/zeromq/cppzmq
https://github.com/AcademySoftwareFoundation/OpenColorIO
https://github.com/kokkos/kokkos-tutorials
https://github.com/Blizzard/s2client-api
https://github.com/vit-vit/CTPL
https://github.com/CppCon/CppCon2020
https://github.com/standardese/cppast
https://github.com/onlytailei/CppRobotics
https://github.com/rpclib/rpclib
https://github.com/wichtounet/thor-os
https://github.com/dougbinks/enkiTS
https://github.com/bloomberg/bde
https://github.com/vimpunk/mio
https://github.com/jpbarrette/curlpp
https://github.com/mtrebi/memory-allocators
https://github.com/crow-translate/crow-translate
https://github.com/felixguendling/cista
https://github.com/microsoft/cppwinrt
https://github.com/log4cplus/log4cplus
https://github.com/ktock/container2wasm
https://github.com/aantron/better-enums
https://github.com/qicosmos/rest_rpc
https://github.com/rutura/The-C-20-Masterclass-Source-Code
https://github.com/HoShiMin/Kernel-Bridge
https://github.com/downdemo/Cpp-Templates-2ed
https://github.com/mrtazz/restclient-cpp
https://github.com/mutouyun/cpp-ipc
https://github.com/gigablast/open-source-search-engine
https://github.com/sparsehash/sparsehash-c11
https://github.com/micknoise/Maximilian
https://github.com/quickfix/quickfix
https://github.com/electech6/ORB_SLAM2_detailed_comments
https://github.com/pantor/inja
https://github.com/autodiff/autodiff
https://github.com/martinus/robin-hood-hashing
https://github.com/paullouisageneau/libdatachannel
https://github.com/chdb-io/chdb
https://github.com/Hawstein/cracking-the-coding-interview
https://github.com/falkTX/Carla
https://github.com/ucbrise/confluo
https://github.com/stevemk14ebr/PolyHook_2_0
https://github.com/llvm/circt
https://github.com/fungos/cr
https://github.com/googlevr/cardboard
https://github.com/agauniyal/rang
https://github.com/WithSecureLabs/C3
https://github.com/foonathan/memory
https://github.com/miguelfreitas/twister-core
https://github.com/sftrabbit/CppPatterns-Patterns
https://github.com/Bhupesh-V/30-seconds-of-cpp
https://github.com/yyzybb537/libgonet
https://github.com/ckb-next/ckb-next
https://github.com/actor-framework/actor-framework
https://github.com/pistacheio/pistache
https://github.com/inotify-tools/inotify-tools
https://github.com/facebookarchive/conceal
https://github.com/CLIUtils/CLI11
https://github.com/ReactiveX/RxCpp
https://github.com/jupyter-xeus/xeus-cling
https://github.com/ChaiScript/ChaiScript
https://github.com/CppCon/CppCon2015
https://github.com/ChenglongChen/kaggle-CrowdFlower
https://github.com/vgvassilev/cling
https://github.com/prabhuomkar/pytorch-cpp
https://github.com/google/fruit
https://github.com/scipr-lab/libsnark
https://github.com/bbc/audiowaveform
https://github.com/google/marl
https://github.com/qicosmos/cinatra
https://github.com/ShiqiYu/CPP
https://github.com/emilk/loguru
https://github.com/tunabrain/tungsten
https://github.com/plasma-umass/Mesh
https://github.com/CppCon/CppCon2018
https://github.com/SmingHub/Sming
https://github.com/facebookarchive/Flicks
https://github.com/CopernicaMarketingSoftware/PHP-CPP
https://github.com/johnBuffer/NoCol
https://github.com/thestk/rtaudio
https://github.com/GreycLab/CImg
https://github.com/owncloud/client
https://github.com/tfussell/xlnt
https://github.com/preshing/junction
https://github.com/mapbox/polylabel
https://github.com/ccMSC/ckb
https://github.com/TartanLlama/expected
https://github.com/MikeMirzayanov/testlib
https://github.com/binji/pokegb
https://github.com/ethz-adrl/control-toolbox
https://github.com/Star-Clouds/CenterFace
https://github.com/andrivet/ADVobfuscator
https://github.com/skypjack/uvw
https://github.com/ucbrise/clipper
https://github.com/mostafa-saad/ArabicCompetitiveProgramming
https://github.com/ankitdhall/lidar_camera_calibration
https://github.com/perilouswithadollarsign/cstrike15_src
https://github.com/careercup/CtCI-6th-Edition-cpp
https://github.com/Bareflank/hypervisor
https://github.com/meganz/sdk
https://github.com/anael-seghezzi/CToy
https://github.com/sourcey/libsourcey
https://github.com/chvmp/champ
https://github.com/solodon4/Mach7
https://github.com/hiyohiyo/CrystalDiskInfo
https://github.com/Amanieu/asyncplusplus
https://github.com/vtil-project/VTIL-Core
https://github.com/Smoothieware/Smoothieware
https://github.com/IntelLabs/control-flag
https://github.com/treefrogframework/treefrog-framework
https://github.com/zeroc-ice/ice
https://github.com/SourMesen/Mesen-S
https://github.com/calamares/calamares
https://github.com/bitshares/bitshares-core
https://github.com/d5/node.native
https://github.com/Dor1s/libfuzzer-workshop
https://github.com/OpenDDS/OpenDDS
https://github.com/ibaaj/dijkstra-cartography
https://github.com/eranpeer/FakeIt
https://github.com/martinus/nanobench
https://github.com/asmjit/asmjit
https://github.com/yrnkrn/zapcc
https://github.com/greg7mdp/sparsepp
https://github.com/google/lullaby
https://github.com/fireice-uk/xmr-stak-cpu
https://github.com/p12tic/libsimdpp
https://github.com/OpenZWave/open-zwave-control-panel
https://github.com/rogersce/cnpy
https://github.com/inspircd/inspircd
https://github.com/csmith-project/creduce
https://github.com/Chuyu-Team/VC-LTL5
https://github.com/kylemcdonald/FaceTracker
https://github.com/gazebosim/gazebo-classic
https://github.com/beark/ftl
https://github.com/muellan/clipp
https://github.com/GPUOpen-Archive/CodeXL
https://github.com/facebook/fatal
https://github.com/njh/EtherCard
https://github.com/snakster/cpp.react
https://github.com/PRBonn/depth_clustering
https://github.com/chronoxor/CppServer
https://github.com/boost-ext/ut
https://github.com/mherb/kalman
https://github.com/stefanocasazza/ULib
https://github.com/LemonOSProject/LemonOS
https://github.com/serge-sans-paille/frozen
https://github.com/spotify/echoprint-codegen
https://github.com/OpenShot/libopenshot-audio
https://github.com/jank-lang/jank
https://github.com/BitMEX/api-connectors
https://github.com/savoirfairelinux/opendht
https://github.com/thewtex/tmux-mem-cpu-load
https://github.com/NytroRST/ShellcodeCompiler
https://github.com/jeaye/stdman
https://github.com/emil-e/rapidcheck
https://github.com/max0x7ba/atomic_queue
https://github.com/wqking/eventpp
https://github.com/standardese/standardese
https://github.com/d35ha/CallObfuscator
https://github.com/hughperkins/DeepCL
https://github.com/joaofaro/KCFcpp
https://github.com/google/certificate-transparency
https://github.com/RaftLib/RaftLib
https://github.com/inspector-repl/inspector
https://github.com/cinemast/libjson-rpc-cpp
https://github.com/cnr-isti-vclab/vcglib
https://github.com/pmoulon/CMVS-PMVS
https://github.com/Genymobile/scrcpy
https://github.com/curl/curl
https://github.com/ggerganov/whisper.cpp
https://github.com/ggreer/the_silver_searcher
https://github.com/nothings/stb
https://github.com/hashcat/hashcat-utils
https://github.com/radareorg/radare2-extras
https://github.com/jarun/nnn
https://github.com/raysan5/raylib
https://github.com/allinurl/goaccess
https://github.com/lvgl/lvgl_esp32_drivers
https://github.com/skywind3000/kcp
https://github.com/karpathy/llama2.c
https://github.com/jart/cosmopolitan
https://github.com/reactos/reactos
https://github.com/acidanthera/OpenCorePkg
https://github.com/sumatrapdfreader/sumatrapdf
https://github.com/systemd/systemd-stable
https://github.com/davatorium/rofi
https://github.com/jonas/tig
https://github.com/jedisct1/libsodium-php
https://github.com/libevent/libevent-book
https://github.com/coturn/coturn
https://github.com/cockpit-project/cockpit
https://github.com/FreeRDP/FreeRDP
https://github.com/DaveGamble/cJSON
https://github.com/libgit2/libgit2-backends
https://github.com/krallin/tini
https://github.com/Wind4/vlmcsd
https://github.com/peng-zhihui/L-ink_Card
https://github.com/liuliu/ccv
https://github.com/capstone-engine/capstone
https://github.com/stanfordnlp/GloVe
https://github.com/nodejs/http-parser
https://github.com/microsoft/WinObjC
https://github.com/orangeduck/Cello
https://github.com/libimobiledevice/libimobiledevice
https://github.com/ithewei/libhv
https://github.com/rui314/8cc
https://github.com/lpereira/lwan
https://github.com/veracrypt/VeraCrypt-DCS
https://github.com/hfiref0x/UACME
https://github.com/floooh/sokol
https://github.com/ldcsaa/HP-Socket
https://github.com/CameraKit/camerakit-android
https://github.com/grbl/grbl
https://github.com/hrvach/deskhop
https://github.com/cmus/cmus
https://github.com/cjdelisle/cjdns
https://github.com/neutrinolabs/xrdp
https://github.com/dokan-dev/dokany
https://github.com/kornelski/pngquant
https://github.com/libusb/libusb
https://github.com/RIOT-OS/RIOT
https://github.com/antirez/sds
https://github.com/jagt/clumsy
https://github.com/clibs/clib
https://github.com/tboox/tbox
https://github.com/laruence/yaf
https://github.com/warmcat/libwebsockets
https://github.com/aws/s2n-tls
https://github.com/gluster/glusterfs
https://github.com/maximegmd/CyberEngineTweaks
https://github.com/lxc/lxcfs
https://github.com/marcobambini/gravity
https://github.com/dunst-project/dunst
https://github.com/tianocore/edk2
https://github.com/attractivechaos/klib
https://github.com/kokke/tiny-AES-c
https://github.com/nanopb/nanopb
https://github.com/openvenues/libpostal
https://github.com/gnea/grbl
https://github.com/troydhanson/uthash
https://github.com/dvorka/hstr
https://github.com/microsoft/msquic
https://github.com/acassen/keepalived
https://github.com/lotabout/write-a-C-interpreter
https://github.com/contiki-os/contiki
https://github.com/jorisvink/kore
https://github.com/abishekvashok/cmatrix
https://github.com/shadowsocks/ChinaDNS
https://github.com/hnes/libaco
https://github.com/varnishcache/varnish-cache
https://github.com/3proxy/3proxy
https://github.com/westes/flex
https://github.com/philippe44/AirConnect
https://github.com/janet-lang/janet
https://github.com/fragglet/c-algorithms
https://github.com/mridgers/clink
https://github.com/jakogut/tinyvm
https://github.com/zyantific/zydis
https://github.com/stellar/stellar-core
https://github.com/ohler55/oj
https://github.com/stephane/libmodbus
https://github.com/remzi-arpacidusseau/ostep-code
https://github.com/premake/premake-core
https://github.com/hexchat/hexchat
https://github.com/google/honggfuzz
https://github.com/collectd/collectd
https://github.com/akheron/jansson
https://github.com/lastpass/lastpass-cli
https://github.com/jhawthorn/fzy
https://github.com/sysstat/sysstat
https://github.com/gozfree/gear-lib
https://github.com/ibireme/yyjson
https://github.com/acl-dev/acl
https://github.com/sustrik/libmill
https://github.com/openssh/openssh-portable
https://github.com/srdja/Collections-C
https://github.com/containers/crun
https://github.com/tvheadend/tvheadend
https://github.com/civetweb/civetweb
https://github.com/vifm/vifm
https://github.com/orangeduck/mpc
https://github.com/eduard-permyakov/permafrost-engine
https://github.com/cleanflight/cleanflight
https://github.com/stm32duino/Arduino_Core_STM32
https://github.com/checkpoint-restore/criu
https://github.com/cnlohr/rawdrawandroid
https://github.com/RavenSystem/esp-homekit-devices
https://github.com/InfiniTimeOrg/InfiniTime
https://github.com/fwupd/fwupd
https://github.com/cesanta/mongoose-os
https://github.com/tj/luna
https://github.com/apple/swift-corelibs-libdispatch
https://github.com/open62541/open62541
https://github.com/cloudwu/coroutine
https://github.com/rxi/log.c
https://github.com/MayaPosch/NymphCast
https://github.com/OpenSC/OpenSC
https://github.com/seemoo-lab/nexmon
https://github.com/altdesktop/playerctl
https://github.com/concurrencykit/ck
https://github.com/solokeys/solo1
https://github.com/benhoyt/inih
https://github.com/brendan-rius/c-jwt-cracker
https://github.com/chjj/compton
https://github.com/linux-test-project/ltp
https://github.com/tezc/sc
https://github.com/cc65/cc65
https://github.com/linux-can/can-utils
https://github.com/lloyd/yajl
https://github.com/scandum/quadsort
https://github.com/skeeto/w64devkit
https://github.com/rvaiya/keyd
https://github.com/symisc/unqlite
https://github.com/xiph/opusfile
https://github.com/mvp/uhubctl
https://github.com/SRombauts/SQLiteCpp
https://github.com/HardySimpson/zlog
https://github.com/FreeRADIUS/freeradius-server
https://github.com/mjansson/rpmalloc
https://github.com/distcc/distcc
https://github.com/vmg/sundown
https://github.com/bats3c/shad0w
https://github.com/mkirchner/linked-list-good-taste
https://github.com/boazsegev/facil.io
https://github.com/pret/pokeemerald
https://github.com/taviso/ctypes.sh
https://github.com/Pithikos/C-Thread-Pool
https://github.com/rspamd/rspamd
https://github.com/drh/lcc
https://github.com/Snaipe/Criterion
https://github.com/owntone/owntone-server
https://github.com/cyring/CoreFreq
https://github.com/ZerBea/hcxtools
https://github.com/andrewrk/libsoundio
https://github.com/statsite/statsite
https://github.com/apple/cups
https://github.com/cesanta/mjson
https://github.com/Lora-net/LoRaMac-node
https://github.com/asterisk/asterisk
https://github.com/eclipse/paho.mqtt.c
https://github.com/proot-me/proot
https://github.com/rui314/9cc
https://github.com/h2o/picohttpparser
https://github.com/luke-jr/bfgminer
https://github.com/c-ares/c-ares
https://github.com/virtio-win/kvm-guest-drivers-windows
https://github.com/jeremycw/httpserver.h
https://github.com/symisc/sod
https://github.com/droe/sslsplit
https://github.com/rsta2/circle
https://github.com/cgdb/cgdb
https://github.com/B-Con/crypto-algorithms
https://github.com/pbatard/libwdi
https://github.com/facebookarchive/libphenom
https://github.com/sustrik/libdill
https://github.com/emsec/ChameleonMini
https://github.com/gurnec/HashCheck
https://github.com/fastfetch-cli/fastfetch
https://github.com/lexborisov/myhtml
https://github.com/opsengine/cpulimit
https://github.com/cloudwu/pbc
https://github.com/emweb/wt
https://github.com/sheredom/utf8.h
https://github.com/free-audio/clap
https://github.com/xorvoid/sectorc
https://github.com/nfc-tools/libnfc
https://github.com/vinniefalco/LuaBridge
https://github.com/cs50/libcs50
https://github.com/commonmark/cmark
https://github.com/brektrou/rtl8821CU
https://github.com/open5gs/open5gs
https://github.com/samtools/samtools
https://github.com/siduck/chadwm
https://github.com/buserror/simavr
https://github.com/protocolbuffers/upb
https://github.com/ThakeeNathees/pocketlang
https://github.com/agavrel/42_CheatSheet
https://github.com/brianmario/yajl-ruby
https://github.com/hfiref0x/WinObjEx64
https://github.com/SpenceKonde/ATTinyCore
https://github.com/libtom/libtomcrypt
https://github.com/silentbicycle/greatest
https://github.com/systemd/casync
https://github.com/xiph/flac
https://github.com/rxi/dyad
https://github.com/Harvey-OS/harvey
https://github.com/laruence/yar
https://github.com/Softmotions/ejdb
https://github.com/libusb/hidapi
https://github.com/zlib-ng/zlib-ng
https://github.com/cesanta/v7
https://github.com/apple/swift-crypto
https://github.com/lucavallin/barco
https://github.com/rui314/minilisp
https://github.com/nfs-ganesha/nfs-ganesha
https://github.com/brenns10/lsh
https://github.com/AllAlgorithms/c
https://github.com/miniupnp/miniupnp
https://github.com/joan2937/pigpio
https://github.com/libimobiledevice/usbmuxd
https://github.com/ucb-bar/chipyard
https://github.com/eclipse/mraa
https://github.com/atomvm/AtomVM
https://github.com/Visgean/Zeus
https://github.com/jmcnamara/libxlsxwriter
https://github.com/linux-nvme/nvme-cli
https://github.com/DreamAndDead/CSAPP-3e-Solutions
https://github.com/EdgeTX/edgetx
https://github.com/gentilkiwi/kekeo
https://github.com/posva/catimg
https://github.com/pikasTech/PikaPython
https://github.com/cnlohr/mini-rv32ima
https://github.com/libsndfile/libsndfile
https://github.com/vergoh/vnstat
https://github.com/cnlohr/channel3
https://github.com/kuba--/zip
https://github.com/Bumblebee-Project/Bumblebee
https://github.com/taf2/curb
https://github.com/cr-marcstevens/sha1collisiondetection
https://github.com/dekuNukem/bob_cassette_rewinder
https://github.com/kgabis/parson
https://github.com/libressl/portable
https://github.com/linux-rdma/rdma-core
https://github.com/bloomberg/comdb2
https://github.com/eclipse/paho.mqtt.embedded-c
https://github.com/tanakh/cmdline
https://github.com/rxi/fe
https://github.com/json-parser/json-parser
https://github.com/Cyan4973/FiniteStateEntropy
https://github.com/Sapd/HeadsetControl
https://github.com/CANopenNode/CANopenNode
https://github.com/profanity-im/profanity
https://github.com/mytechnotalent/Hacking-Windows
https://github.com/bugaevc/wl-clipboard
https://github.com/armon/bloomd
https://github.com/c3lang/c3c
https://github.com/Battelle/movfuscator
https://github.com/libssh2/libssh2
https://github.com/andrei-markeev/ts2c
https://github.com/contiki-ng/contiki-ng
https://github.com/Fazecast/jSerialComm
https://github.com/switchbrew/libnx
https://github.com/PortAudio/portaudio
https://github.com/vurtun/lib
https://github.com/monitoringartist/zabbix-docker-monitoring
https://github.com/mupen64plus/mupen64plus-core
https://github.com/libimobiledevice/ideviceinstaller
https://github.com/csound/csound
https://github.com/doonny/PipeCNN
https://github.com/ARM-software/CMSIS_5
https://github.com/leo-arch/clifm
https://github.com/Water-Melon/Melon
https://github.com/pimoroni/pimoroni-pico
https://github.com/kokke/tiny-regex-c
https://github.com/libimobiledevice/idevicerestore
https://github.com/nvim-telescope/telescope-fzf-native.nvim
https://github.com/tass-belgium/picotcp
https://github.com/zeromq/czmq
https://github.com/OpenEtherCATsociety/SOEM
https://github.com/arduino/ArduinoCore-avr
https://github.com/mackron/dr_libs
https://github.com/UnknownShadow200/ClassiCube
https://github.com/haywire/haywire
https://github.com/cloudflare/cloudflare-blog
https://github.com/easytarget/esp32-cam-webserver
https://github.com/appneta/tcpreplay
https://github.com/trustedsec/CS-Situational-Awareness-BOF
https://github.com/tj/mon
https://github.com/bitcraze/crazyflie-firmware
https://github.com/willemt/raft
https://github.com/antirez/rax
https://github.com/hyperrealm/libconfig
https://github.com/gsass1/NTop
https://github.com/embox/embox
https://github.com/dibyendumajumdar/ravi
https://github.com/HVML/PurC
https://github.com/glouw/ctl
https://github.com/ObKo/stm32-cmake
https://github.com/ngtcp2/ngtcp2
https://github.com/ImpulseAdventure/GUIslice
https://github.com/picolibc/picolibc
https://github.com/laruence/yaconf
https://github.com/bryanpkc/corkscrew
https://github.com/corosync/corosync
https://github.com/rustyrussell/ccan
https://github.com/miao1007/Openwrt-NetKeeper
https://github.com/libcheck/check
https://github.com/brutal-org/brutal
https://github.com/celluloid-player/celluloid
https://github.com/LibVNC/libvncserver
https://github.com/susam/uncap
https://github.com/rswier/swieros
https://github.com/outflanknl/C2-Tool-Collection
https://github.com/babelouest/ulfius
https://github.com/dddrrreee/cs140e-20win
https://github.com/DrTimothyAldenDavis/SuiteSparse
https://github.com/cariboulabs/cariboulite
https://github.com/vlm/asn1c
https://github.com/JLErvin/berry
https://github.com/tronkko/dirent
https://github.com/sysprog21/shecc
https://github.com/kkkgo/vlmcsd
https://github.com/tekknolagi/carp
https://github.com/hfiref0x/TDL
https://github.com/sheepdog/sheepdog
https://github.com/jserv/amacc
https://github.com/JuliaStrings/utf8proc
https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-c
https://github.com/skvadrik/re2c
https://github.com/MapServer/MapServer
https://github.com/wangkuiwu/datastructs_and_algorithm
https://github.com/zpl-c/zpl
https://github.com/Blosc/c-blosc2
https://github.com/vtereshkov/umka-lang
https://github.com/cherry-embedded/CherryUSB
https://github.com/olilarkin/wdl-ol
https://github.com/aws/aws-iot-device-sdk-embedded-C
https://github.com/JuliaPoo/Artfuscator
https://github.com/scrt/avcleaner
https://github.com/halfer53/winix
https://github.com/canonical/raft
https://github.com/uclouvain/openjpeg
https://github.com/sheredom/subprocess.h
https://github.com/psankar/simplefs
https://github.com/mempodippy/vlany
https://github.com/wolkykim/qlibc
https://github.com/ggerganov/llama.cpp
https://github.com/hfiref0x/KDU
https://github.com/Duet3D/RepRapFirmware
https://github.com/mpx/lua-cjson
https://github.com/hfiref0x/VBoxHardenedLoader
https://github.com/orangeduck/tgc
https://github.com/ridiculousfish/cdecl-blocks
https://github.com/happyfish100/libfastcommon
https://github.com/lfos/calcurse
https://github.com/pytorch/cpuinfo
https://github.com/jgmenu/jgmenu
https://github.com/graphitemaster/incbin
https://github.com/FrameworkComputer/EmbeddedController
https://github.com/vitoplantamura/BugChecker
https://github.com/deanmao/node-chimera
https://github.com/maxmind/libmaxminddb
https://github.com/yangminz/bcst_csapp
https://github.com/usrbinnc/netcat-cpi-kernel-module
https://github.com/yaml/libyaml
https://github.com/wangyi-fudan/wyhash
https://github.com/dovecot/core
https://github.com/CCareaga/heap_allocator
https://github.com/RJ/ketama
https://github.com/FreeApophis/TrueCrypt
https://github.com/Orc/discount
https://github.com/laruence/yac
https://github.com/larmel/lacc
https://github.com/svenstaro/rofi-calc
https://github.com/skullchap/chadstr
https://github.com/libass/libass
https://github.com/ianlancetaylor/libbacktrace
https://github.com/mbrossard/threadpool
https://github.com/halayli/lthread
https://github.com/cage-kiosk/cage
https://github.com/troglobit/inadyn
https://github.com/kroitor/gjk.c
https://github.com/kiibohd/controller
https://github.com/pret/pokefirered
https://github.com/NouamaneTazi/bloomz.cpp
https://github.com/Crypto-toolbox/HFT-Orderbook
https://github.com/pvaret/rtl8192cu-fixes
https://github.com/mptre/pick
https://github.com/nurupo/vlc-pause-click-plugin
https://github.com/hexagonal-sun/bic
https://github.com/carld/micro-lisp
https://github.com/mjakeman/extension-manager
https://github.com/alessandrofrancesconi/gimp-plugin-bimp
https://github.com/dariomanesku/cmft
https://github.com/QuantumLeaps/qpc
https://github.com/chrisjmccormick/word2vec_commented
https://github.com/analogdevicesinc/no-OS
https://github.com/charliegerard/Epoc.js
https://github.com/hfiref0x/UPGDSED
https://github.com/jwasham/practice-c
https://github.com/galkahana/PDF-Writer
https://github.com/xorg62/tty-clock
https://github.com/eembc/coremark-pro
https://github.com/n64dev/cen64
https://github.com/stawel/cheali-charger
https://github.com/NaruseMioShirakana/MoeVoiceStudio
https://github.com/richgel999/fpng
https://github.com/OpenPrinting/cups-filters
https://github.com/jnz/q3vm
https://github.com/GenericMappingTools/gmt
https://github.com/mikeryan/crackle
https://github.com/cxong/tinydir
https://github.com/justinmeza/lci
https://github.com/ccxvii/mujs
https://github.com/emqx/neuron
https://github.com/csete/gpredict
https://github.com/weston-embedded/uC-OS3
https://github.com/nil0x42/duplicut
https://github.com/henrypp/chrlauncher
https://github.com/lemire/Code-used-on-Daniel-Lemire-s-blog
https://github.com/obgm/libcoap
https://github.com/Zeex/subhook
https://github.com/am0nsec/HellsGate
https://github.com/JayDDee/cpuminer-opt
https://github.com/riolet/rix
https://github.com/michaelforney/samurai
https://github.com/libimobiledevice/ifuse
https://github.com/balde/balde
https://github.com/diegocr/netcat
https://github.com/AravisProject/aravis
https://github.com/loadzero/si78c
https://github.com/LekKit/RVVM
https://github.com/nih-at/libzip
https://github.com/felixangell/mac
https://github.com/jergusg/k380-function-keys-conf
https://github.com/powturbo/TurboPFor-Integer-Compression
https://github.com/armon/libart
https://github.com/SilverRainZ/OS67
https://github.com/allinurl/gwsocket
https://github.com/Keruspe/GPaste
https://github.com/ngtcp2/nghttp3
https://github.com/STMicroelectronics/STM32CubeF4
https://github.com/pret/pokeruby
https://github.com/audiohacked/OpenCorsairLink
https://github.com/Hirrolot/metalang99
https://github.com/wmutils/core
https://github.com/berry-lang/berry
https://github.com/socketry/cool.io
https://github.com/scandum/blitsort
https://github.com/riolet/WAFer
https://github.com/munificent/mark-sweep
https://github.com/lexborisov/Modest
https://github.com/skarnet/s6-rc
https://github.com/lpereira/hardinfo
https://github.com/eclipse-cyclonedds/cyclonedds
https://github.com/overmighty/i-use-arch-btw
https://github.com/CongducPham/LowCostLoRaGw
https://github.com/jgm/peg-markdown
https://github.com/tpoechtrager/cctools-port
https://github.com/managarm/mlibc
https://github.com/Exim/exim
https://github.com/crash-utility/crash
https://github.com/sepfy/libpeer
https://github.com/libtrading/libtrading
https://github.com/pbatard/uefi-ntfs
https://github.com/cesanta/frozen
https://github.com/alekmaul/pvsneslib
https://github.com/gabriel/yajl-objc
https://github.com/phoboslab/pl_mpeg
https://github.com/pbatard/rufus
https://github.com/winsiderss/systeminformer
https://github.com/solusipse/ureq
https://github.com/CipherShed/CipherShed
https://github.com/xroche/coffeecatch
https://github.com/HarveyHunt/howm
https://github.com/Yubico/yubico-pam
https://github.com/MoarVM/MoarVM
https://github.com/attractivechaos/kann
https://github.com/i-rinat/apulse
https://github.com/tcbrindle/raytracer.hpp
https://github.com/rwos/gti
https://github.com/tatsuhiro-t/spdylay
https://github.com/laruence/taint
https://github.com/cnlohr/colorchord
https://github.com/ant-media/LibRtmp-Client-for-Android
https://github.com/MichaelJWelsh/cdsa
https://github.com/ASDAlexander77/TypeScript2Cxx
https://github.com/ANSSI-FR/AD-control-paths
https://github.com/dinhvh/libetpan
https://github.com/silentbicycle/theft
https://github.com/CristianHenzel/ClipIt
https://github.com/igrr/esp32-cam-demo
https://github.com/lpsantil/rt0
https://github.com/dyu/ffi-overhead
https://github.com/microsoft/SymCrypt
https://github.com/ChibiOS/ChibiOS-Contrib
https://github.com/kosma/minmea
https://github.com/naasking/async.h
https://github.com/HoShiMin/HookLib
https://github.com/bitlbee/bitlbee-steam
https://github.com/ionescu007/SpecuCheck
https://github.com/triaquae/CrazyEye
https://github.com/intel/intel-cmt-cat
https://github.com/LiamBindle/MQTT-C
https://github.com/cbsd/cbsd
https://github.com/tatsuhiro-t/wslay
https://github.com/eclipse-embed-cdt/eclipse-plugins
https://github.com/100/Cranium
https://github.com/ccpalettes/the-c-programming-language-second-edition-solutions
https://github.com/wren-lang/wren-cli
https://github.com/linuxmint/cinnamon-desktop
https://github.com/kiyo-masui/bitshuffle
https://github.com/adafruit/Adafruit_BluefruitLE_nRF51
https://github.com/adafruit/tinyuf2
https://github.com/arduino-libraries/Ethernet
https://github.com/atmelcorp/atmel-software-package
https://github.com/google/googletest
https://github.com/littlefs-project/littlefs
https://github.com/m5stack/M5StickC
https://github.com/micro-ROS/micro_ros_stm32cubemx_utils
https://github.com/NordicSemiconductor/nrfx
https://github.com/ntruchsess/arduino_uip
https://github.com/PaulStoffregen/OneWire
https://github.com/raysan5/raudio
https://github.com/RT-Thread-packages/fal
https://github.com/sandeepmistry/arduino-nRF5
https://github.com/STMicroelectronics/STM32CubeWB
https://github.com/tursodatabase/libsql
https://github.com/256dpi/arduino-mqtt
https://github.com/adafruit/Adafruit_ILI9341
https://github.com/adafruit/Adafruit_LED_Backpack
https://github.com/adafruit/Adafruit-Fingerprint-Sensor-Library
https://github.com/adafruit/Adafruit-PWM-Servo-Driver-Library
https://github.com/adafruit/Adafruit-ST7735-Library
https://github.com/adafruit/DHT-sensor-library
https://github.com/aliyun/aliyun-oss-c-sdk
https://github.com/aliyun/aliyun-oss-cpp-sdk
https://github.com/amcewen/HttpClient
https://github.com/ar90n/msgpack11
https://github.com/arduino/ArduinoCore-arc32
https://github.com/argtable/argtable3
https://github.com/armink/FlashDB
https://github.com/aromring/MAX30102_by_RF
https://github.com/atomicobject/heatshrink
https://github.com/Blockstream/Jade
https://github.com/Blosc/c-blosc
https://github.com/Bodmer/TFT_eSPI
https://github.com/Bodmer/TJpg_Decoder
https://github.com/CTurt/3DSController
https://github.com/ctz/fastpbkdf2
https://github.com/descampsa/yuv2rgb
https://github.com/earlephilhower/arduino-pico
https://github.com/earlephilhower/ESP8266Audio
https://github.com/earlephilhower/ESP8266SAM
https://github.com/espressif/esp-adf
https://github.com/espressif/esp-va-sdk
https://github.com/fireeye/RProxy
https://github.com/FreeRTOS/FreeRTOS-Kernel
https://github.com/google/ruy
https://github.com/HomeSpan/HomeSpan
https://github.com/intel/tinycrypt
https://github.com/JuliaMath/openlibm
https://github.com/keirf/flashfloppy
https://github.com/kjdev/php-ext-zstd
https://github.com/libsdl-org/SDL_image
https://github.com/lvgl/lv_drivers
https://github.com/m5stack/M5Stack
https://github.com/Makuna/NeoPixelBus
https://github.com/mavlink/MAVSDK
https://github.com/Mbed-TLS/mbedtls
https://github.com/mcu-tools/mcuboot
https://github.com/menudoproblema/libemqtt
https://github.com/miguelbalboa/rfid
https://github.com/NordicPlayground/nRF51-ble-bcast-mesh
https://github.com/nRF24/RF24
https://github.com/openLuat/LuatOS
https://github.com/PaulStoffregen/XPT2046_Touchscreen
https://github.com/PicoCPP/RPI-pico-FreeRTOS
https://github.com/pololu/vl53l1x-arduino
https://github.com/sandeepmistry/arduino-LoRa
https://github.com/sieren/Homepoint
https://github.com/StereoKit/StereoKit
https://github.com/UtilitechAS/amsreader-firmware
https://github.com/veonik/arduino-cc1101
https://github.com/vroland/epdiy
https://github.com/wayoda/LedControl
https://github.com/xreef/SimpleFTPServer
https://github.com/libsdl-org/SDL
https://github.com/adfernandes/segger-rtt
https://github.com/lwip-tcpip/lwip
https://github.com/bellard/quickjs
https://github.com/freetype/freetype
https://github.com/tensorflow/tensorflow
https://github.com/ARM-software/CMSIS-Driver
https://github.com/digsrc/wpa_supplicant
https://github.com/bluez/bluez
https://github.com/open-iscsi/open-iscsi
https://github.com/xtaci/kcptun
https://github.com/jech/dht
https://github.com/johndoe31415/ratched
https://github.com/rakshasa/rtorrent
https://github.com/ryd/chaosvpn
https://github.com/Cyan4973/xxHash