├── CHANGES.md ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── fencer ├── __init__.py ├── api_spec.py ├── authorized_endpoints.py ├── cli.py ├── sql_injection.py ├── test_case.py └── test_runner.py ├── img └── fencer_demo.gif ├── pyproject.toml └── tests ├── api_spec_test.py ├── orders_api_spec.yaml └── sql_injection_test.py /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/README.md -------------------------------------------------------------------------------- /fencer/__init__.py: -------------------------------------------------------------------------------- 1 | """Fencer - The automated API security testing framework""" 2 | 3 | __version__ = "0.3.6" 4 | -------------------------------------------------------------------------------- /fencer/api_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/fencer/api_spec.py -------------------------------------------------------------------------------- /fencer/authorized_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/fencer/authorized_endpoints.py -------------------------------------------------------------------------------- /fencer/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/fencer/cli.py -------------------------------------------------------------------------------- /fencer/sql_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/fencer/sql_injection.py -------------------------------------------------------------------------------- /fencer/test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/fencer/test_case.py -------------------------------------------------------------------------------- /fencer/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/fencer/test_runner.py -------------------------------------------------------------------------------- /img/fencer_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/img/fencer_demo.gif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/api_spec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/tests/api_spec_test.py -------------------------------------------------------------------------------- /tests/orders_api_spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/tests/orders_api_spec.yaml -------------------------------------------------------------------------------- /tests/sql_injection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abunuwas/fencer/HEAD/tests/sql_injection_test.py --------------------------------------------------------------------------------