Giriş yap
En iyi yollayıcılar
Hello EMO | ||||
EMO | ||||
eMoStyLe | ||||
BesimBICER | ||||
GameKinG | ||||
Crysis | ||||
~>!.DεvιLρяιεsт.!<~ | ||||
MeTaL | ||||
TrueCrime | ||||
djhayal3t |
Istatistikler
Toplam 203 kayıtlı kullanıcımız varSon kaydolan kullanıcımız: crayzboy76
Kullanıcılarımız toplam 1186 mesaj attılar bunda 862 konu
Arama
Sosyal yer imi
Sosyal bookmarking sitesinde Emo, Emo nedir, Emo resimleri, Emo Kıyafetleri, Emo Sözleri, Emo Oyunları, EmoTurkey, Emo Nickler, Emo Avatarları, Punk, Punk Resimleri, Punk Avatarları, Rock, Rock Resimleri, Rock Avatarları, Msn Nickleri, Msn Avatarları, Müzik adresi saklayın ve paylaşın
Sosyal bookmarking sitesinde EMO Style ForumPro - Hos Geldiniz adresi saklayın ve paylaşın
Kimler hatta?
Toplam 8 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 8 Misafir Yok
Sitede bugüne kadar en çok 217 kişi C.tesi Tem. 29, 2017 1:46 am tarihinde online oldu.
En son konular
Reklam
Inject Into a Running Process
1 sayfadaki 1 sayfası
Inject Into a Running Process
[quote name='Stork' timestamp='1296607114' post='1196']
Here's a little code bit to inject into a running process. Note the use of TCHAR so it's using unicode characters.
To start the injection...
alıntı
Here's a little code bit to inject into a running process. Note the use of TCHAR so it's using unicode characters.
- Kod:
BOOL InjectIntoProcess(TCHAR* szExeName, TCHAR* szDllName)
{
TCHAR szProcessName[MAX_PATH];
TCHAR szDllNameAndPath[MAX_PATH];
DWORD aProcesses[1024], cb, cProcesses;
HANDLE hProcess = NULL;
HMODULE hMod = NULL;
UINT i = 0;
// Get the full path to the DLL for later use
GetCurrentDirectory(MAX_PATH, szDllNameAndPath);
wcscat(szDllNameAndPath, _T("\\"));
wcscat(szDllNameAndPath, szDllName);
// Get the list of process identifiers
if(!EnumProcesses(aProcesses, sizeof(aProcesses), &cb))
return FALSE;
// Calculate how many process identifiers were returned
cProcesses = cb / sizeof(DWORD);
// Get the name and process identifier for each process
for(i = 0; i < cProcesses; i++)
{
hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, aProcesses[i]);
if(hProcess)
{
if(EnumProcessModules(hProcess, &hMod, sizeof(hMod), &cb))
{
GetModuleBaseNameW(hProcess, hMod, szProcessName, sizeof(szProcessName)/sizeof(TCHAR));
}
if(wcscmp(wcslwr(szProcessName), szExeName) == 0)
{
// We found the process, inject our DLL
if(DetourContinueProcessWithDllW(hProcess, szDllNameAndPath))
{
return TRUE;
}
}
}
CloseHandle(hProcess);
}
return FALSE;
}
To start the injection...
- Kod:
if(InjectIntoProcess(_T("your_process.exe"), _T("my_hack.dll")))
{
_tprintf(_T("Injection successful!\n"));
} else {
_tprintf(_T("Injection failed.\n"));
}
alıntı
Similar topics
» Process Forking - Running Process From Memory
» Injecting into a running process!
» [C++] Anti dll inject
» [Tutorial] How to inject code into an EXE
» [REQUEST] DLL Auto-Inject Source
» Injecting into a running process!
» [C++] Anti dll inject
» [Tutorial] How to inject code into an EXE
» [REQUEST] DLL Auto-Inject Source
1 sayfadaki 1 sayfası
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz
Cuma Ağus. 29, 2014 8:33 am tarafından Hello EMO
» goldenchase.net maden yaparak para kazanma
Cuma Ağus. 29, 2014 8:18 am tarafından Hello EMO
» etichal hacker görsel egitim seti
Çarş. Ağus. 06, 2014 4:57 am tarafından Hello EMO
» KO TBL Source C#
Ptsi Ara. 09, 2013 6:36 am tarafından Hello EMO
» x86 Registers
C.tesi Ağus. 24, 2013 5:02 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de WYD
Çarş. Tem. 10, 2013 7:25 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de CS Metodo²
Çarş. Tem. 10, 2013 7:23 am tarafından Hello EMO
» [Tutorial] Aprendendo basico deASM OLLYDBG
Çarş. Tem. 10, 2013 7:22 am tarafından Hello EMO
» Basic C# DLL injector
Ptsi Tem. 08, 2013 7:48 am tarafından Hello EMO