csh , obj, bin, güncel kodları lazım

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Onaylı Üye
Katılım
17 Ara 2015
Mesajlar
66
Tepki puanı
1
Ödüller
9
10 HİZMET YILI
Arkadaşlar güncel olan csh bin obj kodlarını atarmısınız ve bunları nasıl tek timere koyarım ?
 
Isse Kun
Emektar Üye
Katılım
15 May 2017
Mesajlar
4,801
Çözümler
5
Tepki puanı
2,106
Ödüller
15
Sosyal
9 HİZMET YILI
Kod:
Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
        For Each moz As System.Diagnostics.ProcessModule In p.Modules
            If moz.FileName.IndexOf("csh") <> -1 Then
                Label10.Text = moz.BaseAddress.ToString
            End If
            If moz.FileName.IndexOf("bin") <> -1 Then
                Label11.Text = moz.BaseAddress.ToString
            End If
        Next
Bunları tek timer'a koyabilirsin fakat obj'yi checkbox'a yazdığın pointer ile yazmalısın yani şöyle

Kod:
If CheckBox11.Checked = True Then
            Dim s As Process = Process.GetProcessesByName("wolftü.bin")(0)
            For Each moz As System.Diagnostics.ProcessModule In s.Modules
                If moz.FileName.IndexOf("obj") <> -1 Then
                    Label12.Text = moz.BaseAddress.ToString
                End If
            Next
            WriteLong("wolftü.bin", Label12.Text + &HE597, "1574503796") 'All Fraze Player On
        End If
        If CheckBox11.Checked = False Then
            Dim s As Process = Process.GetProcessesByName("wolftü.bin")(0)
            For Each moz As System.Diagnostics.ProcessModule In s.Modules
                If moz.FileName.IndexOf("obj") <> -1 Then
                    Label12.Text = moz.BaseAddress.ToString
                End If
            Next
            WriteLong("wolftü.bin", Label12.Text + &HE597, "1574503797 ") 'All Fraze Player Of
        End If
 
Onaylı Üye
Katılım
30 Tem 2017
Mesajlar
65
Tepki puanı
3
Ödüller
6
Yaş
40
8 HİZMET YILI
ExPlus bu kodları nereye veya nerden yazıcaz yazıyorum yazıyorum cevap gelmiyor
 
Bilinmiyor
Efsane Üye
Katılım
26 Şub 2016
Mesajlar
4,271
Çözümler
3
Tepki puanı
792
Ödüller
13
10 HİZMET YILI
Visual Studio bak sen
 
Bir kere güldü, konu nerelere geldi.
Banlı Üye
Katılım
19 Ara 2017
Mesajlar
1,755
Çözümler
1
Tepki puanı
983
8 HİZMET YILI
kardeş bilmiyorsan öğrende gel sorma
 
Onaylı Üye
Katılım
30 Mar 2017
Mesajlar
96
Tepki puanı
24
Ödüller
7
9 HİZMET YILI
İnternette var. 22 dakika bile fazla gelir. Ama buraya konu açarak 3 dakkaya kadar indirebilirsin :D
 
Onaylı Üye
Katılım
25 Şub 2016
Mesajlar
66
Tepki puanı
4
Yaş
25
10 HİZMET YILI
Dim enumerator As IEnumerator

Dim process As Process = process.GetProcessesByName("wolftü.bin")(0)

Try

enumerator = process.Modules.GetEnumerator

Do While enumerator.MoveNext

Dim current As ProcessModule = DirectCast(enumerator.Current, ProcessModule)

If (current.FileName.IndexOf("csh") <> -1) Then

Me.Label1.Text = current.BaseAddress.ToString

End If

If (current.FileName.IndexOf("wolftü.bin") <> -1) Then

Me.Label2.Text = current.BaseAddress.ToString

End If

If (current.FileName.IndexOf("obj") <> -1) Then

Me.Label3.Text = current.BaseAddress.ToString

End If

Loop

Finally

If TypeOf enumerator Is IDisposable Then

TryCast(enumerator, IDisposable).Dispose()

End If

End Try oto cekme
 
Üye
Katılım
3 Mar 2018
Mesajlar
4
Tepki puanı
0
Yaş
25
8 HİZMET YILI
orası neden wolftü.bin / wolftü.bin değilmi
 
Uzman Üye
Katılım
17 Mar 2018
Mesajlar
165
Tepki puanı
37
Yaş
24
8 HİZMET YILI
arkadaşlar kolay yolu var bence böyle yazın

Oto Csh :

On Error Resume Next
Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("csh") <> -1 Then
Label1.Text = moz.BaseAddress.ToString
End If
Next






Oto Bin :

On Error Resume Next
Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("bin") <> -1 Then
Label2.Text = moz.BaseAddress.ToString
End If
Next
WritePointerInteger("wolftü.bin", Label2.Text + &H28DA4C, "1", &H14, &H120, &H464)




Oto Obj ( ama timere kodla enable true yap injertal 1 yap) :

On Error Resume Next
Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("obj") <> -1 Then
Label3.Text = moz.BaseAddress.ToString
End If
Next
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst