EMO Style ForumPro - Hos Geldiniz
Running KO's Password Crypt Function in C# Uyeols10

Join the forum, it's quick and easy

EMO Style ForumPro - Hos Geldiniz
Running KO's Password Crypt Function in C# 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 3 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 3 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
Running KO's Password Crypt Function in C# I_icon_minitimeCuma Ağus. 29, 2014 8:33 am tarafından Hello EMO

» goldenchase.net maden yaparak para kazanma
Running KO's Password Crypt Function in C# I_icon_minitimeCuma Ağus. 29, 2014 8:18 am tarafından Hello EMO

» etichal hacker görsel egitim seti
Running KO's Password Crypt Function in C# I_icon_minitimeÇarş. Ağus. 06, 2014 4:57 am tarafından Hello EMO

» KO TBL Source C#
Running KO's Password Crypt Function in C# I_icon_minitimePtsi Ara. 09, 2013 6:36 am tarafından Hello EMO

» x86 Registers
Running KO's Password Crypt Function in C# I_icon_minitimeC.tesi Ağus. 24, 2013 5:02 am tarafından Hello EMO

» [Tutorial] Pegando Address, Pointers de WYD
Running KO's Password Crypt Function in C# I_icon_minitimeÇarş. Tem. 10, 2013 7:25 am tarafından Hello EMO

» [Tutorial] Pegando Address, Pointers de CS Metodo²
Running KO's Password Crypt Function in C# I_icon_minitimeÇarş. Tem. 10, 2013 7:23 am tarafından Hello EMO

» [Tutorial] Aprendendo basico deASM OLLYDBG
Running KO's Password Crypt Function in C# I_icon_minitimeÇarş. Tem. 10, 2013 7:22 am tarafından Hello EMO

» Basic C# DLL injector
Running KO's Password Crypt Function in C# I_icon_minitimePtsi Tem. 08, 2013 7:48 am tarafından Hello EMO

Reklam

Running KO's Password Crypt Function in C#

Aşağa gitmek

Running KO's Password Crypt Function in C# Empty Running KO's Password Crypt Function in C#

Mesaj tarafından Hello EMO Cuma Şub. 04, 2011 9:12 am

[quote name='new124tan' timestamp='1296413531' post='58']
Many people know that,KO crypt users password then send,like this if user pass is 1234 ko sends this value EHHERP0
some values :

1230 = 63HERP0
1231 = E9FNSP0
1232 = E3HERP0
1233 = M9FNSP0
1234 = EHHERP0
1235 = MNFNSP0
1236 = MHHERP0
1237 = UNFNSP0

i found that crypt function and use here the C# and asm Codes:

C# Codes:

Kod:
public string sifreDeneme(IntPtr ProcessHandle, string Sifre)
        {
            IntPtr Adres1 = VirtualAllocEx(ProcessHandle, IntPtr.Zero, 1024, MEM_COMMIT, PAGE_READWRITE);
            IntPtr Adres2 = VirtualAllocEx(ProcessHandle, IntPtr.Zero, 1024, MEM_COMMIT, PAGE_READWRITE);
            IntPtr Adres3 = VirtualAllocEx(ProcessHandle, IntPtr.Zero, 1024, MEM_COMMIT, PAGE_READWRITE);

            char[] sifreCharDizi = Sifre.ToCharArray();
            Byte[] sifreBytelar = System.Text.Encoding.ASCII.GetBytes(sifreCharDizi, 0, 1);
            WriteProcessMemory(ProcessHandle, Adres2, sifreBytelar, 1, 0);
            Byte[] sabitSayi = new Byte[] { 0x60, 0x7A, 0x9C, 0x00 };
            WriteProcessMemory(ProcessHandle, Adres3, sabitSayi, 4, 0);

            string pStr = "60B9" + AlignDWORD(Adres1) + "BA" + AlignDWORD(Adres2) + "5168E803000052B9" + AlignDWORD(Adres3) + "BF" + AlignDWORD(new IntPtr(0x0085BAA0)) + "FFD761C3";

            Byte[] pBytes = ConvHEX2ByteArray(pStr);
            ExecuteRemoteCode(pBytes, ProcessHandle);

            Byte[] sonucSifre = new Byte[7];
            ReadProcessMemory(ProcessHandle, Adres1, sonucSifre, 7, 0);
            string sifreString = System.Text.Encoding.ASCII.GetString(sonucSifre);

            VirtualFreeEx(ProcessHandle, Adres1, 0, MEM_RELEASE);
            VirtualFreeEx(ProcessHandle, Adres2, 0, MEM_RELEASE);
            VirtualFreeEx(ProcessHandle, Adres3, 0, MEM_RELEASE);

            return sifreString;
           
        }

and ASM Code

Kod:
03F70025    60              PUSHAD
03F70026    B9 0000F703    MOV ECX,3F70000
03F7002B    BA 0000F803    MOV EDX,3F80000
03F70030    51              PUSH ECX
03F70031    68 E8030000    PUSH 3E8
03F70036    52              PUSH EDX
03F70037    B9 607A9C00    MOV ECX,9C7A60
03F7003C    E8 5FBA8EFC    CALL KnightOn.0085BAA0
03F70041    61              POPAD
03F70042    C3              RET

for 1860 function adress is 0085BAA0

Thanks
[/quote]
Hello EMO
Hello EMO
EMO Team
EMO Team

Cinsiyet : Erkek
Burçlar : Yay
Yılan
Mesaj Sayısı : 935
Puan : 384643
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