| View previous topic :: View next topic |
| Author |
Message |
sylvanus Advanced Cheater
Reputation: 0
Joined: 09 May 2006 Posts: 68
|
Posted: Sat Sep 20, 2008 8:58 pm Post subject: about of KiInput.dll (bypass SendInput) |
|
|
about this method (post by kiki)
http://forum.cheatengine.org/viewtopic.php?t=235822&sid=2ed102da21da85c8bd216213fcdf516b
hello all
i am created project in c++ 2005.
i am using kiInput.dll in my dll injected.
i get this message FROM WINDOWS
Driver couldn't be opened!!
next message (of KiInput) = Init error
THIS STILL WORK???
my source is
| Quote: |
case WM_INITDIALOG:
int rval;
rval = Initialize(); // <---- INITIALIZE
if(rval==0){
ShowMessage("Everything loaded OK");
}
else if (rval==1) {
ShowMessage("Missing functions");
}
else if (rval==2) {
ShowMessage("Dll not found");
}
else if (rval==3) {
ShowMessage("Init error");
}
|
and funcion initialize()
| Quote: |
int Initialize() {
HMODULE hKiKi = LoadLibraryA("d:\\emshack\\danzabot\\KiInput.dll");
if (hKiKi != 0) {
InitDriver = (INITDRIVER)GetProcAddress(hKiKi,"?InitDriver@@YA_NXZ");
AltSendInput = (ALTSENDINPUT)GetProcAddress(hKiKi,"?AltSendInput@@YGIIKH@Z");
AltPostMessage = (ALTPOSTMESSAGE)GetProcAddress(hKiKi,"?AltPostMessage@@YGHPAUHWND__@@HIJ@Z");
if (InitDriver==NULL||AltSendInput==NULL||AltPostMessage==NULL) {
return 1;
}
}
else {
return 2;
}
if (!InitDriver()) {
return 3;
}
return 0;
}
|
----------------------------
pc : Core 2 duo 2.4hz
video : nvidia 256
ram : 2giga
windows service pack 3
Last edited by sylvanus on Tue Sep 23, 2008 8:25 am; edited 1 time in total |
|
| Back to top |
|
 |
Flyte Peanuts!!!!
Reputation: 6
Joined: 19 Apr 2006 Posts: 1887 Location: Canada
|
Posted: Sun Sep 21, 2008 5:35 am Post subject: |
|
|
PROTIP: The TAB key is your friend.
Also, don't try to run it on Vista. |
|
| Back to top |
|
 |
kitterz Grandmaster Cheater Supreme
Reputation: 0
Joined: 24 Dec 2007 Posts: 1268
|
Posted: Sun Sep 21, 2008 7:38 pm Post subject: |
|
|
| Flyte wrote: | PROTIP: The TAB key is your friend.
Also, don't try to run it on Vista. |
I agree. Looking at that code gives me a headache. _________________
|
|
| Back to top |
|
 |
sylvanus Advanced Cheater
Reputation: 0
Joined: 09 May 2006 Posts: 68
|
Posted: Sun Sep 21, 2008 9:44 pm Post subject: |
|
|
kitterz, this work for you?
my xp is SP3. |
|
| Back to top |
|
 |
pkedpker Master Cheater
Reputation: 1
Joined: 11 Oct 2006 Posts: 412
|
Posted: Tue Sep 23, 2008 1:21 am Post subject: |
|
|
maybe it has something to do with this line
HMODULE hKiKi = LoadLibraryA("d:\\emshack\\danzabot\\KiInput.dll");
why did you put in your path..
just use KiInput.dll and copy that dll into Release Folder
do you get Dll not found error? _________________
|
|
| Back to top |
|
 |
sylvanus Advanced Cheater
Reputation: 0
Joined: 09 May 2006 Posts: 68
|
Posted: Tue Sep 23, 2008 8:08 am Post subject: |
|
|
Thanks pkerpker
I have created a main dll, and from there the charge kiinput.dll,
if I use this
HMODULE hKiKi = LoadLibrary ( "KiInput.dll");
get a message "DLL NOT FOUND"
and if I use this
HMODULE hKiKi = LoadLibrary ( "d: \ \ emshack \ \ danzabot \ \ KiInput.dll");
found the dll, but it shows me that message.
"Init error"
I only want to know if kiinput.dll still works, to switch to SERVICE PACK 2, maybe that's why it is not loaded.
my pc :
core 2 duo , intel 2.4 hz
nvidia 256
memory ram 2gb
windows servic pack 3 |
|
| Back to top |
|
 |
pkedpker Master Cheater
Reputation: 1
Joined: 11 Oct 2006 Posts: 412
|
Posted: Tue Sep 23, 2008 5:20 pm Post subject: |
|
|
well yah nothing u can do if InitDiver() is returning false.... unless you got the source code for KiInput.. I think KiInput was made for Vista... not sure..
since KiKi's download states this.
KiDriver.rar
Description:
Working Windows Vista SP1 (x86 only) Driver to use with KiInput files.
Download
Filename: KiDriver.rar
Filesize: 2.28 KB
Downloaded: 448 Time(s) _________________
|
|
| Back to top |
|
 |
sylvanus Advanced Cheater
Reputation: 0
Joined: 09 May 2006 Posts: 68
|
Posted: Tue Sep 23, 2008 10:31 pm Post subject: |
|
|
THANKS,
Last question
i tested in maple private server, work fine!, my character move left and right.
but in maple EMS, i get this BSOD message
| Code: |
STOP : 0X0000008E (0XC0000005, 0XB40E249C, 0XB42F3AA4, 0X00000000)
Dump_wmimmc.sys address B40E249C base at B40D4000 BaseStamp 48A3D673
|
that means?
gameguard hang, or that the syscall for NtUserSendInput is not correct?
i am in windows sp 3.
any suggestions?
help pleaseeeeeeeeeeeee. |
|
| Back to top |
|
 |
Noz3001 I'm a spammer
Reputation: 26
Joined: 29 May 2006 Posts: 6220 Location: /dev/null
|
Posted: Wed Sep 24, 2008 1:10 am Post subject: |
|
|
| sylvanus wrote: | THANKS,
Last question
i tested in maple private server, work fine!, my character move left and right.
but in maple EMS, i get this BSOD message
| Code: |
STOP : 0X0000008E (0XC0000005, 0XB40E249C, 0XB42F3AA4, 0X00000000)
Dump_wmimmc.sys address B40E249C base at B40D4000 BaseStamp 48A3D673
|
that means?
gameguard hang, or that the syscall for NtUserSendInput is not correct?
i am in windows sp 3.
any suggestions?
help pleaseeeeeeeeeeeee. |
| Code: | | 0x0000008E KERNEL_MODE_EXCEPTION_NOT_HANDLED 0x8E |
dump_wmimmc.sys is throwing an unhandled exception? Never seen that from GameGuard before. You sure this isn't detected? |
|
| Back to top |
|
 |
sylvanus Advanced Cheater
Reputation: 0
Joined: 09 May 2006 Posts: 68
|
Posted: Wed Sep 24, 2008 1:15 am Post subject: |
|
|
| with your comment , I have no doubt this is detected : ( |
|
| Back to top |
|
 |
Bizarro I post too much
Reputation: 0
Joined: 01 May 2007 Posts: 2648
|
Posted: Wed Sep 24, 2008 1:43 am Post subject: |
|
|
i heard kiInput was detected along with the SDT relocation _________________
w8 baby.com Banner contest, Come join NOW!!
Check us out for Prize deatils |
|
| Back to top |
|
 |
kitterz Grandmaster Cheater Supreme
Reputation: 0
Joined: 24 Dec 2007 Posts: 1268
|
Posted: Wed Sep 24, 2008 2:20 pm Post subject: |
|
|
| Bizarro wrote: | | i heard kiInput was detected along with the SDT relocation |
Naw. I can use it. It's just that GG's driver causes kiki's driver to DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS (for me)...we just need to make sure we unload the driver somehow b4 maple exits. Thanks to Lurc for the help with this =p _________________
|
|
| Back to top |
|
 |
sylvanus Advanced Cheater
Reputation: 0
Joined: 09 May 2006 Posts: 68
|
Posted: Wed Sep 24, 2008 3:48 pm Post subject: |
|
|
| Quote: | | Naw. I can use it. It's just that GG's driver causes kiki's driver to DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS (for me)...we just need to make sure we unload the driver somehow b4 maple exits. Sad Thanks to Lurc for the help with this =p |
what windows version you use ?
[/code] |
|
| Back to top |
|
 |
kitterz Grandmaster Cheater Supreme
Reputation: 0
Joined: 24 Dec 2007 Posts: 1268
|
Posted: Wed Sep 24, 2008 4:47 pm Post subject: |
|
|
| sylvanus wrote: | | Quote: | | Naw. I can use it. It's just that GG's driver causes kiki's driver to DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS (for me)...we just need to make sure we unload the driver somehow b4 maple exits. Sad Thanks to Lurc for the help with this =p |
what windows version you use ?
[/code] |
xp home =( _________________
|
|
| Back to top |
|
 |
smartz993 I post too much
Reputation: 2
Joined: 20 Jun 2006 Posts: 2013 Location: USA
|
Posted: Wed Sep 24, 2008 7:43 pm Post subject: |
|
|
| kitterz wrote: | | sylvanus wrote: | | Quote: | | Naw. I can use it. It's just that GG's driver causes kiki's driver to DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS (for me)...we just need to make sure we unload the driver somehow b4 maple exits. Sad Thanks to Lurc for the help with this =p |
what windows version you use ?
[/code] |
xp home =( |
How come everyone that uses XP Home manages to use hacks that don't work on XP Pro? |
|
| Back to top |
|
 |
|