Search found 25 matches

by Calandoriel
Thu Jun 26, 2008 6:59 pm
Forum: madRemote
Topic: Clicking a button, without having the windowhandle open
Replies: 4
Views: 16151

hm

Annoying as it is, you have to specify the imagebase however, you should be able to calculate a free imagebase space to inject yourself into, Anyone have any experience with doing just this? Meaning, Instead of specifying {$IMAGEBASE $02000000} I just inject into a clear free adress in space of the ...
by Calandoriel
Thu Jun 26, 2008 6:39 pm
Forum: madRemote
Topic: Clicking a button, without having the windowhandle open
Replies: 4
Views: 16151

hihi

Solved that quite quickly aswell by Injection into the adress-space

Thanks :)
by Calandoriel
Thu Jun 26, 2008 5:25 pm
Forum: madRemote
Topic: Clicking a button, without having the windowhandle open
Replies: 4
Views: 16151

Started

Procedure Visa; begin Form2.Label1.Caption := 'I've been triggerd'; end; procedure VisaASM; var func : procedure; stdcall; begin //Visa; func := pointer(strtoint(Form2.Edit1.Text)); func; end; procedure TForm2.Button1Click(Sender: TObject); begin Visa; end; procedure TForm2.FormClose(Sender: TObjec...
by Calandoriel
Thu Jun 26, 2008 4:38 pm
Forum: madRemote
Topic: Clicking a button, without having the windowhandle open
Replies: 4
Views: 16151

Clicking a button, without having the windowhandle open

Hi, for all you guys out there being an real Administrator. You've might have came across Pop3 Connectors in Exchange. There is this option which lets you set how offen it should check for new e-mails there, and the min limit is set to 15 mins, which is awfully long. Now, here is the deal. There is ...
by Calandoriel
Fri May 09, 2008 6:03 pm
Forum: madCodeHook
Topic: getCallingModule problem
Replies: 9
Views: 6800

Thats generally called "The stack"
by Calandoriel
Fri May 09, 2008 4:56 pm
Forum: madCodeHook
Topic: DirectX Hooking Example, Along With Drawing Text On DirectX
Replies: 20
Views: 51519

Cool!

Cool dude, if you want to, i'd like to work on some theories with you.
PM me if you could possible come around adding me to your msn.
by Calandoriel
Thu May 08, 2008 4:27 pm
Forum: madCodeHook
Topic: DirectX Hooking Example, Along With Drawing Text On DirectX
Replies: 20
Views: 51519

Solved the pussle :) Thanks for your help Madshi. function PresentCallback(const Self: IDirect3DDevice9; const SourceRect, DestRect: PRect; const DestWindowOverride: HWND; DirtyRegion: PRgnData): HResult; stdcall; var Sprite: D3DX9.ID3DXSprite; Texture: Direct3D9.IDirect3DTexture9; rec: PRect; Vecto...
by Calandoriel
Thu May 08, 2008 4:15 pm
Forum: madCodeHook
Topic: DirectX Hooking Example, Along With Drawing Text On DirectX
Replies: 20
Views: 51519

hm

Well Sprite.Draw(Texture,rec,nil,nil, D3DCOLOR_ARGB(255,255,255,0)); Requires a PD3DXVector3 as argument. If you are gonna use it. Anyhow, i tried to take what you said into consideration and made this: function PresentCallback(const Self: IDirect3DDevice9; const SourceRect, DestRect: PRect; const D...
by Calandoriel
Wed May 07, 2008 5:39 pm
Forum: madCodeHook
Topic: DirectX Hooking Example, Along With Drawing Text On DirectX
Replies: 20
Views: 51519

Hm

Madshi See anything weird in this code? I get General Protection errors with it function PresentCallback(const Self: IDirect3DDevice9; const SourceRect, DestRect: PRect; const DestWindowOverride: HWND; DirtyRegion: PRgnData): HResult; stdcall; var Sprite: D3DX9.ID3DXSprite; //dxVector: D3DX9.TD3DXVe...
by Calandoriel
Mon May 05, 2008 7:28 pm
Forum: madCodeHook
Topic: DirectX Hooking Example, Along With Drawing Text On DirectX
Replies: 20
Views: 51519

never mind, found the correct library :)
by Calandoriel
Fri May 02, 2008 2:24 pm
Forum: madCodeHook
Topic: DirectX Hooking Example, Along With Drawing Text On DirectX
Replies: 20
Views: 51519

I might be wrong

I might be wrong, but should not the code be like this: function PresentCallback(const Self: IDirect3DDevice9; const SourceRect, DestRect: PRect; const DestWindowOverride: HWND; DirtyRegion: PRgnData): HResult; stdcall; var Font: D3DX9.ID3DXFont; rec: ^TRect; begin //Your Drawing Code Here. This Fun...
by Calandoriel
Sun Mar 02, 2008 4:46 pm
Forum: madRemote
Topic: RemoteExecute, Function adress specify?
Replies: 12
Views: 28421

Sweet

Sweet, Thanks a bunch :)
by Calandoriel
Thu Feb 21, 2008 6:55 pm
Forum: madRemote
Topic: RemoteExecute, Function adress specify?
Replies: 12
Views: 28421

eeeh

Well we have this function, in a already compiled application. I want to use a function in this application, for this specific application. The function Draws text on the screen in the application. So we have this function, placed at address $5A5A6D7. the whole thing looks like this. 5A5A6D3 push ea...
by Calandoriel
Wed Jan 30, 2008 7:41 am
Forum: madCodeHook
Topic: [HELP] Global Hook + Console Applications?
Replies: 3
Views: 3687

Keh

From what i noticed his hooks are operating through going through each process. What if somebody is to hide the procress?

Im making my own Gameguard clone.
by Calandoriel
Tue Jan 29, 2008 9:30 am
Forum: madCodeHook
Topic: [HELP] Global Hook + Console Applications?
Replies: 3
Views: 3687

[HELP] Global Hook + Console Applications?

Im terribly sorry if this question already have been asked, i did try search for it. But i did not find any similiar topic. As you all might know, using SetWindowsHookEx you are not able to affect Console applications. GUI applications work fine, since its able to detect WH_GetMessage or H_CALLWNDPR...