├── .editorconfig ├── .github └── workflows │ ├── build.yml │ ├── deploy-gh-pages.yml │ ├── deploy-wiki.yml │ ├── taxonomy-manual.yml │ └── taxonomy.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.rst ├── README.rst.template ├── bugscpp ├── __init__.py ├── bugscpp.py ├── command │ └── __init__.py ├── config │ ├── __init__.py │ ├── config.py │ └── env.py ├── errors │ ├── __init__.py │ ├── argparser.py │ ├── checkout.py │ ├── common │ │ ├── __init__.py │ │ └── exception.py │ ├── docker.py │ ├── internal.py │ └── search.py ├── message │ ├── __init__.py │ └── message.py ├── processor │ ├── __init__.py │ ├── build.py │ ├── checkout.py │ ├── command_list.py │ ├── core │ │ ├── __init__.py │ │ ├── argparser.py │ │ ├── command.py │ │ ├── data.py │ │ ├── docker.py │ │ ├── shell.py │ │ └── validator │ │ │ ├── __init__.py │ │ │ ├── common_command.py │ │ │ └── project_command.py │ ├── help.py │ ├── search.py │ ├── show.py │ └── test.py └── taxonomy │ ├── __init__.py │ ├── berry │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0002-buggy.patch │ │ ├── 0003-buggy.patch │ │ ├── 0004-buggy.patch │ │ └── 0005-buggy.patch │ ├── coreutils │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ └── 0002-common.patch │ ├── cpp_peglib │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ ├── 0001 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0002 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0003 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0004 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0005 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0006 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0007 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0008 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0009 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ └── 0010 │ │ │ └── .dpp │ │ │ └── test_list │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ ├── 0005-buggy.patch │ │ ├── 0006-buggy.patch │ │ ├── 0006-common.patch │ │ ├── 0007-buggy.patch │ │ ├── 0008-buggy.patch │ │ ├── 0009-buggy.patch │ │ └── 0010-buggy.patch │ ├── cppcheck │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0002-buggy.patch │ │ ├── 0003-buggy.patch │ │ ├── 0004-buggy.patch │ │ ├── 0005-buggy.patch │ │ ├── 0006-buggy.patch │ │ ├── 0007-buggy.patch │ │ ├── 0008-buggy.patch │ │ ├── 0009-buggy.patch │ │ ├── 0010-buggy.patch │ │ ├── 0011-buggy.patch │ │ ├── 0012-buggy.patch │ │ ├── 0013-buggy.patch │ │ ├── 0014-buggy.patch │ │ ├── 0015-buggy.patch │ │ ├── 0016-buggy.patch │ │ ├── 0017-buggy.patch │ │ ├── 0018-buggy.patch │ │ ├── 0019-buggy.patch │ │ ├── 0020-buggy.patch │ │ ├── 0021-buggy.patch │ │ ├── 0022-buggy.patch │ │ ├── 0023-buggy.patch │ │ ├── 0024-buggy.patch │ │ ├── 0025-buggy.patch │ │ ├── 0026-buggy.patch │ │ ├── 0027-buggy.patch │ │ ├── 0028-buggy.patch │ │ ├── 0029-buggy.patch │ │ └── 0030-buggy.patch │ ├── dlt_daemon │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ └── 0001 │ │ │ └── .dpp │ │ │ └── poc.txt │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ └── 0001-common.patch │ ├── example │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ └── 0001-buggy.patch │ ├── exiv2 │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ ├── 0001 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0002 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0003 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0004 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0005 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0006 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0007 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0008 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0009 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0010 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0011 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0012 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0013 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0014 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0015 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0016 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0017 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0018 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0019 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ └── 0020 │ │ │ └── .dpp │ │ │ └── test_list │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ ├── 0004-buggy.patch │ │ ├── 0005-buggy.patch │ │ ├── 0006-buggy.patch │ │ ├── 0007-buggy.patch │ │ ├── 0007-common.patch │ │ ├── 0008-buggy.patch │ │ ├── 0008-common.patch │ │ ├── 0009-buggy.patch │ │ ├── 0009-common.patch │ │ ├── 0010-buggy.patch │ │ ├── 0011-buggy.patch │ │ ├── 0011-common.patch │ │ ├── 0012-buggy.patch │ │ ├── 0013-buggy.patch │ │ ├── 0014-buggy.patch │ │ ├── 0014-common.patch │ │ ├── 0015-buggy.patch │ │ ├── 0015-common.patch │ │ ├── 0016-buggy.patch │ │ ├── 0017-buggy.patch │ │ ├── 0017-common.patch │ │ ├── 0018-buggy.patch │ │ ├── 0018-common.patch │ │ ├── 0019-buggy.patch │ │ └── 0020-buggy.patch │ ├── jerryscript │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ ├── 0001 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ ├── 0002 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ ├── 0003 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ ├── 0004 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ ├── 0005 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ ├── 0006 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ ├── 0007 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ ├── 0008 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ ├── 0009 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ ├── 0010 │ │ │ └── .dpp │ │ │ │ ├── build.sh │ │ │ │ ├── run-unittests.py │ │ │ │ ├── test.js │ │ │ │ ├── test_list │ │ │ │ └── util.py │ │ └── 0011 │ │ │ └── .dpp │ │ │ ├── build.sh │ │ │ ├── run-unittests.py │ │ │ ├── test_list │ │ │ ├── util.py │ │ │ └── xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.js │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ ├── 0004-common.patch │ │ ├── 0005-buggy.patch │ │ ├── 0005-common.patch │ │ ├── 0006-buggy.patch │ │ ├── 0006-common.patch │ │ ├── 0007-buggy.patch │ │ ├── 0007-common.patch │ │ ├── 0008-buggy.patch │ │ ├── 0008-common.patch │ │ ├── 0009-buggy.patch │ │ ├── 0009-common.patch │ │ ├── 0010-buggy.patch │ │ ├── 0010-common.patch │ │ ├── 0011-buggy.patch │ │ └── 0011-common.patch │ ├── libchewing │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0002-buggy.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ ├── 0005-buggy.patch │ │ ├── 0006-buggy.patch │ │ ├── 0007-buggy.patch │ │ └── 0008-buggy.patch │ ├── libssh │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ └── 0001-buggy.patch │ ├── libtiff │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ ├── 0001 │ │ │ └── .dpp │ │ │ │ └── CVE-2016-5321.tif │ │ ├── 0002 │ │ │ └── .dpp │ │ │ │ └── crash.gif │ │ ├── 0004 │ │ │ └── .dpp │ │ │ │ └── 00123-libtiff-fpe-JPEGSetupEncode │ │ └── 0005 │ │ │ └── .dpp │ │ │ └── test049 │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ ├── 0004-common.patch │ │ ├── 0005-buggy.patch │ │ └── 0005-common.patch │ ├── libtiff_sanitizer │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ ├── 0001 │ │ │ └── .dpp │ │ │ │ └── 00107-libtiff-heapoverflow-PSDataColorContig │ │ ├── 0002 │ │ │ └── .dpp │ │ │ │ └── 00112-libtiff-heapoverflow-_TIFFmemcpy │ │ ├── 0003 │ │ │ └── .dpp │ │ │ │ └── 00119-libtiff-shift-long-tif_jpeg │ │ └── 0004 │ │ │ └── .dpp │ │ │ └── 00083-libtiff-fpe-OJPEGDecodeRaw │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ └── 0004-common.patch │ ├── libucl │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ ├── 0003-buggy.patch │ │ ├── 0004-buggy.patch │ │ ├── 0005-buggy.patch │ │ └── 0006-buggy.patch │ ├── libxml2 │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ ├── 0001 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0002 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0003 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0004 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0005 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0006 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ └── 0007 │ │ │ └── .dpp │ │ │ └── test_list │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ ├── 0004-common.patch │ │ ├── 0005-buggy.patch │ │ ├── 0005-common.patch │ │ ├── 0006-buggy.patch │ │ ├── 0006-common.patch │ │ ├── 0007-buggy.patch │ │ └── 0007-common.patch │ ├── md4c │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ ├── 0001 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0002 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0003 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0004 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0005 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0006 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0007 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0008 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0009 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ └── 0010 │ │ │ └── .dpp │ │ │ └── test_list │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ ├── 0004-common.patch │ │ ├── 0005-buggy.patch │ │ ├── 0005-common.patch │ │ ├── 0006-buggy.patch │ │ ├── 0006-common.patch │ │ ├── 0007-buggy.patch │ │ ├── 0007-common.patch │ │ ├── 0008-buggy.patch │ │ ├── 0008-common.patch │ │ ├── 0009-buggy.patch │ │ ├── 0009-common.patch │ │ ├── 0010-buggy.patch │ │ └── 0010-common.patch │ ├── ndpi │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ ├── 0001 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0002 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0003 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ └── 0004 │ │ │ └── .dpp │ │ │ └── test_list │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0002-buggy.patch │ │ ├── 0003-buggy.patch │ │ └── 0004-buggy.patch │ ├── openssl │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0002-buggy.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ ├── 0005-buggy.patch │ │ ├── 0006-buggy.patch │ │ ├── 0007-buggy.patch │ │ ├── 0008-buggy.patch │ │ ├── 0009-buggy.patch │ │ ├── 0010-buggy.patch │ │ ├── 0011-buggy.patch │ │ ├── 0012-buggy.patch │ │ ├── 0013-buggy.patch │ │ ├── 0014-buggy.patch │ │ ├── 0014-common.patch │ │ ├── 0015-buggy.patch │ │ ├── 0016-buggy.patch │ │ ├── 0016-common.patch │ │ ├── 0017-buggy.patch │ │ ├── 0018-buggy.patch │ │ ├── 0019-buggy.patch │ │ ├── 0019-common.patch │ │ ├── 0020-buggy.patch │ │ ├── 0021-buggy.patch │ │ ├── 0021-common.patch │ │ ├── 0022-buggy.patch │ │ ├── 0022-common.patch │ │ ├── 0023-buggy.patch │ │ ├── 0024-buggy.patch │ │ ├── 0025-buggy.patch │ │ ├── 0026-buggy.patch │ │ ├── 0026-common.patch │ │ ├── 0027-buggy.patch │ │ └── 0028-buggy.patch │ ├── proj │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0002-buggy.patch │ │ ├── 0003-buggy.patch │ │ ├── 0004-buggy.patch │ │ ├── 0005-buggy.patch │ │ ├── 0006-buggy.patch │ │ ├── 0007-buggy.patch │ │ ├── 0008-buggy.patch │ │ ├── 0009-buggy.patch │ │ ├── 0010-buggy.patch │ │ ├── 0011-buggy.patch │ │ ├── 0012-buggy.patch │ │ ├── 0013-buggy.patch │ │ ├── 0014-buggy.patch │ │ ├── 0015-buggy.patch │ │ ├── 0016-buggy.patch │ │ ├── 0017-buggy.patch │ │ ├── 0018-buggy.patch │ │ ├── 0019-buggy.patch │ │ ├── 0020-buggy.patch │ │ ├── 0021-buggy.patch │ │ ├── 0022-buggy.patch │ │ ├── 0023-buggy.patch │ │ ├── 0023-common.patch │ │ ├── 0024-buggy.patch │ │ ├── 0025-buggy.patch │ │ ├── 0025-common.patch │ │ ├── 0026-buggy.patch │ │ ├── 0026-common.patch │ │ ├── 0027-buggy.patch │ │ └── 0028-buggy.patch │ ├── taxonomy.py │ ├── wget2 │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ └── 0003-common.patch │ ├── wireshark │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ ├── 0004-common.patch │ │ ├── 0005-buggy.patch │ │ ├── 0005-common.patch │ │ ├── 0006-buggy.patch │ │ └── 0006-common.patch │ ├── xbps │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-common.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-common.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-common.patch │ │ ├── 0004-buggy.patch │ │ ├── 0004-common.patch │ │ ├── 0005-buggy.patch │ │ └── 0005-common.patch │ ├── yaml_cpp │ ├── Dockerfile │ ├── __init__.py │ ├── extra │ │ ├── 0001 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0002 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0003 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0004 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0005 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0006 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0007 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0008 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ ├── 0009 │ │ │ └── .dpp │ │ │ │ └── test_list │ │ └── 0010 │ │ │ └── .dpp │ │ │ └── test_list │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0002-buggy.patch │ │ ├── 0003-buggy.patch │ │ ├── 0004-buggy.patch │ │ ├── 0005-buggy.patch │ │ ├── 0006-buggy.patch │ │ ├── 0007-buggy.patch │ │ ├── 0008-buggy.patch │ │ ├── 0009-buggy.patch │ │ ├── 0010-buggy.patch │ │ └── 0010-common.patch │ ├── yara │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ │ ├── 0001-buggy.patch │ │ ├── 0001-split.patch │ │ ├── 0002-buggy.patch │ │ ├── 0002-split.patch │ │ ├── 0003-buggy.patch │ │ ├── 0003-split.patch │ │ ├── 0004-buggy.patch │ │ ├── 0004-split.patch │ │ ├── 0005-buggy.patch │ │ ├── 0005-common.patch │ │ └── 0005-split.patch │ └── zsh │ ├── Dockerfile │ ├── __init__.py │ ├── meta.json │ └── patch │ ├── 0001-buggy.patch │ ├── 0002-buggy.patch │ ├── 0003-buggy.patch │ ├── 0004-buggy.patch │ └── 0005-buggy.patch ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _templates │ ├── autosummary_class.rst │ ├── autosummary_module.rst │ └── package.rst_t │ ├── changelog.rst │ ├── conf.py │ ├── contribute.rst │ ├── faq.rst │ ├── gen_taxonomy.py │ ├── guide.rst │ ├── index.rst │ ├── installation.rst │ └── license.rst ├── pyproject.toml ├── pytest.ini ├── readme_generator.py ├── requirements.txt ├── requirements_dev.txt ├── script ├── enumerate_case.py └── extract_candidate.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── message │ ├── __init__.py │ └── test_message.py ├── processor │ ├── __init__.py │ ├── test_argparse.py │ ├── test_build_command.py │ ├── test_case_expression.py │ ├── test_checkout.py │ ├── test_docker.py │ ├── test_help.py │ ├── test_search.py │ ├── test_show.py │ ├── test_taxonomy.py │ ├── test_test.py │ ├── test_test_command_callback.py │ └── test_vcs.py ├── resource │ ├── corrupted-test.orig.patch │ └── corrupted-test.patch ├── script │ ├── __init__.py │ └── test_readme_generator.py └── taxonomy │ ├── __init__.py │ ├── conftest.py │ └── test_taxonomy.py ├── tox.ini └── wiki_generator.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/.github/workflows/deploy-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-wiki.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/.github/workflows/deploy-wiki.yml -------------------------------------------------------------------------------- /.github/workflows/taxonomy-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/.github/workflows/taxonomy-manual.yml -------------------------------------------------------------------------------- /.github/workflows/taxonomy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/.github/workflows/taxonomy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/README.rst -------------------------------------------------------------------------------- /README.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/README.rst.template -------------------------------------------------------------------------------- /bugscpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/bugscpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/bugscpp.py -------------------------------------------------------------------------------- /bugscpp/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/command/__init__.py -------------------------------------------------------------------------------- /bugscpp/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/config/__init__.py -------------------------------------------------------------------------------- /bugscpp/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/config/config.py -------------------------------------------------------------------------------- /bugscpp/config/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/config/env.py -------------------------------------------------------------------------------- /bugscpp/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/errors/__init__.py -------------------------------------------------------------------------------- /bugscpp/errors/argparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/errors/argparser.py -------------------------------------------------------------------------------- /bugscpp/errors/checkout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/errors/checkout.py -------------------------------------------------------------------------------- /bugscpp/errors/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/errors/common/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/errors/common/exception.py -------------------------------------------------------------------------------- /bugscpp/errors/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/errors/docker.py -------------------------------------------------------------------------------- /bugscpp/errors/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/errors/internal.py -------------------------------------------------------------------------------- /bugscpp/errors/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/errors/search.py -------------------------------------------------------------------------------- /bugscpp/message/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/message/__init__.py -------------------------------------------------------------------------------- /bugscpp/message/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/message/message.py -------------------------------------------------------------------------------- /bugscpp/processor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/processor/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/build.py -------------------------------------------------------------------------------- /bugscpp/processor/checkout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/checkout.py -------------------------------------------------------------------------------- /bugscpp/processor/command_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/command_list.py -------------------------------------------------------------------------------- /bugscpp/processor/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/processor/core/argparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/core/argparser.py -------------------------------------------------------------------------------- /bugscpp/processor/core/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/core/command.py -------------------------------------------------------------------------------- /bugscpp/processor/core/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/core/data.py -------------------------------------------------------------------------------- /bugscpp/processor/core/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/core/docker.py -------------------------------------------------------------------------------- /bugscpp/processor/core/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/core/shell.py -------------------------------------------------------------------------------- /bugscpp/processor/core/validator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/processor/core/validator/common_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/core/validator/common_command.py -------------------------------------------------------------------------------- /bugscpp/processor/core/validator/project_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/core/validator/project_command.py -------------------------------------------------------------------------------- /bugscpp/processor/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/help.py -------------------------------------------------------------------------------- /bugscpp/processor/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/search.py -------------------------------------------------------------------------------- /bugscpp/processor/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/show.py -------------------------------------------------------------------------------- /bugscpp/processor/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/processor/test.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/__init__.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/berry/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/berry/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/berry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/berry/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/berry/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/berry/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/berry/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/berry/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/berry/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/berry/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/berry/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/berry/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/berry/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/berry/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/berry/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/coreutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/coreutils/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/coreutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/coreutils/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/coreutils/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/coreutils/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/coreutils/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/coreutils/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/coreutils/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/coreutils/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/coreutils/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/coreutils/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/coreutils/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0001/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0001/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0002/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0002/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0003/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0003/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0004/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0004/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0005/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0005/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0006/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0006/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0007/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0007/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0008/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0008/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0009/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0009/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/extra/0010/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/extra/0010/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0006-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0006-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0008-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0008-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0009-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0009-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cpp_peglib/patch/0010-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cpp_peglib/patch/0010-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0008-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0008-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0009-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0009-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0010-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0010-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0011-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0011-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0012-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0012-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0013-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0013-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0014-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0014-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0015-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0015-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0016-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0016-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0017-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0017-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0018-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0018-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0019-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0019-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0020-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0020-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0021-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0021-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0022-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0022-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0023-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0023-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0024-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0024-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0025-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0025-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0026-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0026-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0027-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0027-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0028-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0028-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0029-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0029-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/cppcheck/patch/0030-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/cppcheck/patch/0030-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/dlt_daemon/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/dlt_daemon/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/dlt_daemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/dlt_daemon/extra/0001/.dpp/poc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/dlt_daemon/extra/0001/.dpp/poc.txt -------------------------------------------------------------------------------- /bugscpp/taxonomy/dlt_daemon/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/dlt_daemon/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/dlt_daemon/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/dlt_daemon/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/dlt_daemon/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/dlt_daemon/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/example/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/example/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/example/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/example/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/example/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0001/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0001/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0002/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0002/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0003/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0003/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0004/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0004/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0005/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0005/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0006/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0006/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0007/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0007/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0008/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0008/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0009/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0009/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0010/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0010/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0011/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0011/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0012/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0012/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0013/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0013/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0014/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0014/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0015/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0015/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0016/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0016/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0017/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0017/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0018/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0018/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0019/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0019/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/extra/0020/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/extra/0020/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0007-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0007-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0008-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0008-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0008-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0008-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0009-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0009-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0009-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0009-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0010-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0010-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0011-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0011-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0011-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0011-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0012-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0012-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0013-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0013-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0014-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0014-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0014-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0014-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0015-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0015-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0015-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0015-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0016-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0016-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0017-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0017-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0017-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0017-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0018-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0018-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0018-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0018-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0019-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0019-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/exiv2/patch/0020-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/exiv2/patch/0020-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0001/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0001/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0001/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0001/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0001/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0001/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0001/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0001/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0001/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0001/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0002/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0002/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0002/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0002/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0002/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0002/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0002/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0002/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0002/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0002/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0003/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0003/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0003/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0003/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0003/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0003/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0003/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0003/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0003/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0003/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0004/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0004/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0004/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0004/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0004/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0004/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0004/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0004/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0004/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0004/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0005/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0005/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0005/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0005/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0005/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0005/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0005/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0005/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0005/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0005/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0006/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0006/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0006/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0006/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0006/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0006/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0006/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0006/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0006/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0006/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0007/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0007/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0007/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0007/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0007/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0007/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0007/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0007/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0007/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0007/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0008/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0008/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0008/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0008/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0008/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0008/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0008/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0008/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0008/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0008/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0009/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0009/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0009/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0009/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0009/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0009/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0009/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0009/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0009/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0009/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0010/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0010/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0010/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0010/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0010/.dpp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0010/.dpp/test.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0010/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0010/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0010/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0010/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0011/.dpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0011/.dpp/build.sh -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0011/.dpp/run-unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0011/.dpp/run-unittests.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0011/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0011/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0011/.dpp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0011/.dpp/util.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/extra/0011/.dpp/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/extra/0011/.dpp/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.js -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0004-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0004-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0005-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0005-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0006-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0006-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0007-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0007-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0008-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0008-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0008-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0008-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0009-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0009-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0009-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0009-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0010-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0010-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0010-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0010-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0011-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0011-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/jerryscript/patch/0011-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/jerryscript/patch/0011-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libchewing/patch/0008-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libchewing/patch/0008-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libssh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libssh/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/libssh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/libssh/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libssh/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/libssh/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libssh/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/extra/0001/.dpp/CVE-2016-5321.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/extra/0001/.dpp/CVE-2016-5321.tif -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/extra/0002/.dpp/crash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/extra/0002/.dpp/crash.gif -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/extra/0004/.dpp/00123-libtiff-fpe-JPEGSetupEncode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/extra/0004/.dpp/00123-libtiff-fpe-JPEGSetupEncode -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/extra/0005/.dpp/test049: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/extra/0005/.dpp/test049 -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0004-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0004-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff/patch/0005-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff/patch/0005-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/extra/0001/.dpp/00107-libtiff-heapoverflow-PSDataColorContig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/extra/0001/.dpp/00107-libtiff-heapoverflow-PSDataColorContig -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/extra/0002/.dpp/00112-libtiff-heapoverflow-_TIFFmemcpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/extra/0002/.dpp/00112-libtiff-heapoverflow-_TIFFmemcpy -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/extra/0003/.dpp/00119-libtiff-shift-long-tif_jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/extra/0003/.dpp/00119-libtiff-shift-long-tif_jpeg -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/extra/0004/.dpp/00083-libtiff-fpe-OJPEGDecodeRaw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/extra/0004/.dpp/00083-libtiff-fpe-OJPEGDecodeRaw -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libtiff_sanitizer/patch/0004-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libtiff_sanitizer/patch/0004-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libucl/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libucl/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libucl/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libucl/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libucl/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libucl/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libucl/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libucl/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libucl/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libucl/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/extra/0001/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/extra/0001/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/extra/0002/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/extra/0002/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/extra/0003/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/extra/0003/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/extra/0004/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/extra/0004/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/extra/0005/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/extra/0005/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/extra/0006/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/extra/0006/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/extra/0007/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/extra/0007/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0004-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0004-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0005-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0005-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0006-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0006-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/libxml2/patch/0007-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/libxml2/patch/0007-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0001/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0001/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0002/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0002/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0003/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0003/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0004/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0004/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0005/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0005/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0006/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0006/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0007/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0007/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0008/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0008/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0009/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0009/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/extra/0010/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/extra/0010/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0004-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0004-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0005-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0005-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0006-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0006-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0007-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0007-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0008-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0008-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0008-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0008-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0009-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0009-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0009-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0009-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0010-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0010-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/md4c/patch/0010-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/md4c/patch/0010-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/extra/0001/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/extra/0001/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/extra/0002/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/extra/0002/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/extra/0003/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/extra/0003/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/extra/0004/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/extra/0004/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/ndpi/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/ndpi/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0008-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0008-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0009-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0009-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0010-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0010-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0011-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0011-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0012-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0012-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0013-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0013-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0014-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0014-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0014-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0014-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0015-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0015-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0016-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0016-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0016-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0016-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0017-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0017-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0018-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0018-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0019-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0019-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0019-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0019-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0020-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0020-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0021-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0021-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0021-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0021-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0022-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0022-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0022-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0022-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0023-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0023-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0024-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0024-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0025-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0025-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0026-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0026-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0026-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0026-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0027-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0027-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/openssl/patch/0028-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/openssl/patch/0028-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0008-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0008-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0009-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0009-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0010-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0010-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0011-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0011-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0012-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0012-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0013-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0013-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0014-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0014-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0015-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0015-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0016-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0016-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0017-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0017-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0018-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0018-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0019-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0019-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0020-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0020-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0021-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0021-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0022-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0022-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0023-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0023-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0023-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0023-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0024-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0024-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0025-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0025-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0025-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0025-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0026-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0026-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0026-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0026-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0027-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0027-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/proj/patch/0028-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/proj/patch/0028-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/taxonomy.py -------------------------------------------------------------------------------- /bugscpp/taxonomy/wget2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wget2/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/wget2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/wget2/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wget2/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/wget2/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wget2/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wget2/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wget2/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wget2/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wget2/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wget2/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wget2/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wget2/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wget2/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wget2/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wget2/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0004-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0004-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0005-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0005-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/wireshark/patch/0006-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/wireshark/patch/0006-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0001-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0001-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0002-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0002-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0003-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0003-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0004-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0004-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/xbps/patch/0005-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/xbps/patch/0005-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0001/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0001/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0002/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0002/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0003/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0003/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0004/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0004/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0005/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0005/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0006/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0006/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0007/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0007/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0008/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0008/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0009/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0009/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/extra/0010/.dpp/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/extra/0010/.dpp/test_list -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0006-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0006-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0007-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0007-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0008-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0008-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0009-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0009-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0010-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0010-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yaml_cpp/patch/0010-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yaml_cpp/patch/0010-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0001-split.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0001-split.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0002-split.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0002-split.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0003-split.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0003-split.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0004-split.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0004-split.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0005-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0005-common.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0005-common.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/yara/patch/0005-split.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/yara/patch/0005-split.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/zsh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/zsh/Dockerfile -------------------------------------------------------------------------------- /bugscpp/taxonomy/zsh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugscpp/taxonomy/zsh/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/zsh/meta.json -------------------------------------------------------------------------------- /bugscpp/taxonomy/zsh/patch/0001-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/zsh/patch/0001-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/zsh/patch/0002-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/zsh/patch/0002-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/zsh/patch/0003-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/zsh/patch/0003-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/zsh/patch/0004-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/zsh/patch/0004-buggy.patch -------------------------------------------------------------------------------- /bugscpp/taxonomy/zsh/patch/0005-buggy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/bugscpp/taxonomy/zsh/patch/0005-buggy.patch -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_templates/autosummary_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/_templates/autosummary_class.rst -------------------------------------------------------------------------------- /docs/source/_templates/autosummary_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/_templates/autosummary_module.rst -------------------------------------------------------------------------------- /docs/source/_templates/package.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/_templates/package.rst_t -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/contribute.rst -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/gen_taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/gen_taxonomy.py -------------------------------------------------------------------------------- /docs/source/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/guide.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/docs/source/license.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/pytest.ini -------------------------------------------------------------------------------- /readme_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/readme_generator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /script/enumerate_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/script/enumerate_case.py -------------------------------------------------------------------------------- /script/extract_candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/script/extract_candidate.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/message/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/message/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/message/test_message.py -------------------------------------------------------------------------------- /tests/processor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/processor/test_argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_argparse.py -------------------------------------------------------------------------------- /tests/processor/test_build_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_build_command.py -------------------------------------------------------------------------------- /tests/processor/test_case_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_case_expression.py -------------------------------------------------------------------------------- /tests/processor/test_checkout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_checkout.py -------------------------------------------------------------------------------- /tests/processor/test_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_docker.py -------------------------------------------------------------------------------- /tests/processor/test_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_help.py -------------------------------------------------------------------------------- /tests/processor/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_search.py -------------------------------------------------------------------------------- /tests/processor/test_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_show.py -------------------------------------------------------------------------------- /tests/processor/test_taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_taxonomy.py -------------------------------------------------------------------------------- /tests/processor/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_test.py -------------------------------------------------------------------------------- /tests/processor/test_test_command_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_test_command_callback.py -------------------------------------------------------------------------------- /tests/processor/test_vcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/processor/test_vcs.py -------------------------------------------------------------------------------- /tests/resource/corrupted-test.orig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/resource/corrupted-test.orig.patch -------------------------------------------------------------------------------- /tests/resource/corrupted-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/resource/corrupted-test.patch -------------------------------------------------------------------------------- /tests/script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/script/test_readme_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/script/test_readme_generator.py -------------------------------------------------------------------------------- /tests/taxonomy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/taxonomy/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/taxonomy/conftest.py -------------------------------------------------------------------------------- /tests/taxonomy/test_taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tests/taxonomy/test_taxonomy.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/tox.ini -------------------------------------------------------------------------------- /wiki_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suresoft-GLaDOS/bugscpp/HEAD/wiki_generator.py --------------------------------------------------------------------------------