Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


about of KiInput.dll (bypass SendInput)
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
sylvanus
Advanced Cheater
Reputation: 0

Joined: 09 May 2006
Posts: 68

PostPosted: Sat Sep 20, 2008 8:58 pm    Post subject: about of KiInput.dll (bypass SendInput) Reply with quote

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
View user's profile Send private message
Flyte
Peanuts!!!!
Reputation: 6

Joined: 19 Apr 2006
Posts: 1887
Location: Canada

PostPosted: Sun Sep 21, 2008 5:35 am    Post subject: Reply with quote

PROTIP: The TAB key is your friend.

Also, don't try to run it on Vista.
Back to top
View user's profile Send private message
kitterz
Grandmaster Cheater Supreme
Reputation: 0

Joined: 24 Dec 2007
Posts: 1268

PostPosted: Sun Sep 21, 2008 7:38 pm    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail
sylvanus
Advanced Cheater
Reputation: 0

Joined: 09 May 2006
Posts: 68

PostPosted: Sun Sep 21, 2008 9:44 pm    Post subject: Reply with quote

kitterz, this work for you?

my xp is SP3.
Back to top
View user's profile Send private message
pkedpker
Master Cheater
Reputation: 1

Joined: 11 Oct 2006
Posts: 412

PostPosted: Tue Sep 23, 2008 1:21 am    Post subject: Reply with quote

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?

_________________
Hacks I made for kongregate.
Kongregate Universal Badge Hack: http://forum.cheatengine.org/viewtopic.php?p=4129411
Kongreate Auto Rating/Voter hack: http://forum.cheatengine.org/viewtopic.php?t=263576
Took a test lol
Back to top
View user's profile Send private message
sylvanus
Advanced Cheater
Reputation: 0

Joined: 09 May 2006
Posts: 68

PostPosted: Tue Sep 23, 2008 8:08 am    Post subject: Reply with quote

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
View user's profile Send private message
pkedpker
Master Cheater
Reputation: 1

Joined: 11 Oct 2006
Posts: 412

PostPosted: Tue Sep 23, 2008 5:20 pm    Post subject: Reply with quote

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)

_________________
Hacks I made for kongregate.
Kongregate Universal Badge Hack: http://forum.cheatengine.org/viewtopic.php?p=4129411
Kongreate Auto Rating/Voter hack: http://forum.cheatengine.org/viewtopic.php?t=263576
Took a test lol
Back to top
View user's profile Send private message
sylvanus
Advanced Cheater
Reputation: 0

Joined: 09 May 2006
Posts: 68

PostPosted: Tue Sep 23, 2008 10:31 pm    Post subject: Reply with quote

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
View user's profile Send private message
Noz3001
I'm a spammer
Reputation: 26

Joined: 29 May 2006
Posts: 6220
Location: /dev/null

PostPosted: Wed Sep 24, 2008 1:10 am    Post subject: Reply with quote

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
View user's profile Send private message MSN Messenger
sylvanus
Advanced Cheater
Reputation: 0

Joined: 09 May 2006
Posts: 68

PostPosted: Wed Sep 24, 2008 1:15 am    Post subject: Reply with quote

with your comment , I have no doubt this is detected : (
Back to top
View user's profile Send private message
Bizarro
I post too much
Reputation: 0

Joined: 01 May 2007
Posts: 2648

PostPosted: Wed Sep 24, 2008 1:43 am    Post subject: Reply with quote

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
View user's profile Send private message
kitterz
Grandmaster Cheater Supreme
Reputation: 0

Joined: 24 Dec 2007
Posts: 1268

PostPosted: Wed Sep 24, 2008 2:20 pm    Post subject: Reply with quote

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. Sad Thanks to Lurc for the help with this =p

_________________
Back to top
View user's profile Send private message Send e-mail
sylvanus
Advanced Cheater
Reputation: 0

Joined: 09 May 2006
Posts: 68

PostPosted: Wed Sep 24, 2008 3:48 pm    Post subject: Reply with quote

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
View user's profile Send private message
kitterz
Grandmaster Cheater Supreme
Reputation: 0

Joined: 24 Dec 2007
Posts: 1268

PostPosted: Wed Sep 24, 2008 4:47 pm    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail
smartz993
I post too much
Reputation: 2

Joined: 20 Jun 2006
Posts: 2013
Location: USA

PostPosted: Wed Sep 24, 2008 7:43 pm    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites