Thread: Nickname Hider

Results 1 to 13 of 13
  1. #1
    Jabberwock's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    1,735
    Reputation
    191
    Thanks
    15,692
    My Mood
    Relaxed

    Nickname Hider

    So one requested the source code and here I'm releasing it.

    Code:
    #include <windows.h>
    
    void mainP()
    {
    	unsigned long address;
    
    	// Could be injected earlier than expected
    
    	do
    	{
    		address = (unsigned long)GetModuleHandle("AVA.exe");
    		Sleep(100);//Not to overload the CPU
    	} while(address == NULL);
    
    	Beep(750, 300);
    	
    	address = address + 0x01BFC478;
    
    	while(*(unsigned long*)address == NULL) Sleep(100);//Not to overload the CPU
    	
    	address = *(unsigned long*)address + 0x90;
    
    	while(*(unsigned long*)address == NULL) Sleep(100);//Not to overload the CPU
    
    	address = *(unsigned long*)address + 0x24;
    
    	while(*(unsigned long*)address == NULL) Sleep(100);//Not to overload the CPU
    
    	int x = wcslen((wchar_t*)address)-1;
    
    	for(int i=0; i < x; i++)
    	{
    		*(wchar_t*)(address + 2*i) = 0;
    	}
    }
    
    bool WINAPI DllMain(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved)
    {
    	DisableThreadLibraryCalls(hDLLInst);
    
    	if (fdwReason == DLL_PROCESS_ATTACH)
    	{
    		if (CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)mainP, NULL, 0, NULL) == NULL) // Creating a new thread in the process "AVA"
    		{
    			MessageBox(NULL, "Couldn't create a thread to execute within the virtual address space of the calling process.", "ERROR", MB_OK | MB_ICONERROR);
    			return false;
    		}
    	}
    	else if (fdwReason == DLL_PROCESS_DETACH)
    	{
    		// No need for anything here
    		
    	}
    	
    	return true;
    }

  2. The Following 3 Users Say Thank You to Jabberwock For This Useful Post:

    aarguellocr (10-12-2012),AlvinGenius (10-11-2012),DarkSt0rmX (08-05-2012)

  3. #2
    zZzeta/S's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Germany
    Posts
    1,061
    Reputation
    43
    Thanks
    2,100
    Hm nice, but for my self, i use a different method for the pointer & offsetpart
    Quote Originally Posted by Jabberwo0ck View Post
    Quote Originally Posted by uNrEaL View Post
    Cool, thanks!
    Ccman has gone too low. I've known for a long time he was sneaky.
    >top lel much crack many get so download wow

  4. #3
    Jabberwock's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    1,735
    Reputation
    191
    Thanks
    15,692
    My Mood
    Relaxed
    If you are nice enough, could you give me a tutorial how to do it your way?

  5. #4
    darkcloaks's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    My Mood
    Doubtful
    where this work?, you can put tutorial?

  6. #5
    u.A.v.A's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    640
    Reputation
    17
    Thanks
    633
    you need to update your address, sir

  7. #6
    dacoolnic12345678910's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    U.S
    Posts
    120
    Reputation
    10
    Thanks
    45
    My Mood
    Cheerful
    All this hack does is change the nickname pointer to a couple rectangles.
    Quote Originally Posted by Jabberwo0ck View Post
    So one requested the source code and here I'm releasing it.

    Code:
    #include <windows.h>
    
    void mainP()
    {
    	unsigned long address;
    
    	// Could be injected earlier than expected
    
    	do
    	{
    		address = (unsigned long)GetModuleHandle("AVA.exe");
    		Sleep(100);//Not to overload the CPU
    	} while(address == NULL);
    
    	Beep(750, 300);
    	
    	address = address + 0x01BFC478;
    
    	while(*(unsigned long*)address == NULL) Sleep(100);//Not to overload the CPU
    	
    	address = *(unsigned long*)address + 0x90;
    
    	while(*(unsigned long*)address == NULL) Sleep(100);//Not to overload the CPU
    
    	address = *(unsigned long*)address + 0x24;
    
    	while(*(unsigned long*)address == NULL) Sleep(100);//Not to overload the CPU
    
    	int x = wcslen((wchar_t*)address)-1;
    
    	for(int i=0; i < x; i++)
    	{
    		*(wchar_t*)(address + 2*i) = 0;
    	}
    }
    
    bool WINAPI DllMain(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved)
    {
    	DisableThreadLibraryCalls(hDLLInst);
    
    	if (fdwReason == DLL_PROCESS_ATTACH)
    	{
    		if (CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)mainP, NULL, 0, NULL) == NULL) // Creating a new thread in the process "AVA"
    		{
    			MessageBox(NULL, "Couldn't create a thread to execute within the virtual address space of the calling process.", "ERROR", MB_OK | MB_ICONERROR);
    			return false;
    		}
    	}
    	else if (fdwReason == DLL_PROCESS_DETACH)
    	{
    		// No need for anything here
    		
    	}
    	
    	return true;
    }

  8. #7
    darkcloaks's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    My Mood
    Doubtful
    how does it work there? what program?

  9. #8
    GZXDQW's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Doubtful
    khay. tanx:=)

  10. #9
    PENl5's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    the code does not work theres a couple warnings with NULL however there is 1 "linked error" to "WinMain@16"

    ---------- Post added at 08:21 AM ---------- Previous post was at 08:20 AM ----------

    any help? ......

  11. #10
    Frought's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    In the dark island
    Posts
    3,403
    Reputation
    156
    Thanks
    5,980
    My Mood
    Cool
    Quote Originally Posted by PENl5 View Post
    the code does not work theres a couple warnings with NULL however there is 1 "linked error" to "WinMain@16"

    ---------- Post added at 08:21 AM ---------- Previous post was at 08:20 AM ----------

    any help? ......
    This Nick name hider patched but you have to find the address then change the address in the source code then it will work

  12. #11
    aarguellocr's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Confused
    Nice work, Im new in this, how can you insert this c++ code in CE? or just work in .dll inyector?
    Maybe you can do a tutorial with this explanaition XD.

    Thks

  13. #12
    Andet123's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    0
    Are there any for Injects?

  14. #13
    lidor009's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by zZzeta/S View Post
    Hm nice, but for my self, i use a different method for the pointer & offsetpart
    how i use in nickname hider? can you look me how to make this?

Similar Threads

  1. Warrock Nicknames And Passwords : 4 mpgh
    By apezwijn in forum WarRock - International Hacks
    Replies: 18
    Last Post: 08-01-2007, 09:45 PM
  2. Unaproved nicknames
    By Benjamin in forum General Game Hacking
    Replies: 0
    Last Post: 04-11-2007, 02:28 PM
  3. [Release] Nickname changer
    By hjerherjdsd in forum WarRock - International Hacks
    Replies: 42
    Last Post: 12-16-2006, 04:24 PM
  4. AllAnonymity.IP.Hider.v2.7-HERiTAGE
    By wardo1926 in forum Hardware & Software Support
    Replies: 12
    Last Post: 11-01-2006, 03:17 PM
  5. Change nickname plz
    By ateu666 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 07-10-2006, 06:59 AM