├── .coveragerc ├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── README.md ├── conf └── orthrus.conf ├── docs ├── Getting_started.md ├── Workflow.md └── Workflow_abtests.md ├── fuzzer └── __init__.py ├── gdb-orthrus └── gdb_orthrus.py ├── install_deps.sh ├── job ├── __init__.py └── job.py ├── orthrus ├── __init__.py └── commands.py ├── orthrusutils ├── __init__.py └── orthrusutils.py ├── runtime ├── GdbExtractor.py ├── SanitizerReport.py ├── __init__.py └── runtime.py ├── setup.py ├── spectrum ├── __init__.py └── afl_sancov.py ├── tests ├── __init__.py ├── test_early_exit.py ├── test_gdb_orthrus.py ├── test_orthrus_add.py ├── test_orthrus_coverage.py ├── test_orthrus_create.py ├── test_orthrus_destroy.py ├── test_orthrus_remove.py ├── test_orthrus_runtime.py ├── test_orthrus_show.py ├── test_orthrus_spectrum.py ├── test_orthrus_start.py ├── test_orthrus_triage.py └── test_validation.py ├── tool └── orthrus └── triagetool └── __init__.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/README.md -------------------------------------------------------------------------------- /conf/orthrus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/conf/orthrus.conf -------------------------------------------------------------------------------- /docs/Getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/docs/Getting_started.md -------------------------------------------------------------------------------- /docs/Workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/docs/Workflow.md -------------------------------------------------------------------------------- /docs/Workflow_abtests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/docs/Workflow_abtests.md -------------------------------------------------------------------------------- /fuzzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gdb-orthrus/gdb_orthrus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/gdb-orthrus/gdb_orthrus.py -------------------------------------------------------------------------------- /install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/install_deps.sh -------------------------------------------------------------------------------- /job/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /job/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/job/job.py -------------------------------------------------------------------------------- /orthrus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/orthrus/__init__.py -------------------------------------------------------------------------------- /orthrus/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/orthrus/commands.py -------------------------------------------------------------------------------- /orthrusutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orthrusutils/orthrusutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/orthrusutils/orthrusutils.py -------------------------------------------------------------------------------- /runtime/GdbExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/runtime/GdbExtractor.py -------------------------------------------------------------------------------- /runtime/SanitizerReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/runtime/SanitizerReport.py -------------------------------------------------------------------------------- /runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/runtime/runtime.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/setup.py -------------------------------------------------------------------------------- /spectrum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/spectrum/__init__.py -------------------------------------------------------------------------------- /spectrum/afl_sancov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/spectrum/afl_sancov.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_early_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_early_exit.py -------------------------------------------------------------------------------- /tests/test_gdb_orthrus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_gdb_orthrus.py -------------------------------------------------------------------------------- /tests/test_orthrus_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_add.py -------------------------------------------------------------------------------- /tests/test_orthrus_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_coverage.py -------------------------------------------------------------------------------- /tests/test_orthrus_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_create.py -------------------------------------------------------------------------------- /tests/test_orthrus_destroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_destroy.py -------------------------------------------------------------------------------- /tests/test_orthrus_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_remove.py -------------------------------------------------------------------------------- /tests/test_orthrus_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_runtime.py -------------------------------------------------------------------------------- /tests/test_orthrus_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_show.py -------------------------------------------------------------------------------- /tests/test_orthrus_spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_spectrum.py -------------------------------------------------------------------------------- /tests/test_orthrus_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_start.py -------------------------------------------------------------------------------- /tests/test_orthrus_triage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_orthrus_triage.py -------------------------------------------------------------------------------- /tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tests/test_validation.py -------------------------------------------------------------------------------- /tool/orthrus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-pipeline/orthrus/HEAD/tool/orthrus -------------------------------------------------------------------------------- /triagetool/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------