Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > CrossFire
You last visited: Today at 05:27

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Problem]Hack

Discussion on [Problem]Hack within the CrossFire forum part of the Shooter category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2010
Posts: 24
Received Thanks: 2
Question [Problem]Hack

Ich hab einen Hack geschrieben, doch immer wenn ich diesen injekte, und dann Crossfire starte, kommt Client Error. Das passiert dauernd hab schon mehrere Male versucht.

Gibt auch Thanks wenn der Beitrag hilfreich war ^^
Blubsen456 is offline  
Old 03/02/2011, 16:46   #2
 
elite*gold: LOCKED
Join Date: Feb 2011
Posts: 138
Received Thanks: 41
wenn du uns sagen würdest was für ein hack und wie du den hack gemacht hast würden wir dir helfen !
Metin2.Levler is offline  
Thanks
1 User
Old 03/02/2011, 16:53   #3
 
elite*gold: 0
Join Date: Mar 2010
Posts: 24
Received Thanks: 2
Naja bin neu und glaub eher das ich was falsch gemacht habe aber : In C++ leere DLL gemacht, Base gefixt und Source Codes eingefügt ( NoNadeDamage,NoWeaponWeight ),
dann injekten und Crossfire gecrasht xD

Edit: Ich hab das alles aus reiner Vermutung und Erfahrung und bissl Tut's durchlesen gemacht ^^
Blubsen456 is offline  
Old 03/02/2011, 16:56   #4
 
Dani''s Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 3,397
Received Thanks: 986
Wenn du durch Tuts oder ähnlichen Dingen programmieren gelernt hast kann es sein das dein Programm (Hack) nicht richtig gecodet ist.
Mit reiner Erfahrung klappt das nicht immer^^
Da brauchst du schon Wissen oder ne Ausbildung^^
Dani' is offline  
Thanks
1 User
Old 03/02/2011, 16:57   #5
 
elite*gold: LOCKED
Join Date: Feb 2011
Posts: 138
Received Thanks: 41
dann würde ich dir raten weiter tut´s zu lesen du hast was an der reihen folge oder an den source codes falsch gemacht,kann auch sein falscher injekt Programm.
Metin2.Levler is offline  
Old 03/02/2011, 17:01   #6
 
elite*gold: 0
Join Date: Mar 2010
Posts: 24
Received Thanks: 2
Skeita Injektor ? XD

Naja glaube dann auch eher was falsch gemacht zu haben, ne patched base zu benutzen und die VERSUCHEN zu fixen hat wohl dann nicht geklappt, ich probiers einfach weiter, war vllt. auch net sooo schlau xD

Edit : Ka ob ich das darf aber ich poste jetzt mal die genutzte Base xD :

#include <windows.h>



void __cdecl PushToConsole(char* szVal ) {
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
{
DWORD *LTClient = ( DWORD* )( (dwCShell + ******) );
void* CONoff = ( void* )*( DWORD* )( *LTClient + ****);
_asm
{
push szVal;
call CONoff;
add esp, 4;
}
}
}

void hjk() {
Sleep(3000);
bool nadedamage = true;
bool weaponweight = true;

for(; {


DWORD pWeaponsPtr = *(DWORD*)(hShell + 0x90A4B8);
if (pWeaponsPtr)
{
for (int i = 0; i < 512; i++)
{
DWORD pWeapon = *(DWORD*)(pWeaponsPtr + i * 4);
if (pWeapon)
continue;

*(float*)(pWeapon + 0x754) = 0.0f;
}
}

else {
DWORD pWeaponsPtr = *(DWORD*)(hShell + 0x90A4B8);
if (pWeaponsPtr)
{
for (int i = 0; i < 512; i++)
{
DWORD pWeapon = *(DWORD*)(pWeaponsPtr + i * 4);
if (pWeapon)
continue;

*(float*)(pWeapon + 0x754) = 0.0f;
}
}



DWORD pWeaponsPtr = *(DWORD*)(hShell + 0x90A4B8);
if (pWeaponsPtr)
{
for (int i = 0; i < 512; i++)
{
DWORD pWeapon = *(DWORD*)(pWeaponsPtr + i * 4);
if (pWeapon)
continue;

*(float*)(pWeapon + 0x1F88) = 0.0f;
}
}

else {
DWORD pWeaponsPtr = *(DWORD*)(hShell + 0x90A4B8);
if (pWeaponsPtr)
{
for (int i = 0; i < 512; i++)
{
DWORD pWeapon = *(DWORD*)(pWeaponsPtr + i * 4);
if (pWeapon)
continue;

*(float*)(pWeapon + 0x1F88) = 0.0f;
}
}



DWORD WINAPI das(LPVOID) {
while(GetModuleHandleA("CShell.dll") == NULL ) {
Sleep(100);
}
hjk();
return 0;
}

BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
CreateThread(NULL, NULL,das, NULL, NULL, NULL);
}
return TRUE;
}

oder xD :

#include <windows.h>
#include <iostream>

using namespace std;

void __cdecl PushToConsole(char* szVal ) {
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
{
DWORD *LTClient = ( DWORD* )( (dwCShell + 0x299D40) );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
_asm
{
push szVal;
call CONoff;
add esp, 4;
}
}
}


DWORD WINAPI hello(LPVOID) {
while(GetModuleHandleA("CShell.dll") == NULL ) {
Sleep(100); //100ms
}


bool NadeDamage = false;
bool WeaponWeight = false;



for(; {
__asm pushad;
if(GetAsyncKeyState(VK_NUMPAD1)&1) {
NadeDamage = !NadeDamage;
}
if(GetAsyncKeyState(VK_NUMPAD2)&1) {
WeaponWeight = !WeaponWeight;
}



Sleep(100);
__asm popad;

if (NadeDamage) {
DWORD pWeaponsPtr = *(DWORD*)(hShell + 0x90A4B8);
if (pWeaponsPtr)
{
for (int i = 0; i < 512; i++)
{
DWORD pWeapon = *(DWORD*)(pWeaponsPtr + i * 4);
if (pWeapon)
continue;

*(float*)(pWeapon + 0x754) = 0.0f;
}
}



if (WeaponWeight) {
DWORD pWeaponsPtr = *(DWORD*)(hShell + 0x90A4B8);
if (pWeaponsPtr)
{
for (int i = 0; i < 512; i++)
{
DWORD pWeapon = *(DWORD*)(pWeaponsPtr + i * 4);
if (pWeapon)
continue;

*(float*)(pWeapon + 0x1F88) = 0.0f;
}
Blubsen456 is offline  
Old 03/02/2011, 17:15   #7
 
elite*gold: LOCKED
Join Date: Feb 2011
Posts: 138
Received Thanks: 41
gute eigenschaft nicht aufgeben
Metin2.Levler is offline  
Reply


Similar Threads Similar Threads
Client problem dmg hack und kick hack fixxen
01/24/2011 - Metin2 Private Server - 1 Replies
Hi epvp ich habe folgende frage: "Gibt es evt. eine möglichkeit was gegen Hacker zumachen, sodass sie keine Hacks mehr benutzen können außer auf den 2010Client zumzusteigen?"
HACK PROBLEM
01/16/2011 - WarRock - 2 Replies
Habe Fesplatte formartiert seitem geht kein WR hack mehr bitte hilfe.
Wall hack + Vac hack problem
03/27/2008 - Dekaron - 1 Replies
Vac and wall hack dont works, only 3mobs follow in avalon:(
vac hack and speed hack problem
03/18/2008 - Dekaron - 2 Replies
Why dont follow mobs dungeon A? Why dc speed hack 10-20 sec all? Pls vac hack dungeon A follow mobs, and wall hack. I dont find:( Sorry bad english. Thanks



All times are GMT +1. The time now is 05:28.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.