├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── example_compressed_native.cpp ├── example_compressed_python.cpp ├── pymodules ├── __init__.py └── example_compressed.py └── python_bridge.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaSecurity/libfuzzer-python-bridge/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaSecurity/libfuzzer-python-bridge/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaSecurity/libfuzzer-python-bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaSecurity/libfuzzer-python-bridge/HEAD/README.md -------------------------------------------------------------------------------- /example_compressed_native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaSecurity/libfuzzer-python-bridge/HEAD/example_compressed_native.cpp -------------------------------------------------------------------------------- /example_compressed_python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaSecurity/libfuzzer-python-bridge/HEAD/example_compressed_python.cpp -------------------------------------------------------------------------------- /pymodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymodules/example_compressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaSecurity/libfuzzer-python-bridge/HEAD/pymodules/example_compressed.py -------------------------------------------------------------------------------- /python_bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaSecurity/libfuzzer-python-bridge/HEAD/python_bridge.cpp --------------------------------------------------------------------------------