Search found 9 matches

by sazuker
Mon Jun 09, 2008 4:08 pm
Forum: Coding Questions
Topic: need help asm to pb
Replies: 4
Views: 1872

thx for all the help Helle
its now running!!!! :)
by sazuker
Fri Jun 06, 2008 5:34 pm
Forum: Coding Questions
Topic: how to call a function with only the
Replies: 3
Views: 938

thank you very much
by sazuker
Fri Jun 06, 2008 4:37 pm
Forum: Coding Questions
Topic: how to call a function with only the
Replies: 3
Views: 938

how to call a function with only the

how to call a function with only the address of it?

lets say my function address

FunctionAddress.l = $00000001

How can I call this?
by sazuker
Fri Jun 06, 2008 11:05 am
Forum: Coding Questions
Topic: need help asm to pb
Replies: 4
Views: 1872

still doesnt werk :cry:
pointers and addresses are killing me
anyone could help me pls
by sazuker
Fri Jun 06, 2008 11:01 am
Forum: Tricks 'n' Tips
Topic: API hooking
Replies: 26
Views: 14369

the problem on this hook is that you need to hook and un hook the function everytime you need to use the original procedure

ex.

procedure myfunction(a,b,c,d)
procedurereturn thisfunction(a,b,c,d)
;THIS RUNS ON AN INFINITE LOOP
;since calling thisfunction would jmp again to myfunction then to ...
by sazuker
Fri Jun 06, 2008 7:42 am
Forum: Coding Questions
Topic: need help asm to pb
Replies: 4
Views: 1872

need help asm to pb

Anyone could help me my pb translation is not working right
Your help would be much appreciated

org asm code
ProcInstallHook proc uses ebx edi esi hookProc:DWORD, targetProc:DWORD, patchLen:DWORD
mov esi, patchLen
mov edi, targetProc
mov eax, esi
add eax, 5
invoke Alloc, eax
mov ebx, eax ...
by sazuker
Fri Jun 06, 2008 3:22 am
Forum: Coding Questions
Topic: Direct C/C++ to PB Translation Help
Replies: 4
Views: 1307

yeah well I think the procedure fails because some of the parts i cant translate well especially on the structures and mixed pointer/address...

hope someone helps
Thx in advance :)
by sazuker
Thu Jun 05, 2008 7:30 pm
Forum: Coding Questions
Topic: Direct C/C++ to PB Translation Help
Replies: 4
Views: 1307

No this is for a game like intercepting packets of a game..not warez
by sazuker
Thu Jun 05, 2008 6:54 pm
Forum: Coding Questions
Topic: Direct C/C++ to PB Translation Help
Replies: 4
Views: 1307

Direct C/C++ to PB Translation Help

I've tried to manually translate this function from C/C++ to PB but the procedure fails :(

Heres the Original C/C++ Code:

// This function "replaces" a function with another function
// So, for example, if you do this:
// OriginalWSASendProc = (MyWSASendProc) HookImportedFunction ...