Those people remind me of my friends sister..
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Newby on January 07, 2006, 02:42 PM
If you used a hash-based authentication (translate the password into a hash and compare it with the hash so all they see is the hash value when they disassemble it) I bet they'll give up.
Quote from: MyndFyre on January 05, 2006, 05:07 PM
One byte in a hex editor.
Quote from: rabbit on January 06, 2006, 09:55 PMQuote from: Networks on January 06, 2006, 03:20 PMAhh..your intentions are no longer hidden.
I want the user to press a hotkey at any moment in time regardless of the program's focus and execute a certain function. For example if I am in a game and I press a hotkey I wish for my application to write a certain piece of data to a certain offset.
Quote from: Shout on January 06, 2006, 11:19 PMTell her that he watches 10gb of hentai videos a day.
Woot! Nabo now has a girl friend! I've hooked up more couples then I've had girlfriends. :/
#include <windows.h>
#include <stdlib.h>
#include <stdio.h>
int main()
{
HWND star = 0;
DWORD prcID;
HANDLE prcHandle;
printf("Starcraft Resolution Changer\n\n");
while (star == 0)
{
star = FindWindow(NULL, "Brood War");
}
GetWindowThreadProcessId(star, &prcID);
prcHandle = OpenProcess(0x1F0FFF, false, prcID);
while (1)
{
WriteProcessMemory(prcHandle, (LPVOID)0x0014F6FC, "600", 4, NULL);
WriteProcessMemory(prcHandle, (LPVOID)0x0015F700, "800", 4, NULL);
}
return 0;
}
Page created in 0.294 seconds with 17 queries.