Posted February 20, 201411 yr Hi folks i want to change the drivername of the to strongOD plugin at runtime. i know i can change this in the olly.ini file, but i need to change it at runtime after the driver is created. So in example i want to change the default drivername ("fengue0") to "testing" at runtime programmatically. is there a way to do this?
February 20, 201411 yr Hi, why you want to change the drivername in realtime?Also this should not be possible in realtime so then you need to unload and reload the driver.So I think the only thing you can do is to create a random drivername patch where in the StrongOD plugin each time will generated a random driver name.So here you could create any calc operation using date time for exsample and then use this new calculated name as drivername = dynamic now instead of any static name. greetz
February 20, 201411 yr Author indeed i want to calculate a random driver name in run time. then you need to unload and reload the driver. so do you, or someone else, how to unload the strongod driver?
February 20, 201411 yr Why do you want to calculate a random driver name? I mean, it would be possible, but you'd have to write a plugin for olly that loads before StrongOD to change the section name automatically. Doing stuff like this is dangerous, because StrongOD itself doesn't know if it's loaded already so it will just overwrite the SSDT again, causing crashes when the previous StrongOD is unloaded. Greetings
February 21, 201411 yr Author so i liike to unload the driver, change its name and load it again.googling brought me by ntunloaddriver, but it seems a 32 bit driver can't be unload within a 64 bit os with this function. so do you know a other way to unload the driver?
February 21, 201411 yr You could adapt this code to do this: https://bitbucket.org/mrexodia/servicemanagerNotice that you cannot load 32bit drivers in an x64 environment, drivers (at least the ones that hook the ssdt etc) need to be x64.
February 21, 201411 yr Author so 32 bit drivers cant be loaded within a 64 bit os, but is it able to unload a 32 bit driver within a 64 bit os?
February 21, 201411 yr so 32 bit drivers cant be loaded within a 64 bit os, but is it able to unload a 32 bit driver within a 64 bit os? no. You dont have any 32bit drivers on 64bit os. This is not possible obviously. Strongod will not work with win 7/xp/8 64bit
February 21, 201411 yr Author too bad folks, so there is no way to change the strongod driver name at runtime?
February 22, 201411 yr strong/fantom/etc - is trash. On x86 use the SIDE. For this engine does not need the driver.
February 23, 201411 yr strong/fantom/etc - is trash. On x86 use the SIDE. For this engine does not need the driver. Link?
February 23, 201411 yr strong/fantom/etc - is trash. On x86 use the SIDE. For this engine does not need the driver. Is this where you distribute the most recent version? http://www.woodmann.com/forum/showthread.php?15268-SIDE
February 23, 201411 yr https://forum.tuts4you.com/topic/30532-ollyext/page-4#entry159565http://yadi.sk/d/JVKeS7XaDtqJ5 vx Edited February 23, 201411 yr by Indy
February 23, 201411 yr it doesnt work on x64 or am i missing something here?edit: nevermind, its x86 only Edited February 23, 201411 yr by Mr. eXoDia
Create an account or sign in to comment