├── .gitignore ├── LICENSE ├── PoC ├── PrivilegeEscalation │ ├── CMakeLists.txt │ ├── DriverInterface.h │ ├── DriverTypes.h │ └── main.cpp └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kite03/echoac-poc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kite03/echoac-poc/HEAD/LICENSE -------------------------------------------------------------------------------- /PoC/PrivilegeEscalation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kite03/echoac-poc/HEAD/PoC/PrivilegeEscalation/CMakeLists.txt -------------------------------------------------------------------------------- /PoC/PrivilegeEscalation/DriverInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kite03/echoac-poc/HEAD/PoC/PrivilegeEscalation/DriverInterface.h -------------------------------------------------------------------------------- /PoC/PrivilegeEscalation/DriverTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kite03/echoac-poc/HEAD/PoC/PrivilegeEscalation/DriverTypes.h -------------------------------------------------------------------------------- /PoC/PrivilegeEscalation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kite03/echoac-poc/HEAD/PoC/PrivilegeEscalation/main.cpp -------------------------------------------------------------------------------- /PoC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kite03/echoac-poc/HEAD/PoC/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kite03/echoac-poc/HEAD/README.md --------------------------------------------------------------------------------