├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── architecture.png ├── exp.py ├── gdbinit.py ├── gdbpwn.py └── src ├── arg.c ├── command.c ├── debug-server.h ├── init.c ├── log.c ├── main.c ├── service.c ├── sig.c └── tracer.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/README.md -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/architecture.png -------------------------------------------------------------------------------- /exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/exp.py -------------------------------------------------------------------------------- /gdbinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/gdbinit.py -------------------------------------------------------------------------------- /gdbpwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/gdbpwn.py -------------------------------------------------------------------------------- /src/arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/src/arg.c -------------------------------------------------------------------------------- /src/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/src/command.c -------------------------------------------------------------------------------- /src/debug-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/src/debug-server.h -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/src/init.c -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/src/log.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/src/main.c -------------------------------------------------------------------------------- /src/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/src/service.c -------------------------------------------------------------------------------- /src/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/src/sig.c -------------------------------------------------------------------------------- /src/tracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ex-Origin/debug-server/HEAD/src/tracer.c --------------------------------------------------------------------------------