├── .gitignore ├── LICENSE ├── README.md ├── patches ├── cgc-coredump.patch ├── exit-double-read.patch └── linux-coredump.patch ├── rebuild.sh ├── setup.py └── shellphish_qemu └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellphish/shellphish-qemu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellphish/shellphish-qemu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellphish/shellphish-qemu/HEAD/README.md -------------------------------------------------------------------------------- /patches/cgc-coredump.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellphish/shellphish-qemu/HEAD/patches/cgc-coredump.patch -------------------------------------------------------------------------------- /patches/exit-double-read.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellphish/shellphish-qemu/HEAD/patches/exit-double-read.patch -------------------------------------------------------------------------------- /patches/linux-coredump.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellphish/shellphish-qemu/HEAD/patches/linux-coredump.patch -------------------------------------------------------------------------------- /rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellphish/shellphish-qemu/HEAD/rebuild.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellphish/shellphish-qemu/HEAD/setup.py -------------------------------------------------------------------------------- /shellphish_qemu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellphish/shellphish-qemu/HEAD/shellphish_qemu/__init__.py --------------------------------------------------------------------------------