Search found 13 matches

by Taner
Sat Jan 28, 2006 11:38 pm
Forum: customer testimonials
Topic: madCollection is the best library I ever used
Replies: 1
Views: 12360

madCollection is the best library I ever used

I am using madCollection, mostly madCodeHook, since 1 year and I love it!
by Taner
Sat Jan 28, 2006 10:59 pm
Forum: madCollection
Topic: Older madCollection
Replies: 1
Views: 5586

Older madCollection

Can someone upload/send me the older version of madCollection? The new one needs an extra external DLL, in the previous versions this was better.
by Taner
Wed Feb 02, 2005 6:56 pm
Forum: madCodeHook
Topic: Why doesnt this work?
Replies: 11
Views: 10495

Yeah MadCodeHook surely owns but I will use Aph3x thingy only to show my friend that hiding processes work.
and one funny thingy is that aph3x coded the TibiaBot with MadCodeHook although he had his own codehook. this is the best proof that MCHook owns :D
by Taner
Tue Feb 01, 2005 9:02 pm
Forum: madCodeHook
Topic: Why doesnt this work?
Replies: 11
Views: 10495

damn it, hab keine 150$
aye, whatever, i'll try to find another way to show my friend that it's possible. thanks anyway :) worked for the whole source for nothing :(
by Taner
Tue Feb 01, 2005 5:35 pm
Forum: madCodeHook
Topic: Why doesnt this work?
Replies: 11
Views: 10495

I want to make a process invisible. But don't think that it will be a virus. I just want to show my friend (Delphi coder too) that it is possible to hide a process in the task manager. He says its impossible :wink: But as I said I wont abuse it, I read you license agreement and accepted :) But well,...
by Taner
Tue Feb 01, 2005 2:56 pm
Forum: madCodeHook
Topic: inject for all users
Replies: 3
Views: 4639

can you tell me exactly how to write a service?
a little example maybe?
by Taner
Tue Feb 01, 2005 2:55 pm
Forum: madCodeHook
Topic: Why doesnt this work?
Replies: 11
Views: 10495

Why doesnt this work?

HookCode(@NtQuerySystemInformation, @NtQuerySystemInformationCallback, @NtQuerySystemInformationNextHook);

It say "Undeclared Identifier: NtQuerySystemInformation" to the first parameter
by Taner
Fri Dec 17, 2004 2:37 pm
Forum: madCodeHook
Topic: Calling an URL
Replies: 2
Views: 4678

Calling an URL

Is it possible to call an URL from a DLL?
by Taner
Mon Dec 13, 2004 7:45 pm
Forum: madCodeHook
Topic: A little problem (Winsock)
Replies: 5
Views: 6587

Thanks, this example helped me a bit. I just need to have the bytes which was sended in an array of bytes, still no idea how to realize it, i tried this: for i:=0 to Len-1 do begin NewBuf:=cardinal(Buf)+i; ByteArray[i]:=ord(StrPas(pchar(@NewBuf))[1]); end; Is it possible to call an URL from the DLL?
by Taner
Mon Dec 13, 2004 4:33 pm
Forum: madCodeHook
Topic: A little problem (Winsock)
Replies: 5
Views: 6587

Hi,
thanks for the answers. I used your code, but I never have something in the Clipboard :?
Even if I write it to a logfile. It stays empty, why ?
My hook also has a function which sends with the Socket and it works just fine, but I can't get this data capturing to work :sorry:
by Taner
Sun Dec 12, 2004 6:20 pm
Forum: madCodeHook
Topic: A little problem (Winsock)
Replies: 5
Views: 6587

A little problem (Winsock)

function sendHookCallback(s: TSocket; var Buf; len, flags: Integer): Integer; stdcall; var DataBuffer: pchar; Bytestring: string; begin Result := 0; DataSocket := s; GetMem(DataBuffer, Result); try CopyMemory(DataBuffer, @Buf, Result); ByteString:=StrPas(DataBuffer); If Length(Bytestring)<>0 then b...
by Taner
Sun Oct 24, 2004 9:51 am
Forum: madCodeHook
Topic: ProcessHandle
Replies: 5
Views: 6844

FindWindow returns the HWND (Window Handle) not the Process Handle.
by Taner
Sun Oct 24, 2004 8:16 am
Forum: madCodeHook
Topic: ProcessHandle
Replies: 5
Views: 6844

ProcessHandle

I want to Hook Winsock in my running Process with Inject Library, but I need the processHandle for it. How can I get it? The exe-name is tibia.exe and the class-name is 'tibiaclient'