├── bin └── bcheck.py ├── bin_check ├── __init__.py ├── backward_slicing.py ├── celery_app.py ├── filter_binary.py ├── function_models.py ├── function_models.pyc └── tracing.py ├── examples ├── medium_format └── upload.cgi ├── readme.md ├── setup.py ├── tests ├── __pycache__ │ └── injection_test.cpython-36-pytest-6.2.5.pyc ├── backward_slicing_test.py └── vulnerability_test.py └── tox.ini /bin/bcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/bin/bcheck.py -------------------------------------------------------------------------------- /bin_check/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin_check/backward_slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/bin_check/backward_slicing.py -------------------------------------------------------------------------------- /bin_check/celery_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/bin_check/celery_app.py -------------------------------------------------------------------------------- /bin_check/filter_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/bin_check/filter_binary.py -------------------------------------------------------------------------------- /bin_check/function_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/bin_check/function_models.py -------------------------------------------------------------------------------- /bin_check/function_models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/bin_check/function_models.pyc -------------------------------------------------------------------------------- /bin_check/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/bin_check/tracing.py -------------------------------------------------------------------------------- /examples/medium_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/examples/medium_format -------------------------------------------------------------------------------- /examples/upload.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/examples/upload.cgi -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/readme.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__pycache__/injection_test.cpython-36-pytest-6.2.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/tests/__pycache__/injection_test.cpython-36-pytest-6.2.5.pyc -------------------------------------------------------------------------------- /tests/backward_slicing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/tests/backward_slicing_test.py -------------------------------------------------------------------------------- /tests/vulnerability_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/tests/vulnerability_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisTheCoolHut/bcheck/HEAD/tox.ini --------------------------------------------------------------------------------