├── .gitattributes ├── .gitignore ├── 542875F90F9B47F497B64BA219CACF69 ├── PGCbUtil │ ├── PgCbUtil.c │ ├── PgCbUtil.inf │ ├── PgCbUtil.sln │ ├── PgCbUtil.vcxproj │ └── PgCbUtil.vcxproj.filters ├── PgCtx.h ├── README.md ├── checksum_algo.md ├── crypt_decrypt.md ├── hash_algo.md ├── images │ ├── critical_msr.png │ ├── exec_cb_obj.png │ ├── func_int1.png │ ├── gen_dataregion.png │ ├── imp_table.png │ ├── insert_apc.png │ ├── invfunctab.png │ ├── mistake1.png │ ├── mistake1b.png │ ├── objecttype.png │ ├── page_hash_mismatch.png │ ├── pg_init.png │ ├── seckernelintcheck_fct.png │ └── type_pool.png └── pg_entry_dump.py ├── AfdTdxCallback └── README.md ├── EnlightenmentState ├── EnlightenmentState.sln ├── EnlightenmentState │ ├── EnlightenmentState.c │ ├── EnlightenmentState.inf │ ├── EnlightenmentState.vcxproj │ └── EnlightenmentState.vcxproj.filters └── README.md ├── IoExternalDmaUnblock ├── README.md ├── ida_run.py └── ntpowerinfo.py ├── Loader ├── Loader.c ├── Loader.sln ├── Loader.vcxproj └── Loader.vcxproj.filters ├── Phase1InitComplete ├── Phase1InitComplete.sln ├── Phase1InitComplete │ ├── Phase1InitComplete.c │ ├── Phase1InitComplete.inf │ ├── Phase1InitComplete.vcxproj │ └── Phase1InitComplete.vcxproj.filters ├── README.md └── images │ ├── CallExNotifyCallback.png │ └── LoaderParamBlock.png ├── README.md ├── TcpConnectionCallbackTemp ├── README.md ├── TcpConnectionCallbackTemp.sln └── TcpConnectionCallbackTemp │ ├── TcpConnectionCallbackTemp.c │ ├── TcpConnectionCallbackTemp.inf │ ├── TcpConnectionCallbackTemp.vcxproj │ └── TcpConnectionCallbackTemp.vcxproj.filters ├── WdEbNotificationCallback ├── README.md └── images │ ├── CallExNotifyCallback.png │ ├── MpEbUnload.png │ └── WdFilterCopyData.png ├── WdNriNotificationCallback ├── README.md └── images │ ├── callback.png │ └── callback_notif.png └── WdProcessNotificationCallback ├── README.md ├── WdProcessNotificationCallback.sln ├── WdProcessNotificationCallback ├── WdProcessNotificationCallback.c ├── WdProcessNotificationCallback.inf ├── WdProcessNotificationCallback.vcxproj └── WdProcessNotificationCallback.vcxproj.filters └── images ├── obj_creation.png ├── poc.png ├── proc_create_notif.png ├── proc_create_notif2.png ├── proc_create_stack.png ├── proc_termination.png ├── refresh_proc.png ├── set_trusted.png ├── set_untrusted.png ├── set_untrusted_check.png └── stack_frames.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/.gitignore -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.c -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.inf -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.sln -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.vcxproj -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/PGCbUtil/PgCbUtil.vcxproj.filters -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/PgCtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/PgCtx.h -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/README.md -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/checksum_algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/checksum_algo.md -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/crypt_decrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/crypt_decrypt.md -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/hash_algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/hash_algo.md -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/critical_msr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/critical_msr.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/exec_cb_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/exec_cb_obj.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/func_int1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/func_int1.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/gen_dataregion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/gen_dataregion.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/imp_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/imp_table.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/insert_apc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/insert_apc.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/invfunctab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/invfunctab.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/mistake1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/mistake1.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/mistake1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/mistake1b.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/objecttype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/objecttype.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/page_hash_mismatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/page_hash_mismatch.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/pg_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/pg_init.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/seckernelintcheck_fct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/seckernelintcheck_fct.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/images/type_pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/images/type_pool.png -------------------------------------------------------------------------------- /542875F90F9B47F497B64BA219CACF69/pg_entry_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/542875F90F9B47F497B64BA219CACF69/pg_entry_dump.py -------------------------------------------------------------------------------- /AfdTdxCallback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/AfdTdxCallback/README.md -------------------------------------------------------------------------------- /EnlightenmentState/EnlightenmentState.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/EnlightenmentState/EnlightenmentState.sln -------------------------------------------------------------------------------- /EnlightenmentState/EnlightenmentState/EnlightenmentState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/EnlightenmentState/EnlightenmentState/EnlightenmentState.c -------------------------------------------------------------------------------- /EnlightenmentState/EnlightenmentState/EnlightenmentState.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/EnlightenmentState/EnlightenmentState/EnlightenmentState.inf -------------------------------------------------------------------------------- /EnlightenmentState/EnlightenmentState/EnlightenmentState.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/EnlightenmentState/EnlightenmentState/EnlightenmentState.vcxproj -------------------------------------------------------------------------------- /EnlightenmentState/EnlightenmentState/EnlightenmentState.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/EnlightenmentState/EnlightenmentState/EnlightenmentState.vcxproj.filters -------------------------------------------------------------------------------- /EnlightenmentState/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/EnlightenmentState/README.md -------------------------------------------------------------------------------- /IoExternalDmaUnblock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/IoExternalDmaUnblock/README.md -------------------------------------------------------------------------------- /IoExternalDmaUnblock/ida_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/IoExternalDmaUnblock/ida_run.py -------------------------------------------------------------------------------- /IoExternalDmaUnblock/ntpowerinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/IoExternalDmaUnblock/ntpowerinfo.py -------------------------------------------------------------------------------- /Loader/Loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Loader/Loader.c -------------------------------------------------------------------------------- /Loader/Loader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Loader/Loader.sln -------------------------------------------------------------------------------- /Loader/Loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Loader/Loader.vcxproj -------------------------------------------------------------------------------- /Loader/Loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Loader/Loader.vcxproj.filters -------------------------------------------------------------------------------- /Phase1InitComplete/Phase1InitComplete.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Phase1InitComplete/Phase1InitComplete.sln -------------------------------------------------------------------------------- /Phase1InitComplete/Phase1InitComplete/Phase1InitComplete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Phase1InitComplete/Phase1InitComplete/Phase1InitComplete.c -------------------------------------------------------------------------------- /Phase1InitComplete/Phase1InitComplete/Phase1InitComplete.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Phase1InitComplete/Phase1InitComplete/Phase1InitComplete.inf -------------------------------------------------------------------------------- /Phase1InitComplete/Phase1InitComplete/Phase1InitComplete.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Phase1InitComplete/Phase1InitComplete/Phase1InitComplete.vcxproj -------------------------------------------------------------------------------- /Phase1InitComplete/Phase1InitComplete/Phase1InitComplete.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Phase1InitComplete/Phase1InitComplete/Phase1InitComplete.vcxproj.filters -------------------------------------------------------------------------------- /Phase1InitComplete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Phase1InitComplete/README.md -------------------------------------------------------------------------------- /Phase1InitComplete/images/CallExNotifyCallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Phase1InitComplete/images/CallExNotifyCallback.png -------------------------------------------------------------------------------- /Phase1InitComplete/images/LoaderParamBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/Phase1InitComplete/images/LoaderParamBlock.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/README.md -------------------------------------------------------------------------------- /TcpConnectionCallbackTemp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/TcpConnectionCallbackTemp/README.md -------------------------------------------------------------------------------- /TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.sln -------------------------------------------------------------------------------- /TcpConnectionCallbackTemp/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.c -------------------------------------------------------------------------------- /TcpConnectionCallbackTemp/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.inf -------------------------------------------------------------------------------- /TcpConnectionCallbackTemp/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.vcxproj -------------------------------------------------------------------------------- /TcpConnectionCallbackTemp/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp/TcpConnectionCallbackTemp.vcxproj.filters -------------------------------------------------------------------------------- /WdEbNotificationCallback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdEbNotificationCallback/README.md -------------------------------------------------------------------------------- /WdEbNotificationCallback/images/CallExNotifyCallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdEbNotificationCallback/images/CallExNotifyCallback.png -------------------------------------------------------------------------------- /WdEbNotificationCallback/images/MpEbUnload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdEbNotificationCallback/images/MpEbUnload.png -------------------------------------------------------------------------------- /WdEbNotificationCallback/images/WdFilterCopyData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdEbNotificationCallback/images/WdFilterCopyData.png -------------------------------------------------------------------------------- /WdNriNotificationCallback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdNriNotificationCallback/README.md -------------------------------------------------------------------------------- /WdNriNotificationCallback/images/callback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdNriNotificationCallback/images/callback.png -------------------------------------------------------------------------------- /WdNriNotificationCallback/images/callback_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdNriNotificationCallback/images/callback_notif.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/README.md -------------------------------------------------------------------------------- /WdProcessNotificationCallback/WdProcessNotificationCallback.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/WdProcessNotificationCallback.sln -------------------------------------------------------------------------------- /WdProcessNotificationCallback/WdProcessNotificationCallback/WdProcessNotificationCallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/WdProcessNotificationCallback/WdProcessNotificationCallback.c -------------------------------------------------------------------------------- /WdProcessNotificationCallback/WdProcessNotificationCallback/WdProcessNotificationCallback.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/WdProcessNotificationCallback/WdProcessNotificationCallback.inf -------------------------------------------------------------------------------- /WdProcessNotificationCallback/WdProcessNotificationCallback/WdProcessNotificationCallback.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/WdProcessNotificationCallback/WdProcessNotificationCallback.vcxproj -------------------------------------------------------------------------------- /WdProcessNotificationCallback/WdProcessNotificationCallback/WdProcessNotificationCallback.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/WdProcessNotificationCallback/WdProcessNotificationCallback.vcxproj.filters -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/obj_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/obj_creation.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/poc.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/proc_create_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/proc_create_notif.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/proc_create_notif2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/proc_create_notif2.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/proc_create_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/proc_create_stack.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/proc_termination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/proc_termination.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/refresh_proc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/refresh_proc.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/set_trusted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/set_trusted.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/set_untrusted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/set_untrusted.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/set_untrusted_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/set_untrusted_check.png -------------------------------------------------------------------------------- /WdProcessNotificationCallback/images/stack_frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/ExecutiveCallbackObjects/HEAD/WdProcessNotificationCallback/images/stack_frames.png --------------------------------------------------------------------------------