Forum: C++ Mar 17th, 2009 |
| Replies: 5 Views: 1,174 Also read that link you send me Ancient Dragon ... it didn't cover what i was needing (well i don't think) >.< but thanks alot for trying mate
DLL Code:
Dllmain.cpp:
/* Replace "dll.h" with... |
Forum: C++ Mar 17th, 2009 |
| Replies: 5 Views: 1,174 DLL Injector/Loader Code (Coded in C):
#include <windows.h>
#include <tlhelp32.h>
#include <shlwapi.h>
#include <conio.h>
#include <stdio.h>
#define WIN32_LEAN_AND_MEAN
#define... |
Forum: C++ Mar 17th, 2009 |
| Replies: 5 Views: 1,174 Thanks for reply but didnt quite understand 1/2 of it >.<
I've injected the process with the DLL which works fine...
I would like to read/write variables in the injected process (so il be... |
Forum: C++ Mar 16th, 2009 |
| Replies: 5 Views: 1,174 Ok i've created basic DLL and DLL Injector/Loader which the DLL calls on a function called CreateRemoteThread inside the target process i was wondering how
to code DLL to read/write to memory
... |
Forum: C++ Mar 15th, 2009 |
| Replies: 0 Views: 2,171 DLL Injector coded in C:
#include <windows.h>
#include <tlhelp32.h>
#include <shlwapi.h>
#include <conio.h>
#include <stdio.h>
#define WIN32_LEAN_AND_MEAN |
Forum: C++ Feb 11th, 2009 |
| Replies: 2 Views: 290 Thanks for reply mate,
don't suppose you could share quick a bit code how i would implement these functions into my application shown above?
If not il just have to search up on them functions... |
Forum: C++ Feb 11th, 2009 |
| Replies: 2 Views: 290 Ok, what i'm wanting to do is read a variables from another process
( not modify it ....just read it and output it)
so e.g.
test.exe:
int main(){
int test = 1;
return 0;
} |