├── .gitignore ├── README.md ├── examples ├── ghost │ ├── .gitignore │ ├── Common.h │ ├── Makefile │ ├── gh0st_like │ ├── gh0st_like.c │ ├── gh0st_rat_inference.py │ └── ghost_rat_graph.png ├── smtp │ ├── .gitignore │ ├── Makefile │ ├── smtp.c │ ├── smtp.h │ ├── smtp_client │ ├── smtp_client.c │ └── smtp_client_inference.py ├── toy_example │ ├── .gitignore │ ├── Makefile │ ├── toy_client_inference.py │ ├── toy_example │ └── toy_example.c └── toy_example_async │ ├── .gitignore │ ├── Makefile │ ├── toy_client_async_inference.py │ ├── toy_example_async │ └── toy_example_async.c ├── paper.pdf ├── pise ├── __init__.py ├── cache.py ├── connection.py ├── entities.py ├── hooks.py ├── server.py ├── stats.py ├── sym_ex_helpers.py └── sym_execution.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/README.md -------------------------------------------------------------------------------- /examples/ghost/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ghost/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/ghost/Common.h -------------------------------------------------------------------------------- /examples/ghost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/ghost/Makefile -------------------------------------------------------------------------------- /examples/ghost/gh0st_like: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/ghost/gh0st_like -------------------------------------------------------------------------------- /examples/ghost/gh0st_like.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/ghost/gh0st_like.c -------------------------------------------------------------------------------- /examples/ghost/gh0st_rat_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/ghost/gh0st_rat_inference.py -------------------------------------------------------------------------------- /examples/ghost/ghost_rat_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/ghost/ghost_rat_graph.png -------------------------------------------------------------------------------- /examples/smtp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/smtp/.gitignore -------------------------------------------------------------------------------- /examples/smtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/smtp/Makefile -------------------------------------------------------------------------------- /examples/smtp/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/smtp/smtp.c -------------------------------------------------------------------------------- /examples/smtp/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/smtp/smtp.h -------------------------------------------------------------------------------- /examples/smtp/smtp_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/smtp/smtp_client -------------------------------------------------------------------------------- /examples/smtp/smtp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/smtp/smtp_client.c -------------------------------------------------------------------------------- /examples/smtp/smtp_client_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/smtp/smtp_client_inference.py -------------------------------------------------------------------------------- /examples/toy_example/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/toy_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/toy_example/Makefile -------------------------------------------------------------------------------- /examples/toy_example/toy_client_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/toy_example/toy_client_inference.py -------------------------------------------------------------------------------- /examples/toy_example/toy_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/toy_example/toy_example -------------------------------------------------------------------------------- /examples/toy_example/toy_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/toy_example/toy_example.c -------------------------------------------------------------------------------- /examples/toy_example_async/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/toy_example_async/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/toy_example_async/Makefile -------------------------------------------------------------------------------- /examples/toy_example_async/toy_client_async_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/toy_example_async/toy_client_async_inference.py -------------------------------------------------------------------------------- /examples/toy_example_async/toy_example_async: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/toy_example_async/toy_example_async -------------------------------------------------------------------------------- /examples/toy_example_async/toy_example_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/examples/toy_example_async/toy_example_async.c -------------------------------------------------------------------------------- /paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/paper.pdf -------------------------------------------------------------------------------- /pise/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pise/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/pise/cache.py -------------------------------------------------------------------------------- /pise/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/pise/connection.py -------------------------------------------------------------------------------- /pise/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/pise/entities.py -------------------------------------------------------------------------------- /pise/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/pise/hooks.py -------------------------------------------------------------------------------- /pise/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/pise/server.py -------------------------------------------------------------------------------- /pise/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/pise/stats.py -------------------------------------------------------------------------------- /pise/sym_ex_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/pise/sym_ex_helpers.py -------------------------------------------------------------------------------- /pise/sym_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ron4548/PISEServer/HEAD/pise/sym_execution.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | angr==9.2.11 --------------------------------------------------------------------------------