EMO Style ForumPro - Hos Geldiniz
C# Develop Bazı Koxp Fonksiyonları Uyeols10

Join the forum, it's quick and easy

EMO Style ForumPro - Hos Geldiniz
C# Develop Bazı Koxp Fonksiyonları Uyeols10
EMO Style ForumPro - Hos Geldiniz
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Giriş yap

Şifremi unuttum

Istatistikler
Toplam 203 kayıtlı kullanıcımız var
Son kaydolan kullanıcımız: crayzboy76

Kullanıcılarımız toplam 1186 mesaj attılar bunda 862 konu
Tarıyıcı
 Kapı
 Indeks
 Üye Listesi
 Profil
 SSS
 Arama
Arama
 
 

Sonuç :
 


Rechercher çıkıntı araştırma

RSS akısı


Yahoo! 
MSN 
AOL 
Netvibes 
Bloglines 


Anahtar-kelime

kutu  loot  pointer  

Kimler hatta?
Toplam 10 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 10 Misafir

Yok

[ Bütün listeye bak ]


Sitede bugüne kadar en çok 217 kişi C.tesi Tem. 29, 2017 1:46 am tarihinde online oldu.
En son konular
» İnternetten Para Kazandıran Oyun ! Ödeme Alt Limiti Yok ! DEV KONU
C# Develop Bazı Koxp Fonksiyonları I_icon_minitimeCuma Ağus. 29, 2014 8:33 am tarafından Hello EMO

» goldenchase.net maden yaparak para kazanma
C# Develop Bazı Koxp Fonksiyonları I_icon_minitimeCuma Ağus. 29, 2014 8:18 am tarafından Hello EMO

» etichal hacker görsel egitim seti
C# Develop Bazı Koxp Fonksiyonları I_icon_minitimeÇarş. Ağus. 06, 2014 4:57 am tarafından Hello EMO

» KO TBL Source C#
C# Develop Bazı Koxp Fonksiyonları I_icon_minitimePtsi Ara. 09, 2013 6:36 am tarafından Hello EMO

» x86 Registers
C# Develop Bazı Koxp Fonksiyonları I_icon_minitimeC.tesi Ağus. 24, 2013 5:02 am tarafından Hello EMO

» [Tutorial] Pegando Address, Pointers de WYD
C# Develop Bazı Koxp Fonksiyonları I_icon_minitimeÇarş. Tem. 10, 2013 7:25 am tarafından Hello EMO

» [Tutorial] Pegando Address, Pointers de CS Metodo²
C# Develop Bazı Koxp Fonksiyonları I_icon_minitimeÇarş. Tem. 10, 2013 7:23 am tarafından Hello EMO

» [Tutorial] Aprendendo basico deASM OLLYDBG
C# Develop Bazı Koxp Fonksiyonları I_icon_minitimeÇarş. Tem. 10, 2013 7:22 am tarafından Hello EMO

» Basic C# DLL injector
C# Develop Bazı Koxp Fonksiyonları I_icon_minitimePtsi Tem. 08, 2013 7:48 am tarafından Hello EMO

Reklam

C# Develop Bazı Koxp Fonksiyonları

Aşağa gitmek

C# Develop Bazı Koxp Fonksiyonları Empty C# Develop Bazı Koxp Fonksiyonları

Mesaj tarafından Hello EMO Ptsi Haz. 06, 2011 3:53 am

[QUOTE=Ricky;146]
Kod:
      [COLOR="SeaGreen"] /*Ricky*/[/COLOR]
[COLOR="#2e8b57"]        /* ReadByteInt32*/[/COLOR]
        public Byte[] ReadBytesInt32 = new Byte[sizeof(Int32)];//Needed for the ReadMemory Function
      [COLOR="#2e8b57"] /* ReadBytesFloat*/[/COLOR]
        public Byte[] ReadBytesFloat = new Byte[sizeof(float)];//Needed for the ReadMemory Function
      [COLOR="#2e8b57"] /* ReadMemory*/[/COLOR]
        public Byte[] ReadMemory(IntPtr Handle, IntPtr Address){ReadProcessMemory(Handle, Address, ReadBytesInt32, sizeof(Int32), 0);return ReadBytesInt32;}
        [COLOR="#2e8b57"]/* ReadMemory*/[/COLOR]
        public Byte[] ReadMemory(IntPtr Handle, IntPtr Address, Boolean Float){ReadProcessMemory(Handle, Address, ReadBytesFloat, sizeof(float), 0);return ReadBytesFloat;}
        [COLOR="#2e8b57"]/* ReadMemory*/[/COLOR]
        public Byte[] ReadMemory(IntPtr Handle, IntPtr Address, Byte[] ReadBytes, long nSize){ReadProcessMemory(Handle, Address, ReadBytes, nSize, 0);return ReadBytes;}
        [COLOR="#2e8b57"]/* FindHandle*/[/COLOR]
        public IntPtr FindHandle(String FileName){IntPtr handle = LoadLibrary(FileName);FreeLibrary(handle);return handle;}
      [COLOR="#2e8b57"] /* FindModuleHandle*/[/COLOR]
        public IntPtr FindModuleHandle(String ModuleName){IntPtr[] hModules = new IntPtr[256];Int32 BytesReturned = 0;int TotalModules = 0;Byte[] FileName = new byte[128];EnumProcessModules(GameProcessHandle, ref hModules[0], (Marshal.SizeOf(hModules)), ref BytesReturned);while (hModules[TotalModules] != new IntPtr(0)){TotalModules++;}TotalModules = TotalModules / 4;int i = 0;for (i = 1; i < TotalModules; i++){IntPtr xxx = GetModuleFileNameExA(GameProcessHandle, hModules[i], ref FileName[0], 128);if (ByteToString(FileName).Contains("dinput8"))break;}return hModules[i];}
        [COLOR="#2e8b57"]/* GetHandle*/[/COLOR]
        private Boolean GetHandle(String WindowName){GameWindowHandle = FindWindow(null, WindowName);if (GameWindowHandle != IntPtr.Zero)return true;else
        return false;}
        [COLOR="#2e8b57"]/* GmaePID*/[/COLOR]
        private Boolean GetGamePID(IntPtr Handle){GamePID = 0;GetWindowThreadProcessId(Handle, ref GamePID);if (GamePID != 0)return true;else
        return false;}
        [COLOR="#2e8b57"]/* GameProcessHandle*/[/COLOR]
        private Boolean GetGameProcessHandle(Int32 GamePID){GameProcessHandle = OpenProcess(PROCESS_ALL_ACCESS, false, GamePID);if (GameProcessHandle != IntPtr.Zero)return true;else
        return false;}
        [COLOR="#2e8b57"]/* FindDLLFunc*/[/COLOR]
        public IntPtr FindDLLFunc(String pDLLName, String pFuncName, IntPtr Handle){IntPtr LoadAddr, ProcAddr = IntPtr.Zero, offset = IntPtr.Zero;LoadAddr = LoadLibrary(pDLLName);if (LoadAddr != IntPtr.Zero){ProcAddr = GetProcAddress(LoadAddr, pFuncName);offset = new IntPtr(Convert.ToInt32(ProcAddr.ToString()) - Convert.ToInt32(LoadAddr.ToString()));FreeLibrary(LoadAddr);}else
        return IntPtr.Zero;return ProcAddr;}
        [COLOR="#2e8b57"]/* GetModuleInfo*/[/COLOR]
        public MODULEINFO GetModuleInfo(IntPtr Handle, IntPtr moduleHandle){MODULEINFO moduleInfo = new MODULEINFO();GetModuleInformation(Handle, moduleHandle, ref moduleInfo, Marshal.SizeOf(moduleInfo));return moduleInfo;}
        [COLOR="#2e8b57"]/* WriteMemory*/[/COLOR]
        public Int32 WriteMemory(IntPtr Handle, IntPtr Address, Int32 Value){return WriteProcessMemory(Handle, Address, BitConverter.GetBytes(Value), sizeof(Int32), 0);}
      [COLOR="#2e8b57"][COLOR="#2e8b57"] /* WriteMemory*/[/COLOR][/COLOR]
        public Int32 WriteMemory(IntPtr Handle, IntPtr Address, float Value){return WriteProcessMemory(Handle, Address, BitConverter.GetBytes(Value), sizeof(float), 0);}
        [COLOR="#2e8b57"]/* ActiveWindowName*/[/COLOR]
        public String ActiveWindowName(){Byte[] WinName = new byte[128];IntPtr activeWindowhandle = GetForegroundWindow();try{GetWindowText(activeWindowhandle, ref WinName[0], 128);}catch (Exception ex){}return ByteToString(WinName);}
      [COLOR="#2e8b57"] /* ByteToString*/[/COLOR]
        private String ByteToString(Byte[] inputBytes){String convertedString = "";int count = 0;while (inputBytes[count] != 0)/*Find Length*/count++;for (int i = 0; i < count; i++)convertedString += Convert.ToChar(inputBytes[i]).ToString();return convertedString; }
[/QUOTE]
Hello EMO
Hello EMO
EMO Team
EMO Team

Cinsiyet : Erkek
Burçlar : Yay
Yılan
Mesaj Sayısı : 935
Puan : 384393
Rep Puanı : 18
Doğum tarihi : 28/11/89
Kayıt tarihi : 21/07/09
Yaş : 34
Nerden : EMO WorlD
İş/Hobiler : RCE Student / Game Hacking / Learn Beginner C#,C++,Delphi
Lakap : EMO

https://emostyle.yetkinforum.com

Sayfa başına dön Aşağa gitmek

Sayfa başına dön

- Similar topics

 
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz