├── .gitattributes ├── .gitignore ├── .gitmodules ├── CLI11.hpp ├── CoerceFunctions.cpp ├── CoerceFunctions.h ├── CoercedPotato.cpp ├── CoercedPotato.sln ├── CoercedPotato.vcxproj ├── CoercedPotato.vcxproj.filters ├── IDL_FILES ├── ms-efsr.idl ├── ms-even.idl ├── ms-par.idl ├── ms-rprn.idl └── ms-srvsvc.idl ├── README.md ├── lib ├── ms-efsr_h.h ├── ms-even_h.h ├── ms-par_h.h ├── ms-rprn_h.h └── ms-srvsvc_h.h ├── poc.png └── rpc_interfaces ├── ms-efsr_c.c ├── ms-even_c.c ├── ms-even_s.c ├── ms-par_c.c ├── ms-par_s.c ├── ms-rprn_c.c ├── ms-rprn_s.c ├── ms-srvsvc_c.c └── ms-srvsvc_s.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/.gitmodules -------------------------------------------------------------------------------- /CLI11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/CLI11.hpp -------------------------------------------------------------------------------- /CoerceFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/CoerceFunctions.cpp -------------------------------------------------------------------------------- /CoerceFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/CoerceFunctions.h -------------------------------------------------------------------------------- /CoercedPotato.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/CoercedPotato.cpp -------------------------------------------------------------------------------- /CoercedPotato.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/CoercedPotato.sln -------------------------------------------------------------------------------- /CoercedPotato.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/CoercedPotato.vcxproj -------------------------------------------------------------------------------- /CoercedPotato.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/CoercedPotato.vcxproj.filters -------------------------------------------------------------------------------- /IDL_FILES/ms-efsr.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/IDL_FILES/ms-efsr.idl -------------------------------------------------------------------------------- /IDL_FILES/ms-even.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/IDL_FILES/ms-even.idl -------------------------------------------------------------------------------- /IDL_FILES/ms-par.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/IDL_FILES/ms-par.idl -------------------------------------------------------------------------------- /IDL_FILES/ms-rprn.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/IDL_FILES/ms-rprn.idl -------------------------------------------------------------------------------- /IDL_FILES/ms-srvsvc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/IDL_FILES/ms-srvsvc.idl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/README.md -------------------------------------------------------------------------------- /lib/ms-efsr_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/lib/ms-efsr_h.h -------------------------------------------------------------------------------- /lib/ms-even_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/lib/ms-even_h.h -------------------------------------------------------------------------------- /lib/ms-par_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/lib/ms-par_h.h -------------------------------------------------------------------------------- /lib/ms-rprn_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/lib/ms-rprn_h.h -------------------------------------------------------------------------------- /lib/ms-srvsvc_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/lib/ms-srvsvc_h.h -------------------------------------------------------------------------------- /poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/poc.png -------------------------------------------------------------------------------- /rpc_interfaces/ms-efsr_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/rpc_interfaces/ms-efsr_c.c -------------------------------------------------------------------------------- /rpc_interfaces/ms-even_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/rpc_interfaces/ms-even_c.c -------------------------------------------------------------------------------- /rpc_interfaces/ms-even_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/rpc_interfaces/ms-even_s.c -------------------------------------------------------------------------------- /rpc_interfaces/ms-par_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/rpc_interfaces/ms-par_c.c -------------------------------------------------------------------------------- /rpc_interfaces/ms-par_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/rpc_interfaces/ms-par_s.c -------------------------------------------------------------------------------- /rpc_interfaces/ms-rprn_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/rpc_interfaces/ms-rprn_c.c -------------------------------------------------------------------------------- /rpc_interfaces/ms-rprn_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/rpc_interfaces/ms-rprn_s.c -------------------------------------------------------------------------------- /rpc_interfaces/ms-srvsvc_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/rpc_interfaces/ms-srvsvc_c.c -------------------------------------------------------------------------------- /rpc_interfaces/ms-srvsvc_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackvens/CoercedPotato/HEAD/rpc_interfaces/ms-srvsvc_s.c --------------------------------------------------------------------------------