Quote:
Originally Posted by kooky89
da ist ein backdoor drine wie bei jeder Bypass ^^
|
Sicher. Wenn du wüsstest wie viele
Backdoors in deinem Betriebssystem und AVs sind würdest du dich nicht mehr darum scheren.
Code:
#include <windows.h>
#include <stdio.h>
#include <tchar.h>
int main()
{
printf(" Coded by Yannick, Idee by Jojo");
Sleep(2000);
printf("\nOeffne jetzt Flyff.");
HWND hwnd;
DWORD proc_id;
while(1)
{
Sleep(100);
if(hwnd = FindWindow(0, "FLYFF"))
break;
}
if(hwnd)
{
printf("\nProzess gefunden");
}
GetWindowThreadProcessId(hwnd, &proc_id);
HANDLE handle = OpenProcess(MAXIMUM_ALLOWED, FALSE, proc_id);
if(!handle)
{
printf("\nProzess konnte nicht geoeffnet werden.");
Sleep(2000);
return 0;
}
BYTE newdata [] = "c8bb47e0273df528d94fc60fcf1afc76";
if(WriteProcessMemory(handle, (LPVOID)0x009C5968, &newdata, sizeof(newdata), NULL))
{
printf("\nInjection erfolgreich.");
Sleep(1000);
printf("\nViel spaß mit deinen Veränderten RES files");
Sleep(3000);
}
else
{
printf("\nMemory konnte nicht beschrieben werden");
Sleep(3000);
}
CloseHandle(handle);
return 0;
}