Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[RELEASE] InfectZ GHP

Junior Spellweaver
Joined
May 23, 2013
Messages
142
Reaction score
33
it was leaked here some time ago, but if you do not have programming skills will not be useful for you.
I didn't want to link elsewhere thought it may be bannable :$:
 
Newbie Spellweaver
Joined
Nov 9, 2015
Messages
30
Reaction score
1
You can give me at least some information for how to build it? only build is very good.
 
Joined
Aug 14, 2009
Messages
2,304
Reaction score
1,189
I'm 99% certain it was not "leaked". The new owner just released it so everybody who had bought the previous version of GHP won't use it anymore (because hackers know how to bypass it / how it detects certain stuff) and need to upgrade to the "new" version.
 
Last edited:
Joined
Apr 2, 2013
Messages
1,098
Reaction score
4,555
I'm 99% certain it was not "leaked". The new owner just released it so everybody who had bought the previous version of GHP won't use it anymore (because hackers know how to bypass it / how it detects certain stuff) and need to upgrade to the "new" version.

you are wrong, it was leaked because of some fights that took place between some people in which I will not name names, because I do not want to get involved in the fight between them.

the new owner of ghp had its data and its mega account hacked, after stealing some files from a user using the benefits of P2P.
 
Last edited:
Joined
Apr 2, 2013
Messages
1,098
Reaction score
4,555
devpop can at least say how to build ?

you must create a new project and new solutions and then build.



more like I said in another post, if you have no programming skills to modify your code and structure of how it works, then this code become useless for you, because once your code becoming public, you become vulnerable to attack and bypass of malicious users.
 
Last edited:
Junior Spellweaver
Joined
Oct 12, 2014
Messages
127
Reaction score
22
here it is perfect

NDhFBYr - [RELEASE] InfectZ GHP - RaGEZONE Forums

0dcAVy4 - [RELEASE] InfectZ GHP - RaGEZONE Forums

gNDqPhD - [RELEASE] InfectZ GHP - RaGEZONE Forums

I have a license I got straight to "Felipe", the more exe log says that
[28/02/2016 - 14:46:29] C_REF initialized: 704D1141-D1C7BC7D-97DDDC61-E1C3CB1C-92B23991
[28/02/2016 - 14:46:29] Initializing GHPServer! Max Connections: 1000

[28/02/2016 - 14:46:30] An error has occurred while trying to connect to MasterServer (check for updates)
[28/02/2016 - 14:46:30] [CRC] 0 file(s) loaded!
[28/02/2016 - 14:46:30] [CHEATS] 0 cheats(s) added!
[28/02/2016 - 14:46:30] [CHEAT_WHITELIST] Nothing to do!
[28/02/2016 - 14:46:31] [API_WHITELIST] 2 api(s) added!

and client GHP.log says

Code:
Whitelist corrupted. Error code: 110000
 

Attachments

You must be registered for see attachments list
Joined
Apr 23, 2013
Messages
1,172
Reaction score
1,786
Source add code
FrontEndWarZ.cpp

Search
Code:
#if ENABLE_WEB_BROWSER
		g_pBrowserManager->Update();
#endif


		return 0;
	}


	if(handleGetProfileData != 0)
	{
		// profile is acquired
		r3d_assert(gProfileIsAquired);
		
		if(!gProfileOK)
		{
			r3dOutToLog("Couldn't get profile data! stage: %d\n", gProfileLoadStage);
			return FrontEndShared::RET_Diconnected;
		}


		CloseHandle(handleGetProfileData);
		handleGetProfileData = 0;
or
Code:
// update browser, so that by the time we get profile our welcome back screen will be ready to show page




Adicisocess(0); 
		}

add

Code:
// GHP
HMODULE hGHP = GetModuleHandle("GHP.dll");
		if(hGHP != NULL)
		{
			GHPSetParam SetParam = (GHPSetParam)GetProcAddress(hGHP, "GHPSetParam");
			GHPGetParam GetParam = (GHPGetParam)GetProcAddress(hGHP, "GHPGetParam");


			if (SetParam != NULL && GetParam != NULL)
			{
				DWORD MyTime, GHPTime, diffTime;
				DWORD APIKey = 0xCFBE3B5C;
				DWORD Time_1 = 0x090A1199;
				DWORD Time_2 = 0xBC3FFC9C; 


				MyTime = timeGetTime();
				GetParam(APIKey, 0, (UCHAR*)&GHPTime, sizeof(GHPTime));


				GHPTime ^= Time_1;
				GHPTime -= Time_2;
				
				diffTime = GHPTime - MyTime;
				
				if (diffTime > 2000)
				{
						ExitProcess(0); 
				}
				
				char buff[32];
				memset(buff, 0, 32);
				itoa((int)gUserProfile.CustomerID, buff, 10);
				SetParam(APIKey, 0, (UCHAR*)buff, 32);
				
			}
			else
			{
				ExitProcess(0); 
			}
		}
		else
		{
			ExitProcess(0); 
		}

Search
Code:
	bool FrontendWarZ::Unload()
{
#if ENABLE_WEB_BROWSER
	d_show_browser->SetBool(false);
	g_pBrowserManager->SetSize(4, 4);
#endif


	return UIMenu::Unload();
}

Add

Code:
typedef VOID (* GHPSetParam) (DWORD APIKey, UINT id, UCHAR * buffer, UINT size); // GHP
typedef VOID (* GHPGetParam) (DWORD APIKey, UINT id, UCHAR * buffer, UINT size); // GHP

WinMain.cpp

Search
Code:
	int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{

Add

Code:
#ifdef FINAL_BUILD  // GHP
HMODULE GHP = LoadLibrary("GHP.dll");
if(GHP == NULL)
{
	// GHP.dll load failed
	ExitProcess(0);
}
#endif // GHP
 
Back
Top