Search Text in Process Wow.exe menu

User Tag List

Results 1 to 9 of 9
  1. #1
    AlexF's Avatar Banned
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Search Text in Process Wow.exe

    i want search 1 text in process Wow.exe but it memory verry big,i want fast search



    Code:
    #include <windows.h>
    #include <tlhelp32.h>
    #include <tchar.h>
    #include <stdio.h>
    BOOL GetProcessList( )
    {
    	HANDLE hProcessSnap;
    	PROCESSENTRY32 pe32;
    	hProcessSnap = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 );
    	if( hProcessSnap == INVALID_HANDLE_VALUE )
    	{
    		return( FALSE );
    	}
    	pe32.dwSize = sizeof( PROCESSENTRY32 );
    	if( !Process32First( hProcessSnap, &pe32 ) )
    	{
    		CloseHandle( hProcessSnap );          // clean the snapshot object
    		return( FALSE );
    	}
    	do
    	{
    		if (lstrcmp(pe32.szExeFile,L"TestReadProcessMemory.exe") == 0)
    		{//____________________________doc bo nho tai gia tri 0x0040C0A0
    			HANDLE hProcess = OpenProcess( PROCESS_ALL_ACCESS, FALSE, pe32.th32ProcessID);
    			if(hProcess ==NULL)
    			{
    				printf("\nLoi ham OpenProcess\n");
    				return 0;
    			}
    			char buff[1024];
    			int BytesRead;
    			if (ReadProcessMemory(hProcess, (LPDWORD)(0x0040C0A0),buff, sizeof(buff),(LPDWORD)&BytesRead) ==0)
    			{
    				printf("\nerror ReadProcessMemory\n");
    				return 0;
    			}
    			printf("\n%s",buff);
    		}//________________________________
    	} while( Process32Next( hProcessSnap, &pe32 ) );
    	CloseHandle( hProcessSnap );
    	return( TRUE );
    }
    int main()
    {
    	GetProcessList( );
    	Sleep(10000);
    	return 0;
    }

    Search Text in Process Wow.exe
  2. #2
    DrakeFish's Avatar Lazy Leecher

    Reputation
    634
    Join Date
    Nov 2008
    Posts
    569
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would be good if you actualy asked a question and given some information about what you need.

  3. #3
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DrakeFish View Post
    Would be good if you actualy asked a question and given some information about what you need.

  4. #4
    Jadd's Avatar 🐸
    Reputation
    1511
    Join Date
    May 2008
    Posts
    2,432
    Thanks G/R
    81/333
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    He wants his project to search through all of WoW's code for a specific value. I'm guessing he wants it to be as fast as Cheat Engine or something.

  5. #5
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jadd View Post
    He wants his project to search through all of WoW's code for a specific value. I'm guessing he wants it to be as fast as Cheat Engine or something.
    Which i'm guessing it never will be since Dark Byte is a VERY advanced coder =P

  6. #6
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    Which i'm guessing it never will be since Dark Byte is a VERY advanced coder =P
    Uhm?
    CheatEngine is a very simple application, almost everyone should be able to do it.
    Hey, it compiles! Ship it!

  7. #7
    AlexF's Avatar Banned
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jadd View Post
    He wants his project to search through all of WoW's code for a specific value. I'm guessing he wants it to be as fast as Cheat Engine or something.
    yes,i want my project search Text to be as fast as cheat engine

  8. #8
    WannaBeProgrammer's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AlexF View Post
    yes,i want my project search Text to be as fast as cheat engine
    Just a tip, look at the open-source code^^

  9. #9
    AlexF's Avatar Banned
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    but i dont known Delphi,i want convert part ScanMemory.pas to VC++,can you help me

Similar Threads

  1. VC++ Find Text in Wow.exe By cheat Engine
    By AlexF in forum Programming
    Replies: 0
    Last Post: 02-27-2010, 10:42 AM
  2. Help with targeting WoW.exe process
    By FoamyGod in forum WoW EMU Exploits & Bugs
    Replies: 6
    Last Post: 02-23-2008, 01:58 PM
  3. I deleted my WoW.exe
    By turkeypoo in forum World of Warcraft General
    Replies: 4
    Last Post: 09-02-2007, 04:15 AM
  4. strange command in decompile of wow.exe
    By vivec45 in forum World of Warcraft General
    Replies: 1
    Last Post: 08-25-2007, 07:35 AM
  5. Error in checking WoW.exe CRC code hack?
    By Trichelieu in forum World of Warcraft General
    Replies: 0
    Last Post: 06-11-2006, 02:24 PM
All times are GMT -5. The time now is 09:21 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search