You are viewing our Forum Archives. To view or take place in current topics click here.
#11. Posted:
Status: Offline
Joined: May 26, 201311Year Member
Posts: 491
Reputation Power: 22
As TEIR said, code is off a lot.. Stop posting code you think will work. Make your self look dumb.
- 0useful
- 0not useful
#12. Posted:
Status: Offline
Joined: Sep 17, 201014Year Member
Posts: 344
Reputation Power: 14
Status: Offline
Joined: Sep 17, 201014Year Member
Posts: 344
Reputation Power: 14
Wow, do people honestly not read the code before posting it, look what it's doing...
Everybody seriously needs to stop these 'source online' shit threads
Everybody seriously needs to stop these 'source online' shit threads
- 1useful
- 0not useful
#13. Posted:
Status: Offline
Joined: Feb 17, 201113Year Member
Posts: 176
Reputation Power: 7
Status: Offline
Joined: Feb 17, 201113Year Member
Posts: 176
Reputation Power: 7
hey so i got some error can you help me with these?
1st:http://gyazo.com/5db968e078aa0ec6e0c7ecf0f976df5b
2nd:http://gyazo.com/715fa22fb623624b4d8818c963afe5a9
1st:http://gyazo.com/5db968e078aa0ec6e0c7ecf0f976df5b
2nd:http://gyazo.com/715fa22fb623624b4d8818c963afe5a9
- 0useful
- 0not useful
#14. Posted:
Status: Offline
Joined: Jun 06, 201311Year Member
Posts: 927
Reputation Power: 79
TEIR1plus2 wrote the code is really wrong. at first glance the #define macro is being used wrong. in a further look theres a function thats being defined in another function. on top of that its missing a lot of stuff and on top of that if you were to get this working, it would only dump the challenge and response.
I agree, at least put a spoil around it.
- 0useful
- 0not useful
#15. Posted:
Status: Offline
Joined: Jan 03, 201113Year Member
Posts: 408
Reputation Power: 17
Status: Offline
Joined: Jan 03, 201113Year Member
Posts: 408
Reputation Power: 17
alex01234 wrote hey so i got some error can you help me with these?
1st:http://gyazo.com/5db968e078aa0ec6e0c7ecf0f976df5b
2nd:http://gyazo.com/715fa22fb623624b4d8818c963afe5a9
Its because the functions are not the ACTUAL functions. The person that released that code like 2 years ago meant it for a learning experience, instead of using that code to do it, you use it to figure out how it is done.
What you have to do is research what the actual definitions of that function are, there is a ton of them on msdn.
Example
#define resolveFunct
is defining resolveFunct as nothing, absolute nothing.
Instead with the ACTUAL definition:
UINT32 resolveFunct(char* modname, UINT32 ord)
{
UINT32 ptr32 = 0, ret = 0, ptr2 = 0;
ret = XexGetModuleHandle(modname, (PHANDLE)&ptr32);
if(ret == 0)
{
ret = XexGetProcedureAddress((HANDLE)ptr32, ord, &ptr2);
if(ptr2 != 0)
return(ptr2);
}
return(0);
}
Hope that helps even though the challenge is already released and dumping the challenge still wont get you online.
And by the way its not meant to be a console app, its meant to be a dashlaunch plugin, the dbgprint is supposed to be for logging.
EDIT: idk why this thread is still rolling around since teir released a working source... end this thread
- 0useful
- 0not useful
#16. Posted:
Status: Offline
Joined: Jan 06, 201311Year Member
Posts: 635
Reputation Power: 34
Status: Offline
Joined: Jan 06, 201311Year Member
Posts: 635
Reputation Power: 34
How about you people stop digging through pastebin.
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.