Easyhook
-
Hallo,
ich habe diese zwei links gefunden:
http://stackoverflow.com/questions/2214053/c-redirect-outgoing-connectionsDas Full Example vom Easyhook funktioniert auf Anhieb schon mal nicht.
Ich habe es so weit angepasst wie ich konnte, allerdings hört es bei einem Fehler auf:
Schweregrad Code Beschreibung Projekt Datei Zeile Unterdrückungszustand
Fehler LNK1561 Einstiegspunkt muss definiert werden. Redirect E:\Projekt1\Projekt1\LINK 1#include <string> #include <iostream> #include <Windows.h> #include <easyhook.h> using namespace std; BOOL pBeep(DWORD dwFreq, DWORD dwDuration) { cout << "\n****All your pbeeps belong to us!\n\n"; return Beep(dwFreq + 800, dwDuration); }; BOOL WINAPI myBeepHook(DWORD dwFreq, DWORD dwDuration); BOOL WINAPI myBeepHook(DWORD dwFreq, DWORD dwDuration) { cout << "\n****All your beeps belong to us!\n\n"; return Beep(dwFreq + 800, dwDuration); } int _tmain(int argc, wchar_t* argv[]) { HOOK_TRACE_INFO hHook = { NULL }; // keep track of our hook cout << pBeep; cout << "\n"; cout << GetProcAddress(GetModuleHandle(TEXT("kernel32")), "Beep"); // Install the hook NTSTATUS result = LhInstallHook( GetProcAddress(GetModuleHandle(TEXT("kernel32")), "Beep"), myBeepHook, NULL, &hHook); if (FAILED(result)) { wstring s(RtlGetLastErrorString()); wcout << "Failed to install hook: "; wcout << s; cout << "\n\nPress any key to exit."; cin.get(); return -1; } cout << "Beep after hook installed but not enabled.\n"; Beep(500, 500); cout << "Activating hook for current thread only.\n"; // If the threadId in the ACL is set to 0, // then internally EasyHook uses GetCurrentThreadId() ULONG ACLEntries[1] = { 0 }; LhSetInclusiveACL(ACLEntries, 1, &hHook); cout << "Beep after hook enabled.\n"; Beep(500, 500); cout << "Uninstall hook\n"; LhUninstallHook(&hHook); cout << "Beep after hook uninstalled\n"; Beep(500, 500); cout << "\n\nRestore ALL entry points of pending removals issued by LhUninstallHook()\n"; LhWaitForPendingRemovals(); cout << "Press any key to exit."; cin.get(); return 0; }
mit
wWinMainCRTStartup
will er noch ein SubSystem, als ich da dann Windows gewählt habe kamen jede Menge nicht aufgelöster externer Symbole.
Wie mache ich das Lauffähig?
Danke