-
Notifications
You must be signed in to change notification settings - Fork 275
/
experiment-requests.yaml
4034 lines (3657 loc) · 93.5 KB
/
experiment-requests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Experiment requests have the following format:
#
# - experiment: 2020-06-08 # The name of the experiment
# fuzzers: # The fuzzers to run in the experiment.
# - aflplusplus
# - libfuzzer
# description: "Explain the intent of the experiment"
# # type: bug # Set to use bug based benchmarks, otherwise coverage (default).
# # oss-fuzz-corpus: true # Set to use latest saturated corpora from OSS-Fuzz.
#
# The name of the experiment must begin with a date using this format:
# YYYY-MM-DD (year-month-day). It's not important what timezone is used in
# deciding the date or if this is a day or two off. The most important thing is
# that is unique.
# If there already is an experiment for a particular date in this file, you can
# either: add a suffix (e.g. "-aflplusplus" or "-2") to the experiment name, or
# use the next date.
#
# You can run "make presubmit" to do basic validation on this file.
# Please add new experiment requests towards the top of this file.
#
- experiment: 2023-06-12-aflpp
description: "Benchmark afl++ releases and newmutation"
fuzzers:
- aflplusplus
- aflplusplus_406
- aflplusplus_407
- aflplusplus_text
- experiment: 2023-06-12-aflpp-bug
description: "Benchmark afl++ releases and newmutation - bug"
type: bug
fuzzers:
- aflplusplus
- aflplusplus_406
- aflplusplus_407
- aflplusplus_text
- aflplusplus_exploit
- experiment: 2023-06-09-aflpp
description: "Benchmark afl++ mutations"
fuzzers:
- aflplusplus
- aflplusplus_mutcomp
- aflplusplus_mutnew
- experiment: 2023-05-17-aflpp-concolic
description: "Benchmark afl++ concolic"
fuzzers:
- aflplusplus
- aflplusplus_weighsplice
- aflplusplus_symqemu
- experiment: 2023-05-06-afppff
description: "Benchmark fishfuzz"
type: bug
fuzzers:
- aflplusplus_ff_comp
- aflplusplus_fishfuzz
benchmarks:
- bloaty_fuzz_target_52948c
- libxml2_xml_e85b9b
- mbedtls_fuzz_dtlsclient_7c6b0e
- php_php-fuzz-parser_0dbedb
- experiment: 2023-04-27-main
description: "Benchmark main fuzzers"
fuzzers:
- aflplusplus
- aflplusplusplus
- libafl
- honggfuzz
- entropic
- centipede
- afl
- experiment: 2023-04-27-aflpp
description: "Analyse deduplication feature"
fuzzers:
- aflplusplus
- aflplusplus_nodedup
- experiment: 2023-04-25-aflpp
description: "Ensure regression is fixed"
fuzzers:
- aflplusplus
- aflplusplus_bug
- aflplusplus_mega
- libafl
- experiment: 2023-04-21-aflpp
description: "Find regression"
fuzzers:
- aflplusplus_mega
- aflplusplus_314_0
- aflplusplus_314_1
- aflplusplus_314_2
- aflplusplus_314_3
- aflplusplus_314_4
- aflplusplus_314_5
- aflplusplus_314_6
benchmarks:
- bloaty_fuzz_target
- sqlite3_ossfuzz
- experiment: 2023-04-15-alphaphuzz
description: "test variant"
fuzzers:
- aflplusplus_314
- aflplusplus_aflphuzz
- experiment: 2023-04-13-aflpp
description: "Find regression"
fuzzers:
- aflplusplus_mega
- aflplusplus_314_0
- aflplusplus_314_1
- aflplusplus_314_2
- aflplusplus_314_3
- aflplusplus_314_4
- aflplusplus_314_5
- aflplusplus_314
benchmarks:
- bloaty_fuzz_target
- libxml2_xml
- sqlite3_ossfuzz
- experiment: 2023-04-09-aflpp
description: "Test new mutation engine and -z option"
fuzzers:
- aflplusplus
- aflplusplus_mutsamehavoc
- aflplusplus_newqueuez
- aflplusplus_313
- aflplusplus_313_2
- aflplusplus_mega
- aflplusplus_314
benchmarks:
- bloaty_fuzz_target
- curl_curl_fuzzer_http
- freetype2_ftfuzzer
- lcms_cms_transform_fuzzer
- libpcap_fuzz_both
- libxml2_xml
- mbedtls_fuzz_dtlsclient
- openthread_ot-ip6-send-fuzzer
- proj4_proj_crs_to_crs_fuzzer
- sqlite3_ossfuzz
- stb_stbi_read_fuzzer
- woff2_convert_woff2ttf_fuzzer
- experiment: 2023-04-05-aflpp
description: "Test new mutation engine"
fuzzers:
- aflplusplus
- aflplusplus_314
- aflplusplus_mutsamehavoc
- aflplusplus_mutnewhavoc
- aflplusplus_406
- aflplusplus_newqueue
- aflplusplus_newqueuez
benchmarks:
- bloaty_fuzz_target
- curl_curl_fuzzer_http
- freetype2_ftfuzzer
- lcms_cms_transform_fuzzer
- libpcap_fuzz_both
- libxml2_xml
- mbedtls_fuzz_dtlsclient
- openthread_ot-ip6-send-fuzzer
- proj4_proj_crs_to_crs_fuzzer
- sqlite3_ossfuzz
- stb_stbi_read_fuzzer
- woff2_convert_woff2ttf_fuzzer
- experiment: 2023-03-25-aflpp-comp
description: "Tests main fuzzers"
fuzzers:
- aflplusplus
- aflplusplus_313
- aflplusplus_314
- aflplusplus_400
- aflplusplus_401
- aflplusplus_402
- aflplusplus_403
- aflplusplus_404
- aflplusplus_405
- aflplusplus_406
benchmarks:
- bloaty_fuzz_target
- curl_curl_fuzzer_http
- freetype2_ftfuzzer
- lcms_cms_transform_fuzzer
- libpcap_fuzz_both
- libxml2_xml
- mbedtls_fuzz_dtlsclient
- openthread_ot-ip6-send-fuzzer
- proj4_proj_crs_to_crs_fuzzer
- sqlite3_ossfuzz
- stb_stbi_read_fuzzer
- woff2_convert_woff2ttf_fuzzer
- experiment: 2023-03-24-main
description: "Tests main fuzzers"
fuzzers:
- aflplusplus
- libafl
- aflrustrust
- honggfuzz
- entropic
- libfuzzer
- centipede
- experiment: 2023-03-23-various
description: "Tests darwin, pcg, ddfuzz"
fuzzers:
- afl
- darwin
- mopt
- aflplusplus
- aflplusplus_pge
- aflplusplus_pge10
- aflplusplus_pge100
- aflplusplus_ddfuzz
- aflplusplus_comp_pge
- aflplusplus_comp_dd
- experiment: 2023-03-20-ecofuzz
description: "Test EcoFuzz."
fuzzers:
- afl
- aflfast
- ecofuzz
- experiment: 2023-03-20-aflpp
description: "afl++ comparisons"
trials: 10
fuzzers:
- aflplusplus
- aflplusplus_405c
- aflplusplus_comp
- aflplusplus_haste
- hastefuzz
benchmarks:
- assimp_assimp_fuzzer
- bloaty_fuzz_target
- dropbear_fuzzer-postauth_nomaths
- freetype2_ftfuzzer
- lcms_cms_transform_fuzzer
- libpcap_fuzz_both
- libxml2_xml
- mbedtls_fuzz_dtlsclient
- openthread_ot-ip6-send-fuzzer
- proj4_proj_crs_to_crs_fuzzer
- sqlite3_ossfuzz
- stb_stbi_read_fuzzer
- systemd_fuzz-link-parser
- woff2_convert_woff2ttf_fuzzer
- experiment: 2023-02-28-ecofuzz
description: "Test EcoFuzz."
fuzzers:
- afl
- aflfast
- ecofuzz
- experiment: 2023-03-15-aflpp
description: "afl++ identify regressions."
trials: 10
fuzzers:
- aflplusplus_post_0
- aflplusplus_post_1
- aflplusplus_post_2
- aflplusplus_post_3
- aflplusplus_pre_0
- aflplusplus_pre_1
- aflplusplus_pre_2
- aflplusplus_pre_3
- aflplusplus_pre_4
- aflplusplus_pre_5
- experiment: 2023-03-10-aflpp
description: "afl++ classify tests."
trials: 10
fuzzers:
- aflplusplus_base
- aflplusplus_explore
- aflplusplus_class_explore
- aflplusplus_class
- aflplusplus_onebug
- experiment: 2023-02-27-aflpp-3
description: "afl++ regression test (different one)."
trials: 10
fuzzers:
- aflplusplus_new
- aflplusplus_div
- aflplusplus_explore
benchmarks:
- bloaty_fuzz_target
- freetype2_ftfuzzer
- lcms_cms_transform_fuzzer
- libpcap_fuzz_both
- mbedtls_fuzz_dtlsclient
- openthread_ot-ip6-send-fuzzer
- proj4_proj_crs_to_crs_fuzzer
- sqlite3_ossfuzz
- stb_stbi_read_fuzzer
- systemd_fuzz-link-parser
- experiment: 2023-02-27-aflppp
description: "afl+++ variants."
trials: 10
fuzzers:
- aflplusplusplus
- aflppp_fav
- aflppp_learn
benchmarks:
- curl_curl_fuzzer_http
- jsoncpp_jsoncpp_fuzzer
- libxml2_xml
- libxslt_xpath
- proj4_proj_crs_to_crs_fuzzer
- re2_fuzzer
- sqlite3_ossfuzz
- systemd_fuzz-link-parser
- experiment: 2023-02-27-learnperffuzz
description: "Test quota."
fuzzers:
- afl
- aflfast
- aflplusplus
- aflsmart
- eclipser
- fairfuzz
- honggfuzz
- libafl
- libfuzzer
- mopt
- learnperffuzz
- experiment: 2023-02-27-aflpp-2
description: "afl++ regression test."
trials: 10
fuzzers:
- aflplusplus_onebug
- aflplusplus_new
- aflplusplus_old
- aflplusplus_025f617d
- aflplusplus
benchmarks:
- bloaty_fuzz_target
- freetype2_ftfuzzer
- lcms_cms_transform_fuzzer
- libpcap_fuzz_both
- mbedtls_fuzz_dtlsclient
- openthread_ot-ip6-send-fuzzer
- proj4_proj_crs_to_crs_fuzzer
- sqlite3_ossfuzz
- stb_stbi_read_fuzzer
- systemd_fuzz-link-parser
- experiment: 2023-02-27-aflpp
description: "afl++ regression test."
fuzzers:
- aflplusplus_onebug
- aflplusplus_new
- aflplusplus_old
benchmarks:
- bloaty_fuzz_target
- freetype2_ftfuzzer
- lcms_cms_transform_fuzzer
- proj4_proj_crs_to_crs_fuzzer
- stb_stbi_read_fuzzer
- experiment: 2023-02-26-aflppp
description: "afl+++ impact test."
fuzzers:
- aflplusplus_new
- aflplusplusplus
benchmarks:
- curl_curl_fuzzer_http
- jsoncpp_jsoncpp_fuzzer
- libxml2_xml
- libxslt_xpath
- php_php-fuzz-parser
- proj4_proj_crs_to_crs_fuzzer
- re2_fuzzer
- sqlite3_ossfuzz
- systemd_fuzz-link-parser
- experiment: 2023-02-26-aflpp
description: "afl++ regression test."
fuzzers:
- aflplusplus
- aflplusplus_new
- aflplusplus_old
benchmarks:
- bloaty_fuzz_target
- freetype2_ftfuzzer
- lcms_cms_transform_fuzzer
- proj4_proj_crs_to_crs_fuzzer
- stb_stbi_read_fuzzer
- experiment: 2023-02-23-aflpp
description: "afl++ regression test."
fuzzers:
- aflplusplus_025f617d
- aflplusplus_3e8a691a
- aflplusplus_old
- aflplusplus_1a9f9685
- aflplusplus_f01bf776
- aflplusplus_25b4b326
benchmarks:
- bloaty_fuzz_target
- freetype2_ftfuzzer
- lcms_cms_transform_fuzzer
- proj4_proj_crs_to_crs_fuzzer
- stb_stbi_read_fuzzer
- experiment: 2023-02-22-aflpp
description: "afl++ regression test."
fuzzers:
- aflplusplus
- aflplusplus_old
- aflplusplus_rq
- aflplusplus_onebug
- experiment: 2023-02-21-aflppp
description: "afl++ regression test."
fuzzers:
- aflplusplusplus
- aflppp_all
- experiment: 2023-02-21-aflpp
description: "afl++ regression test."
fuzzers:
- aflplusplus
- aflplusplus_old
- aflplusplusplus
- aflppp_no
- experiment: 2023-02-20-aflpp
description: "afl++ and afl+++ experiments."
fuzzers:
- aflplusplus
- aflplusplus_current
- aflplusplusplus
- aflppp_oldcmplog
- aflppp_minlen
- aflppp_nomaxlen
- experiment: 2023-02-18-aflpp
description: "afl+++ token experiment."
fuzzers:
- aflplusplus
- aflppp
- aflppp_no
- aflppp_tmout
- experiment: 2023-02-15-test-quota
description: "Test quota."
fuzzers:
- afl
- aflfast
- aflplusplus
- aflsmart
- centipede
- eclipser
- fairfuzz
- honggfuzz
- libafl
- libfuzzer
- mopt
- experiment: 2023-02-15-aflpp
description: "afl+++ token experiment."
fuzzers:
- aflplusplus
- aflplusplus_at_cm_new
- aflplusplus_at_cm_old
- experiment: 2023-02-14-aflpp
description: "afl++ dict experiment."
fuzzers:
- aflplusplus_at
- aflplusplus_at_nomain
- experiment: 2023-02-13-aflpp-3
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm_new
- aflplusplus_at_cm_old
- experiment: 2023-02-13-aflpp-2
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm
- aflplusplus_at_cm_dis
- experiment: 2023-02-13-aflpp
description: "afl++ dict experiment"
fuzzers:
- aflplusplus
- aflplusplus_dict
- experiment: 2023-02-08-aflpp
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm
- aflplusplus_at
- experiment: 2023-02-06-aflpp-3
description: "afl++ cmplog experiment."
fuzzers:
- aflplusplus
- aflplusplus_99
- experiment: 2023-02-06-aflpp-2
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm_less2
- aflplusplus_at_cm_less
- experiment: 2023-02-06-aflpp
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm
- aflplusplus_at_cm_less
- experiment: 2023-02-05-aflpp
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm
- aflplusplus_at_cm_air
- experiment: 2023-02-04-aflpp-2
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm
- aflplusplus_at_cm_less
- experiment: 2023-02-04-aflpp-1
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm
- aflplusplus_at_cm_learn
- experiment: 2023-02-02-libafl
description: "libafl grammar comparison."
fuzzers:
- libafl_token_alt
- libafl_token_neu
- experiment: 2023-02-02-aflpp-2
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm
- aflplusplus_at_cm_fav
- experiment: 2023-02-02-aflpp-1
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at_cm
- aflplusplus_at_cm_old
- experiment: 2023-02-01-aflpp
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at
- aflplusplus_at_cm_fav
- experiment: 2023-01-31-aflpp
description: "afl+++ token experiment."
fuzzers:
- aflplusplus_at
- aflplusplus_at_cm_fav
- experiment: 2023-01-29-aflpp
description: "afl+++ token experiment."
fuzzers:
- aflplusplus
- aflplusplus_at
- aflplusplus_at_cm
- aflplusplus_at_cm_fav
- aflplusplus_at_cm_old
- experiment: 2023-01-28-aflpp
description: "afl++ vs llvm native instrumentation."
fuzzers:
- aflplusplus_at
- aflplusplus_at_llvm
- experiment: 2023-01-27-aflpp
description: "afl+++ token experiment."
fuzzers:
- aflplusplus
- aflplusplus_at
- aflplusplus_at_cm
- aflplusplus_at_cm_fav
- aflplusplus_at_cm_old
- experiment: 2023-01-27-test-request
description: "Test if the new system can run experiments by online request."
fuzzers:
- aflplusplus
- centipede
- honggfuzz
- libfuzzer
- experiment: 2023-01-25-libafl
description: "libafl grammar comparison"
fuzzers:
- libafl
- libafl_text
- libafl_token_alt
- libafl_token_neu
- experiment: 2023-01-23-3-aflpp
description: "afl++ weighting variants."
fuzzers:
- aflplusplus_cmplog_exp
- aflplusplus_unfuzzed
- aflplusplus_faved
- experiment: 2023-01-23-2-aflpp
description: "afl++ cmplog variants."
fuzzers:
- aflplusplus_cmplog
- aflplusplus_cmplog_exp
- aflplusplus_cmplog_exp1
- experiment: 2023-01-23-aflpp
description: "afl++ cmplog variants."
fuzzers:
- aflplusplus_cmplog
- aflplusplus_cmplog_exp
- aflplusplus_cmplog_exp1
- experiment: 2023-01-12-aflpp
description: "afl++ tokens + libafl test."
fuzzers:
- aflplusplus_tokens_only
- aflplusplus_tokens
- aflplusplus
- experiment: 2023-01-05-libafl
description: "Test the LibAFL forkserver"
type: bug
fuzzers:
- aflplusplus
- entropic
- libfuzzer
- honggfuzz
- libafl
- libafl_forkserver
- experiment: 2023-01-10-aflpp
description: "Test if the previous aflpp build failure is flaky."
fuzzers:
- aflplusplus_tokens
- aflplusplus
trials: 2
max_total_time: 910
- experiment: 2023-01-05-aflpp
description: "aflpp token test"
fuzzers:
- aflplusplus_tokens
- aflplusplus
- experiment: 2023-01-03-aflpp
description: "aflpp token test"
fuzzers:
- aflplusplus_tokens
- aflplusplus
- afl
- eclipser
- honggfuzz
- libafl
type: bug
- experiment: 2022-12-15-bug-based
description: "Test running core fuzzers on 5 new bug-based benchmarks."
fuzzers:
- afl
- aflfast
- aflplusplus
- aflsmart
- centipede
- eclipser
- fairfuzz
- honggfuzz
- libafl
- libfuzzer
- mopt
type: bug
benchmarks:
- arrow_parquet-arrow-fuzz
- aspell_aspell_fuzzer
- ffmpeg_ffmpeg_demuxer_fuzzer
- file_magic_fuzzer
- grok_grk_decompress_fuzzer
- experiment: 2022-12-05-rerun-c
description: "Wingfuzz coverage experiment (compare against core fuzzers)"
fuzzers:
- afl
- aflfast
- aflplusplus
- aflsmart
- entropic
- eclipser
- fairfuzz
- honggfuzz
- lafintel
- libfuzzer
- mopt
- wingfuzz
- experiment: 2022-12-05-rerun-c
description: "Wingfuzz coverage experiment (compare against core fuzzers)"
fuzzers:
- afl
- aflfast
- aflplusplus
- aflsmart
- entropic
- eclipser
- fairfuzz
- honggfuzz
- lafintel
- libfuzzer
- mopt
- wingfuzz
- experiment: 2022-12-05-aflpp-cmplog-c
description: "afl++ cmplog enhancements"
fuzzers:
- aflplusplus_cmplog
- aflplusplus_cmplog_r
- experiment: 2022-12-01-um-c
description: "Try out um prioritize 75 and random again"
fuzzers:
- aflplusplus_um_random
- aflplusplus_um_prioritize_75
- experiment: 2022-12-05-rerun-b
description: "Wingfuzz coverage experiment (compare against core fuzzers)"
fuzzers:
- afl
- aflfast
- aflplusplus
- aflsmart
- entropic
- eclipser
- fairfuzz
- honggfuzz
- lafintel
- libfuzzer
- mopt
- wingfuzz
- experiment: 2022-12-05-aflpp-cmplog-b
description: "afl++ cmplog enhancements"
fuzzers:
- aflplusplus_cmplog
- aflplusplus_cmplog_r
- experiment: 2022-12-01-um-b
description: "Try out um prioritize 75 and random again"
fuzzers:
- aflplusplus_um_random
- aflplusplus_um_prioritize_75
- experiment: 2022-12-05-rerun
description: "Wingfuzz coverage experiment (compare against core fuzzers)"
fuzzers:
- afl
- aflfast
- aflplusplus
- aflsmart
- entropic
- eclipser
- fairfuzz
- honggfuzz
- lafintel
- libfuzzer
- mopt
- wingfuzz
- experiment: 2022-12-05-aflpp-cmplog
description: "afl++ cmplog enhancements"
fuzzers:
- aflplusplus_cmplog
- aflplusplus_cmplog_r
- experiment: 2022-12-01-um
description: "Try out um prioritize 75 and random again"
fuzzers:
- aflplusplus_um_random
- aflplusplus_um_prioritize_75
- experiment: 2022-12-01-muttfuzz
description: "Try out muttfuzz and compare against afl"
fuzzers:
- aflplusplus
- aflplusplus_muttfuzz
- experiment: 2022-11-23-aflpp-cmplog
description: "afl++ cmplog enhancements"
fuzzers:
- aflplusplus_cmplog
- aflplusplus_cmplog_r
- aflplusplus_cmplog_1587
- aflplusplus_cmplog_1585
- experiment: 2022-11-18-um
description: "Try out um prioritize 75 and random again"
fuzzers:
- aflplusplus_um_random
- aflplusplus_um_prioritize_75
- experiment: 2022-11-18-muttfuzz
description: "Try out muttfuzz and compare against afl"
fuzzers:
- aflplusplus
- aflplusplus_muttfuzz
- experiment: 2022-11-22-aflpp-cmplog
description: "afl++ cmplog enhancements"
fuzzers:
- aflplusplus_cmplog
- aflplusplus_cmplog_r
- aflplusplus_cmplog_1587
- aflplusplus_cmplog_1585
- experiment: 2022-11-19-update-libfuzzer
description: "Compare and consider replacing Entropic with Centipede"
fuzzers:
- libfuzzer
- entropic
- centipede
- experiment: 2022-11-12-muttfuzz
description: "Try out muttfuzz and compare against afl"
fuzzers:
- aflplusplus
- aflplusplus_muttfuzz
- experiment: 2022-11-12-um-prioritize
description: "Try out um prioritize again"
fuzzers:
- aflplusplus
- aflplusplus_um_prioritize
- experiment: 2022-11-11-muttfuzz
description: "Try out muttfuzz and compare against afl"
fuzzers:
- aflplusplus
- aflplusplus_muttfuzz
- experiment: 2022-11-11-um-prioritize
description: "Try out um prioritize again"
fuzzers:
- aflplusplus
- aflplusplus_um_prioritize
- experiment: 2022-11-06-muttfuzz
description: "Try out muttfuzz and compare against afl"
fuzzers:
- aflplusplus
- aflplusplus_muttfuzz
- experiment: 2022-11-06-um-prioritize
description: "Try out um prioritize again"
fuzzers:
- aflplusplus
- aflplusplus_um_prioritize
- experiment: 2022-10-31-update-libfuzzer-2
description: "Compare and consider replacing Entropic with Centipede"
fuzzers:
- libfuzzer
- entropic
- centipede
- experiment: 2022-11-06-muttfuzz
description: "Try out muttfuzz and compare against afl"
fuzzers:
- aflplusplus
- aflplusplus_muttfuzz
- experiment: 2022-11-06-um-prioritize
description: "Try out um prioritize again"
fuzzers:
- aflplusplus
- aflplusplus_um_prioritize
- experiment: 2022-10-31-update-libfuzzer-2
description: "Compare and consider replacing Entropic with Centipede"
fuzzers:
- libfuzzer
- entropic
- centipede
- experiment: 2022-10-19-um-full
description: "Add parallel experiments and libfuzzer ones too"
fuzzers:
- aflplusplus_um_parallel
- honggfuzz_um_parallel
- libfuzzer
- libfuzzer_um_random
- libfuzzer_um_random_75
- libfuzzer_um_parallel
- libfuzzer_um_prioritize
- libfuzzer_um_prioritize_75
- experiment: 2022-10-17-update-libfuzzer
description: "Compare and consider replacing Entropic with Centipede"
fuzzers:
- libfuzzer
- entropic
- centipede
- experiment: 2022-10-13-um-final-5
description: "UM fuzzer experiment (honggfuzz)"
fuzzers:
- honggfuzz_um_prioritize_75
- honggfuzz_um_prioritize
- experiment: 2022-10-13-um-final-4
description: "UM fuzzer experiment (honggfuzz)"
fuzzers:
- honggfuzz_um_random_75
- honggfuzz_um_random
- experiment: 2022-10-13-um-final-3
description: "UM fuzzer experiment (aflplusplus/honggfuzz)"
fuzzers:
- aflplusplus_um_prioritize_75
- honggfuzz
- experiment: 2022-10-13-um-final-2
description: "UM fuzzer experiment (aflplusplus)"
fuzzers:
- aflplusplus_um_random_75
- aflplusplus_um_prioritize
- experiment: 2022-10-13-um-final-1
description: "UM fuzzer experiment (aflplusplus)"
fuzzers:
- aflplusplus
- aflplusplus_um_random
- experiment: 2022-10-12-um-full-10
description: "UM fuzzer experiment (eclipser_um_prioritize, eclipser_um_parallel)"
fuzzers:
- eclipser_um_prioritize
- eclipser_um_parallel
- experiment: 2022-10-12-um-full-9
description: "UM fuzzer experiment (eclipser, eclipser_um_random)"
fuzzers:
- eclipser
- eclipser_um_random
- experiment: 2022-10-12-um-full-8
description: "UM fuzzer experiment (libfuzzer_um_prioritize, libfuzzer_um_parallel)"
fuzzers:
- libfuzzer_um_prioritize
- libfuzzer_um_parallel
- experiment: 2022-10-12-um-full-7
description: "UM fuzzer experiment (libfuzzer, libfuzzer_um_random)"
fuzzers:
- libfuzzer
- libfuzzer_um_random
- experiment: 2022-10-12-um-full-6
description: "UM fuzzer experiment (honggfuzz_um_prioritize, honggfuzz_um_parallel)"
fuzzers:
- honggfuzz_um_prioritize
- honggfuzz_um_parallel
- experiment: 2022-10-12-um-full-5
description: "UM fuzzer experiment (honggfuzz, honggfuzz_um_random)"
fuzzers:
- honggfuzz
- honggfuzz_um_random
- experiment: 2022-10-12-um-full-4
description: "UM fuzzer experiment (aflplusplus_um_prioritize, aflplusplus_um_parallel)"
fuzzers:
- aflplusplus_um_prioritize
- aflplusplus_um_parallel