dsefix | Windows x64 Driver Signature Enforcement Overrider
kandi X-RAY | dsefix Summary
kandi X-RAY | dsefix Summary
Windows x64 Driver Signature Enforcement Overrider. CPU-Z driver does not work from windows 10 1803. Since MmMapIoSpace does not allow to map page table, Application with CPU-Z driver can not translate virtual address to physical address anymore. In my windows 10 1903, g_CiOptions value is not 0x6 but 0x2006. I changed shellcode using bit operation so no more bsod when DSE re-enabled.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of dsefix
dsefix Key Features
dsefix Examples and Code Snippets
/*
** Disable DSE (Vista and above)
** xor rax, rax
** ret
*/
const unsigned char scDisable[] = {
0x48, 0x31, 0xc0, 0xc3
};
/*
** Enable DSE (W8 and above)
** xor rax, rax
** mov al, 6
** ret
*/
const unsigned char scEnable8Plus[] = {
Community Discussions
Trending Discussions on dsefix
QUESTION
My OP is Windows 7 64bit. I'm loading a driver with DSEfix (Bypasses the Driver Sign Enforcement from Windows) and that works just fine. IOCTL Requests get executed they way they should, but whenever I try to unload my driver it fails on: ControlService(hService, SERVICE_CONTROL_STOP, &ss
with error code of Invalid Handle.
Here is my Driver Entry:
...ANSWER
Answered 2017-May-05 at 15:23Alright, as RbMm mentioned, I overlooked the removal of the Registry key... Well, but after I moved that code, I was still not able to unload my driver.
So I figured out that the SC_HANDLE obtained by CreateService is invalid. Eventhough it says on MSDN that the handle can be used from CreateService, it didn't work for me (might be DSE). You should instead just create a new SCManager and a new SCService and you should be good to go. Now ControlService is returning true for me :)
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install dsefix
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page