├── .dockerignore ├── .gitignore ├── .gitmodules ├── README.md ├── Repair.py ├── activate ├── app ├── __init__.py ├── analyzer.py ├── builder.py ├── configuration.py ├── constraints.py ├── converter.py ├── definitions.py ├── distance.py ├── emitter.py ├── extractor.py ├── generator.py ├── instrumentor.py ├── klee.py ├── localizer.py ├── logger.py ├── main.py ├── oracle.py ├── parallel.py ├── reader.py ├── solver.py ├── utilities.py ├── values.py └── writer.py ├── benchmark ├── configurations │ ├── binutils │ │ ├── CVE-2017-14745 │ │ │ └── bug.json │ │ ├── CVE-2017-15020 │ │ │ └── bug.json │ │ ├── CVE-2017-15025 │ │ │ └── bug.json │ │ ├── CVE-2017-6965 │ │ │ └── bug.json │ │ └── REDTEAM-CVE-2021-20294 │ │ │ └── bug.json │ ├── coreutils │ │ ├── gnubug-19784 │ │ │ └── bug.json │ │ ├── gnubug-25003 │ │ │ └── bug.json │ │ ├── gnubug-25023 │ │ │ └── bug.json │ │ └── gnubug-26545 │ │ │ └── bug.json │ ├── jasper │ │ ├── CVE-2016-8691 │ │ │ └── bug.json │ │ ├── CVE-2016-9557 │ │ │ └── bug.json │ │ ├── REDTEAM-CVE-2020-27828 │ │ │ └── bug.json │ │ └── REDTEAM-CVE-2021-3272 │ │ │ ├── bug.analysis.json │ │ │ └── bug.repair.json │ ├── libarchive │ │ └── CVE-2016-5844 │ │ │ └── bug.json │ ├── libjpeg │ │ ├── CVE-2012-2806 │ │ │ └── bug.json │ │ ├── CVE-2017-15232 │ │ │ └── bug.json │ │ ├── CVE-2018-14498 │ │ │ └── bug.json │ │ └── CVE-2018-19664 │ │ │ └── bug.json │ ├── libming │ │ ├── CVE-2016-9264 │ │ │ └── bug.json │ │ ├── CVE-2018-8806 │ │ │ └── bug.json │ │ └── CVE-2018-8964 │ │ │ └── bug.json │ ├── libtiff │ │ ├── CVE-2016-10092 │ │ │ └── bug.json │ │ ├── CVE-2016-10094 │ │ │ └── bug.json │ │ ├── CVE-2016-10272 │ │ │ └── bug.json │ │ ├── CVE-2016-3186 │ │ │ └── bug.json │ │ ├── CVE-2016-5314 │ │ │ └── bug.json │ │ ├── CVE-2016-5321 │ │ │ └── bug.json │ │ ├── CVE-2016-9273 │ │ │ └── bug.json │ │ ├── CVE-2016-9532 │ │ │ └── bug.json │ │ ├── CVE-2017-5225 │ │ │ └── bug.json │ │ ├── CVE-2017-7595 │ │ │ └── bug.json │ │ ├── CVE-2017-7599 │ │ │ └── bug.json │ │ ├── CVE-2017-7600 │ │ │ └── bug.json │ │ ├── CVE-2017-7601 │ │ │ └── bug.json │ │ ├── REDTEAM-CVE-2016-10268 │ │ │ ├── bug.json │ │ │ └── exploit │ │ ├── REDTEAM-CVE-2017-17095 │ │ │ ├── bug.json │ │ │ ├── exploit.tiff │ │ │ └── heldout.tiff │ │ ├── REDTEAM-CVE-2018-18557 │ │ │ ├── bug.json │ │ │ └── exploit │ │ ├── REDTEAM-CVE-2022-4645 │ │ │ ├── bug.json │ │ │ ├── exploit │ │ │ └── fix.patch │ │ ├── REDTEAM-CVE-2022-48281 │ │ │ ├── bug.json │ │ │ ├── exploit │ │ │ └── heldout │ │ ├── bugzilla-2611 │ │ │ └── bug.json │ │ └── bugzilla-2633 │ │ │ └── bug.json │ ├── libxml2 │ │ ├── CVE-2012-5134 │ │ │ └── bug.json │ │ ├── CVE-2016-1838 │ │ │ └── bug.json │ │ ├── CVE-2016-1839 │ │ │ └── bug.json │ │ ├── CVE-2017-5969 │ │ │ └── bug.json │ │ ├── REDTEAM-CVE-2016-1833 │ │ │ └── bug.json │ │ ├── REDTEAM-CVE-2021-3516 │ │ │ └── bug.json │ │ └── REDTEAM-CVE-2022-40303 │ │ │ └── bug.json │ └── potrace │ │ └── CVE-2013-7437 │ │ └── bug.json └── setup │ ├── binutils │ ├── CVE-2017-14745 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.bin │ ├── CVE-2017-15020 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.bin │ ├── CVE-2017-15025 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.bin │ ├── CVE-2017-6965 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.bin │ ├── REDTEAM-CVE-2021-20294 │ │ ├── exploit │ │ └── setup.sh │ └── REDTEAM-CVE-2021-43149 │ │ ├── exploit │ │ └── setup.sh │ ├── coreutils │ ├── gnubug-19784 │ │ └── setup.sh │ ├── gnubug-25003 │ │ └── setup.sh │ ├── gnubug-25023 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.txt │ └── gnubug-26545 │ │ ├── setup.sh │ │ └── tests │ │ └── 1.txt │ ├── jasper │ ├── CVE-2016-8691 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.j2k │ ├── CVE-2016-9557 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.j2k │ ├── REDTEAM-CVE-2020-27828 │ │ ├── exploit.pgx │ │ ├── sample.zip │ │ └── setup.sh │ └── REDTEAM-CVE-2021-3272 │ │ ├── exploit │ │ └── setup.sh │ ├── libarchive │ └── CVE-2016-5844 │ │ ├── setup.sh │ │ └── tests │ │ └── 1.iso │ ├── libjpeg │ ├── CVE-2012-2806 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.gif │ ├── CVE-2017-15232 │ │ ├── setup.sh │ │ └── tests │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ ├── CVE-2018-14498 │ │ ├── setup.sh │ │ └── tests │ │ │ ├── 1.bmp │ │ │ ├── 2.bmp │ │ │ ├── 3.bmp │ │ │ ├── 4.bmp │ │ │ └── 5.bmp │ └── CVE-2018-19664 │ │ ├── setup.sh │ │ └── tests │ │ └── 1.jpg │ ├── libming │ ├── CVE-2016-9264 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.swf │ ├── CVE-2018-8806 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.swf │ └── CVE-2018-8964 │ │ ├── setup.sh │ │ └── tests │ │ └── 1.swf │ ├── libtiff │ ├── CVE-2016-10092 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2016-10094 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2016-10272 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2016-3186 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.gif │ ├── CVE-2016-5314 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2016-5321 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2016-9273 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2016-9532 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2017-5225 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2017-7595 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2017-7599 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2017-7600 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── CVE-2017-7601 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ ├── REDTEAM-CVE-2016-10268 │ │ └── setup.sh │ ├── REDTEAM-CVE-2017-17095 │ │ └── setup.sh │ ├── REDTEAM-CVE-2018-18557 │ │ └── setup.sh │ ├── REDTEAM-CVE-2022-4645 │ │ └── setup.sh │ ├── REDTEAM-CVE-2022-48281 │ │ └── setup.sh │ ├── bugzilla-2611 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.tif │ └── bugzilla-2633 │ │ ├── setup.sh │ │ └── tests │ │ └── 1.tif │ ├── libxml2 │ ├── CVE-2012-5134 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.xml │ ├── CVE-2016-1838 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.txt │ ├── CVE-2016-1839 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.txt │ ├── CVE-2017-5969 │ │ ├── setup.sh │ │ └── tests │ │ │ └── 1.xml │ ├── REDTEAM-CVE-2016-1833 │ │ ├── exploit │ │ └── setup.sh │ ├── REDTEAM-CVE-2021-3516 │ │ ├── exploit │ │ └── setup.sh │ └── REDTEAM-CVE-2022-40303 │ │ └── setup.sh │ ├── potrace │ └── CVE-2013-7437 │ │ ├── setup.sh │ │ ├── source.zip │ │ └── tests │ │ └── test_1 │ └── zziplib │ ├── CVE-2017-5974 │ ├── setup.sh │ └── tests │ │ └── 1.zip │ ├── CVE-2017-5975 │ ├── setup.sh │ └── tests │ │ └── 1.zip │ └── CVE-2017-5976 │ ├── setup.sh │ └── tests │ └── 1.zip ├── bin ├── ast-diff └── crepair ├── cerberus.config ├── compiler ├── crepair-cc └── crepair-cxx ├── container ├── docker ├── Dockerfile.builder ├── Dockerfile.crepair ├── Dockerfile.fuzzer ├── Dockerfile.klee ├── Dockerfile.llvm-11 ├── Dockerfile.llvm-6 ├── Dockerfile.z3 └── Makefile ├── fuzzer ├── README.md ├── env.py ├── fuzz ├── fuzz.py ├── iftracer.zip ├── parse_dwarf.py ├── patchloc.py ├── tracer.py └── utils.py ├── harness └── assess.sh ├── jupyter ├── .ipynb_checkpoints │ └── evaluation-checkpoint.ipynb └── evaluation.ipynb ├── lib ├── .gitignore ├── Makefile ├── crepair_ghost.c ├── crepair_ghost.h ├── crepair_proxy.c ├── crepair_runtime.c ├── crepair_runtime.h ├── libjbig.bca ├── libjpeg-8.4.bca ├── liblzma.bca ├── libopenjp2.2.bca ├── libtiff-4.8.bca └── libz.bca ├── orchestrator ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Pipfile ├── Pipfile.lock ├── README.md ├── pyproject.toml ├── setup.cfg ├── setup.py ├── shim.py └── src │ └── crashrepair │ ├── __init__.py │ ├── analyzer.py │ ├── candidate.py │ ├── cli.py │ ├── exceptions.py │ ├── fuzzer.py │ ├── location.py │ ├── report.py │ ├── scenario.py │ ├── shell.py │ ├── stopwatch.py │ └── test.py ├── results └── .gitignore ├── scripts ├── .runner.sh ├── experiments.txt ├── install ├── plot ├── run ├── run-all ├── summarize.py ├── venn.py ├── violin_plot.py └── vulnfix.py ├── source-repair ├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── example │ └── libtiff-cve-2016-5321 │ │ └── localization.json ├── extern │ ├── CMakeLists.txt │ └── dtl │ │ ├── COPYING │ │ └── include │ │ └── dtl │ │ ├── Diff.hpp │ │ ├── Diff3.hpp │ │ ├── Lcs.hpp │ │ ├── Sequence.hpp │ │ ├── Ses.hpp │ │ ├── dtl.hpp │ │ ├── functors.hpp │ │ └── variables.hpp ├── include │ └── crashrepairfix │ │ ├── AstLinkedFixLocation.h │ │ ├── ConstantFinder.h │ │ ├── DescendantChecker.h │ │ ├── DiffGenerator.h │ │ ├── Expr │ │ ├── BinOp.h │ │ ├── ClangToExprConverter.h │ │ ├── Const.h │ │ ├── Expr.h │ │ ├── ExprGenerator.h │ │ ├── ExprToZ3Converter.h │ │ ├── Exprs.h │ │ ├── Mutation │ │ │ ├── Edit.h │ │ │ ├── IdentityMutator.h │ │ │ ├── Mutations.h │ │ │ ├── Mutator.h │ │ │ ├── Mutators.h │ │ │ ├── ReplaceVarRefMutator.h │ │ │ └── SwapBinOpcodeMutator.h │ │ ├── Parser.h │ │ ├── Result.h │ │ ├── UnaryOp.h │ │ └── Var.h │ │ ├── FixLocalization.h │ │ ├── FixLocation.h │ │ ├── FixLocationLinter.h │ │ ├── Mutation.h │ │ ├── ProgramMutator.h │ │ ├── ProgramStates.h │ │ ├── SourceLocation.h │ │ ├── StmtFinder.h │ │ └── Utils.h ├── src │ ├── CMakeLists.txt │ └── crashrepairfix │ │ ├── CMakeLists.txt │ │ ├── DiffGenerator.cpp │ │ ├── Expr │ │ ├── ClangToExprConverter.cpp │ │ ├── ExprGenerator.cpp │ │ ├── ExprToZ3Converter.cpp │ │ └── Parser.cpp │ │ ├── FixLocationLinter.cpp │ │ ├── ProgramMutator.cpp │ │ ├── ProgramStates.cpp │ │ ├── Utils.cpp │ │ ├── crashrepairfix.cpp │ │ ├── crashrepairlint.cpp │ │ └── crashrepairparse.cpp └── test │ ├── CMakeLists.txt │ ├── integration │ ├── localization.json │ ├── test.cpp │ └── test.sh │ └── parser_test.cpp └── tests ├── .gitignore ├── bug-types ├── assertion-error │ └── file-input-divisor │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c ├── buffer-overflow │ ├── asan-hook │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── datatype-overflow │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── dynamic-array │ │ ├── bug.json │ │ ├── exploit │ │ ├── localization.json │ │ ├── mutations.json │ │ ├── repair.conf │ │ ├── repair.sh │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── dynamic-iterator │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── fixed-double-array │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── fixed-single-array │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── fixed-triple-array │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── malloc │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── pointer-arithmetic │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── pointer-increment │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── pointer │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── static-global-array │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ └── static-local-array │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c ├── cast-overflow │ └── float-to-int │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c ├── div-zero │ ├── arithmetic-divisor │ │ ├── bug.json │ │ ├── exploit │ │ ├── localization.json │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── constant-divisor │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── file-input-divisor │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── floating-point-divisor │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── if-condition │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── macro │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── multiplication-divisor │ │ ├── bug.json │ │ ├── build │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── struct-field │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ └── user-input-divisor │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c ├── memory-overflow │ ├── memcpy-param-overlap │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── memcpy │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── memmove │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ └── memset │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c ├── multiplication-overflow │ ├── multi-expression │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── two-variable │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ └── variable-and-constant │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c ├── null-pointer │ ├── null-symbol │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── pointer-arithmetic │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ ├── struct-field │ │ ├── bug.json │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ └── zero-value │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c ├── shift-overflow │ ├── shift-left │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ └── shift-right │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c ├── type-overflow │ ├── addition │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── test.c │ └── increment │ │ ├── bug.json │ │ ├── exploit │ │ ├── repair.conf │ │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c └── type-underflow │ ├── decrement │ ├── bug.json │ ├── exploit │ ├── repair.conf │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test.c │ └── subtraction │ ├── bug.json │ ├── exploit │ ├── repair.conf │ └── src │ ├── .gitignore │ ├── Makefile │ └── test.c ├── program-features ├── infinite-for-loop │ ├── bug.json │ ├── exploit │ └── src │ │ ├── Makefile │ │ └── test.c └── switch-case │ ├── bug.json │ ├── exploit │ └── src │ ├── Makefile │ └── test.c └── run_test.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/README.md -------------------------------------------------------------------------------- /Repair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/Repair.py -------------------------------------------------------------------------------- /activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/activate -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/analyzer.py -------------------------------------------------------------------------------- /app/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/builder.py -------------------------------------------------------------------------------- /app/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/configuration.py -------------------------------------------------------------------------------- /app/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/constraints.py -------------------------------------------------------------------------------- /app/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/converter.py -------------------------------------------------------------------------------- /app/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/definitions.py -------------------------------------------------------------------------------- /app/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/distance.py -------------------------------------------------------------------------------- /app/emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/emitter.py -------------------------------------------------------------------------------- /app/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/extractor.py -------------------------------------------------------------------------------- /app/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/generator.py -------------------------------------------------------------------------------- /app/instrumentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/instrumentor.py -------------------------------------------------------------------------------- /app/klee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/klee.py -------------------------------------------------------------------------------- /app/localizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/localizer.py -------------------------------------------------------------------------------- /app/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/logger.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/main.py -------------------------------------------------------------------------------- /app/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/oracle.py -------------------------------------------------------------------------------- /app/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/parallel.py -------------------------------------------------------------------------------- /app/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/reader.py -------------------------------------------------------------------------------- /app/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/solver.py -------------------------------------------------------------------------------- /app/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/utilities.py -------------------------------------------------------------------------------- /app/values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/values.py -------------------------------------------------------------------------------- /app/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/app/writer.py -------------------------------------------------------------------------------- /benchmark/configurations/binutils/CVE-2017-14745/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/binutils/CVE-2017-14745/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/binutils/CVE-2017-15020/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/binutils/CVE-2017-15020/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/binutils/CVE-2017-15025/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/binutils/CVE-2017-15025/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/binutils/CVE-2017-6965/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/binutils/CVE-2017-6965/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/binutils/REDTEAM-CVE-2021-20294/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/binutils/REDTEAM-CVE-2021-20294/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/coreutils/gnubug-19784/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/coreutils/gnubug-19784/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/coreutils/gnubug-25003/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/coreutils/gnubug-25003/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/coreutils/gnubug-25023/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/coreutils/gnubug-25023/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/coreutils/gnubug-26545/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/coreutils/gnubug-26545/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/jasper/CVE-2016-8691/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/jasper/CVE-2016-8691/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/jasper/CVE-2016-9557/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/jasper/CVE-2016-9557/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/jasper/REDTEAM-CVE-2020-27828/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/jasper/REDTEAM-CVE-2020-27828/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/jasper/REDTEAM-CVE-2021-3272/bug.analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/jasper/REDTEAM-CVE-2021-3272/bug.analysis.json -------------------------------------------------------------------------------- /benchmark/configurations/jasper/REDTEAM-CVE-2021-3272/bug.repair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/jasper/REDTEAM-CVE-2021-3272/bug.repair.json -------------------------------------------------------------------------------- /benchmark/configurations/libarchive/CVE-2016-5844/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libarchive/CVE-2016-5844/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libjpeg/CVE-2012-2806/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libjpeg/CVE-2012-2806/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libjpeg/CVE-2017-15232/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libjpeg/CVE-2017-15232/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libjpeg/CVE-2018-14498/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libjpeg/CVE-2018-14498/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libjpeg/CVE-2018-19664/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libjpeg/CVE-2018-19664/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libming/CVE-2016-9264/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libming/CVE-2016-9264/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libming/CVE-2018-8806/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libming/CVE-2018-8806/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libming/CVE-2018-8964/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libming/CVE-2018-8964/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2016-10092/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2016-10092/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2016-10094/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2016-10094/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2016-10272/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2016-10272/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2016-3186/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2016-3186/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2016-5314/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2016-5314/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2016-5321/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2016-5321/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2016-9273/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2016-9273/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2016-9532/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2016-9532/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2017-5225/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2017-5225/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2017-7595/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2017-7595/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2017-7599/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2017-7599/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2017-7600/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2017-7600/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/CVE-2017-7601/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/CVE-2017-7601/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2016-10268/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2016-10268/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2016-10268/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2016-10268/exploit -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2017-17095/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2017-17095/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2017-17095/exploit.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2017-17095/exploit.tiff -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2017-17095/heldout.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2017-17095/heldout.tiff -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2018-18557/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2018-18557/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2018-18557/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2018-18557/exploit -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2022-4645/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2022-4645/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2022-4645/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2022-4645/exploit -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2022-4645/fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2022-4645/fix.patch -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2022-48281/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2022-48281/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2022-48281/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2022-48281/exploit -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/REDTEAM-CVE-2022-48281/heldout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/REDTEAM-CVE-2022-48281/heldout -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/bugzilla-2611/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/bugzilla-2611/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libtiff/bugzilla-2633/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libtiff/bugzilla-2633/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libxml2/CVE-2012-5134/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libxml2/CVE-2012-5134/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libxml2/CVE-2016-1838/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libxml2/CVE-2016-1838/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libxml2/CVE-2016-1839/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libxml2/CVE-2016-1839/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libxml2/CVE-2017-5969/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libxml2/CVE-2017-5969/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libxml2/REDTEAM-CVE-2016-1833/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libxml2/REDTEAM-CVE-2016-1833/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libxml2/REDTEAM-CVE-2021-3516/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libxml2/REDTEAM-CVE-2021-3516/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/libxml2/REDTEAM-CVE-2022-40303/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/libxml2/REDTEAM-CVE-2022-40303/bug.json -------------------------------------------------------------------------------- /benchmark/configurations/potrace/CVE-2013-7437/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/configurations/potrace/CVE-2013-7437/bug.json -------------------------------------------------------------------------------- /benchmark/setup/binutils/CVE-2017-14745/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/CVE-2017-14745/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/binutils/CVE-2017-14745/tests/1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/CVE-2017-14745/tests/1.bin -------------------------------------------------------------------------------- /benchmark/setup/binutils/CVE-2017-15020/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/CVE-2017-15020/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/binutils/CVE-2017-15020/tests/1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/CVE-2017-15020/tests/1.bin -------------------------------------------------------------------------------- /benchmark/setup/binutils/CVE-2017-15025/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/CVE-2017-15025/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/binutils/CVE-2017-15025/tests/1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/CVE-2017-15025/tests/1.bin -------------------------------------------------------------------------------- /benchmark/setup/binutils/CVE-2017-6965/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/CVE-2017-6965/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/binutils/CVE-2017-6965/tests/1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/CVE-2017-6965/tests/1.bin -------------------------------------------------------------------------------- /benchmark/setup/binutils/REDTEAM-CVE-2021-20294/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/REDTEAM-CVE-2021-20294/exploit -------------------------------------------------------------------------------- /benchmark/setup/binutils/REDTEAM-CVE-2021-20294/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/REDTEAM-CVE-2021-20294/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/binutils/REDTEAM-CVE-2021-43149/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/REDTEAM-CVE-2021-43149/exploit -------------------------------------------------------------------------------- /benchmark/setup/binutils/REDTEAM-CVE-2021-43149/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/binutils/REDTEAM-CVE-2021-43149/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/coreutils/gnubug-19784/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/coreutils/gnubug-19784/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/coreutils/gnubug-25003/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/coreutils/gnubug-25003/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/coreutils/gnubug-25023/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/coreutils/gnubug-25023/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/coreutils/gnubug-25023/tests/1.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /benchmark/setup/coreutils/gnubug-26545/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/coreutils/gnubug-26545/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/coreutils/gnubug-26545/tests/1.txt: -------------------------------------------------------------------------------- 1 | SOme TEXT 2 | Goes HERE 3 | Just to TEST -------------------------------------------------------------------------------- /benchmark/setup/jasper/CVE-2016-8691/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/jasper/CVE-2016-8691/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/jasper/CVE-2016-8691/tests/1.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/jasper/CVE-2016-8691/tests/1.j2k -------------------------------------------------------------------------------- /benchmark/setup/jasper/CVE-2016-9557/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/jasper/CVE-2016-9557/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/jasper/CVE-2016-9557/tests/1.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/jasper/CVE-2016-9557/tests/1.j2k -------------------------------------------------------------------------------- /benchmark/setup/jasper/REDTEAM-CVE-2020-27828/exploit.pgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/jasper/REDTEAM-CVE-2020-27828/exploit.pgx -------------------------------------------------------------------------------- /benchmark/setup/jasper/REDTEAM-CVE-2020-27828/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/jasper/REDTEAM-CVE-2020-27828/sample.zip -------------------------------------------------------------------------------- /benchmark/setup/jasper/REDTEAM-CVE-2020-27828/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/jasper/REDTEAM-CVE-2020-27828/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/jasper/REDTEAM-CVE-2021-3272/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/jasper/REDTEAM-CVE-2021-3272/exploit -------------------------------------------------------------------------------- /benchmark/setup/jasper/REDTEAM-CVE-2021-3272/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/jasper/REDTEAM-CVE-2021-3272/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libarchive/CVE-2016-5844/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libarchive/CVE-2016-5844/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libarchive/CVE-2016-5844/tests/1.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libarchive/CVE-2016-5844/tests/1.iso -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2012-2806/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2012-2806/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2012-2806/tests/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2012-2806/tests/1.gif -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2017-15232/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2017-15232/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2017-15232/tests/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2017-15232/tests/1.jpg -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2017-15232/tests/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2017-15232/tests/2.jpg -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2018-14498/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2018-14498/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2018-14498/tests/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2018-14498/tests/1.bmp -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2018-14498/tests/2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2018-14498/tests/2.bmp -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2018-14498/tests/3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2018-14498/tests/3.bmp -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2018-14498/tests/4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2018-14498/tests/4.bmp -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2018-14498/tests/5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2018-14498/tests/5.bmp -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2018-19664/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2018-19664/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libjpeg/CVE-2018-19664/tests/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libjpeg/CVE-2018-19664/tests/1.jpg -------------------------------------------------------------------------------- /benchmark/setup/libming/CVE-2016-9264/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libming/CVE-2016-9264/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libming/CVE-2016-9264/tests/1.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libming/CVE-2016-9264/tests/1.swf -------------------------------------------------------------------------------- /benchmark/setup/libming/CVE-2018-8806/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libming/CVE-2018-8806/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libming/CVE-2018-8806/tests/1.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libming/CVE-2018-8806/tests/1.swf -------------------------------------------------------------------------------- /benchmark/setup/libming/CVE-2018-8964/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libming/CVE-2018-8964/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libming/CVE-2018-8964/tests/1.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libming/CVE-2018-8964/tests/1.swf -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-10092/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-10092/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-10092/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-10092/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-10094/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-10094/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-10094/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-10094/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-10272/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-10272/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-10272/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-10272/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-3186/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-3186/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-3186/tests/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-3186/tests/1.gif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-5314/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-5314/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-5314/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-5314/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-5321/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-5321/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-5321/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-5321/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-9273/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-9273/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-9273/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-9273/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-9532/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-9532/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2016-9532/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2016-9532/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-5225/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-5225/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-5225/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-5225/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-7595/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-7595/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-7595/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-7595/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-7599/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-7599/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-7599/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-7599/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-7600/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-7600/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-7600/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-7600/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-7601/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-7601/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/CVE-2017-7601/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/CVE-2017-7601/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/REDTEAM-CVE-2016-10268/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/REDTEAM-CVE-2016-10268/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/REDTEAM-CVE-2017-17095/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/REDTEAM-CVE-2017-17095/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/REDTEAM-CVE-2018-18557/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/REDTEAM-CVE-2018-18557/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/REDTEAM-CVE-2022-4645/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/REDTEAM-CVE-2022-4645/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/REDTEAM-CVE-2022-48281/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/REDTEAM-CVE-2022-48281/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/bugzilla-2611/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/bugzilla-2611/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/bugzilla-2611/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/bugzilla-2611/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libtiff/bugzilla-2633/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/bugzilla-2633/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libtiff/bugzilla-2633/tests/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libtiff/bugzilla-2633/tests/1.tif -------------------------------------------------------------------------------- /benchmark/setup/libxml2/CVE-2012-5134/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/CVE-2012-5134/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libxml2/CVE-2012-5134/tests/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/CVE-2012-5134/tests/1.xml -------------------------------------------------------------------------------- /benchmark/setup/libxml2/CVE-2016-1838/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/CVE-2016-1838/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libxml2/CVE-2016-1838/tests/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/CVE-2016-1838/tests/1.txt -------------------------------------------------------------------------------- /benchmark/setup/libxml2/CVE-2016-1839/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/CVE-2016-1839/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libxml2/CVE-2016-1839/tests/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/CVE-2016-1839/tests/1.txt -------------------------------------------------------------------------------- /benchmark/setup/libxml2/CVE-2017-5969/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/CVE-2017-5969/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libxml2/CVE-2017-5969/tests/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/CVE-2017-5969/tests/1.xml -------------------------------------------------------------------------------- /benchmark/setup/libxml2/REDTEAM-CVE-2016-1833/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/REDTEAM-CVE-2016-1833/exploit -------------------------------------------------------------------------------- /benchmark/setup/libxml2/REDTEAM-CVE-2016-1833/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nus-apr/CrashRepair/HEAD/benchmark/setup/libxml2/REDTEAM-CVE-2016-1833/setup.sh -------------------------------------------------------------------------------- /benchmark/setup/libxml2/REDTEAM-CVE-2021-3516/exploit: -------------------------------------------------------------------------------- 1 | <