SamuelTulach / mutante

Kernel-mode Windows HWID spoofer
520 stars 142 forks source link

signed/unsigned #10

Closed fahim167 closed 3 years ago

fahim167 commented 3 years ago

how to fix signed/unsigned in this ??

for (auto i = 0; i < moduleList->ulModuleCount; i++) { auto module = moduleList->Modules[i]; if (strstr(module.ImageName, moduleName)) { address = module.Base; break; } }

atomik00 commented 3 years ago

Replace that section with the code below and that will resolve this issue.

for (unsigned int i = 0; i < moduleList->ulModuleCount; i++) { auto module = moduleList->Modules[i]; if (strstr(module.ImageName, moduleName)) { address = module.Base; break; } }

fahim167 commented 3 years ago

really thankful for your reply .. but i tried that and gave me MSB4018 The "SignTask" task failed unexpectedly

the same error when i try to built with x64 not ARM

fahim167 commented 3 years ago

just ran it as administrator and the error is gone

atomik00 commented 3 years ago

that error is caused but not having a cert. you can fix it by right clicking on solution and going to properties -> Driver signing -> then making sure its in test sign (Sign mode option should be set to test sign) for Test Certificate Choose Create new. once thats done hit apply and build that error will go away

atomik00 commented 3 years ago

also dont build as Arm unless you need to, it works fine in x64

fahim167 commented 3 years ago

now it says Could not connect to the remote computer for deployment. :(((((((((