View Poll Results: How i do

Voters
75. This poll is closed
  • FAIL

    44 58.67%
  • good job

    31 41.33%

Thread: Noob injector

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 50
  1. #1
    e036238's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    'murica
    Posts
    400
    Reputation
    10
    Thanks
    46
    My Mood
    Psychedelic

    Noob injector

    ok guys my first hack(or maybe not) a noob injector.
    you need to rename the dll to inject.dll thats why noob injector.
    heres screenie



    virus:
    Virustotal. MD5: 33e4bdd28da3ed61008f6b757d301c4e Suspicious.Insight
    Inject.exe MD5:33e4bdd28da3ed61008f6b757d301c4e - VirSCAN.org Scanners did not find malware!
    Symantec always detect vb projects so its not virus

    plz download

  2. The Following 5 Users Say Thank You to e036238 For This Useful Post:

    alexishudon (03-27-2010),Demistylez (07-25-2012),dura2 (04-02-2010),im_crazy_see (04-24-2010),Xlilzoosk8rX (04-03-2010)

  3. #31
    Ludious's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Where it is Warm.
    Posts
    910
    Reputation
    21
    Thanks
    32
    My Mood
    Pensive
    copy and paste takes effort too! lol

  4. #32
    sherkun's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In My World
    Posts
    131
    Reputation
    11
    Thanks
    90
    My Mood
    Sick

    Thumbs up

    Quote Originally Posted by e036238 View Post
    ok guys my first hack(or maybe not) a noob injector.
    you need to rename the dll to inject.dll thats why noob injector.
    heres screenie



    virus:
    Virustotal. MD5: 33e4bdd28da3ed61008f6b757d301c4e Suspicious.Insight
    Inject.exe MD5:33e4bdd28da3ed61008f6b757d301c4e - VirSCAN.org Scanners did not find malware!
    Symantec always detect vb projects so its not virus

    plz download
    Its not a nooby injector. At least you tried. By the way, its nicely made. If it wasn't made by you, I'll take my words back. Give the creater some credits for leeching it if so.

  5. #33
    mrperkins's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Under Your Bed
    Posts
    160
    Reputation
    10
    Thanks
    13
    My Mood
    Breezy
    Stop Hatin On His Noob Injector,... 1 time Not Bad At All Ive seen way worst,..


    and yall hating on his injector,. ive never seen you make one?!?

  6. #34
    e036238's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    'murica
    Posts
    400
    Reputation
    10
    Thanks
    46
    My Mood
    Psychedelic
    ahahahaha just lookin at this post makes me lol rofl and xD

  7. #35
    dylan40's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In ya head yo. oya.
    Posts
    851
    Reputation
    11
    Thanks
    136
    My Mood
    Happy
    is this your code! ?
    Code:
    Public Class Form1
    
        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()
            On Error GoTo 1 ' If error occurs, app will close without any error messages
            Timer1.Stop()
            Dim TargetProcess As Process() = Process.GetProcessesByName("WarRock")
            TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
            pszLibFileRemote = Application.StartupPath & "\" + ExeName + ".dll"
            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)
            CloseHandle(TargetProcessHandle)
    1:      Me.Close()
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            If IO.File.Exists(Application.StartupPath & "\" + ExeName + ".dll") Then
                Dim TargetProcess As Process() = Process.GetProcessesByName("HSUpdate")
                If TargetProcess.Length = 0 Then
                    Me.TextBox1.Text = ("Waiting for Warrock.exe")
                    Me.TextBox2.Text = ("Let´s Hack")
                Else
                    Timer1.Stop()
                    Me.TextBox1.Text = "Done..."
                    Call Inject()
                End If
            Else
                Me.TextBox1.Text = ("" + ExeName + ".dll not found")
                Me.TextBox2.Text = ("Rename the .dll To " + "" + ExeName)
            End If
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Timer1.Interval = 50
            Timer1.Start()
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            MsgBox("Thats the Status Box!", MsgBoxStyle******rmation, "Info")
        End Sub
    End Class

  8. #36
    e036238's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    'murica
    Posts
    400
    Reputation
    10
    Thanks
    46
    My Mood
    Psychedelic
    if its from youtube yes it is

  9. #37
    IHelper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Ask me tommorow
    Posts
    4,797
    Reputation
    53
    Thanks
    2,056
    My Mood
    Amazed
    Give him a break. Its his first time/programme
    You want respect
    Earn it.

  10. #38
    rayhvh's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    in your hard drive
    Posts
    710
    Reputation
    13
    Thanks
    49
    My Mood
    Sneaky
    need multy..
    EXTREEM SMALL SIGNATURE

  11. #39
    e036238's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    'murica
    Posts
    400
    Reputation
    10
    Thanks
    46
    My Mood
    Psychedelic
    multy?<to short>

  12. #40
    Ludious's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Where it is Warm.
    Posts
    910
    Reputation
    21
    Thanks
    32
    My Mood
    Pensive
    Quote Originally Posted by e036238 View Post
    multy?<to short>
    i think he/she meant a multi dll inject...

  13. #41
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    Do we have to manually write the DLL files, Path into the textbox

    For example
    Code:
    C:/Proggramfiles>Hack
    I'm back.

  14. #42
    e036238's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    'murica
    Posts
    400
    Reputation
    10
    Thanks
    46
    My Mood
    Psychedelic
    no just put the injector with the .dll and rename to Inject.dll

  15. #43
    Centarion's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    108
    Reputation
    10
    Thanks
    7
    NOOB ENEJCTOR NAICE!!!!

    [IMG]https://i487.photobucke*****m/albums/rr240/centarion305/gordoncent.jpg[/IMG]

  16. #44
    IHelper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Ask me tommorow
    Posts
    4,797
    Reputation
    53
    Thanks
    2,056
    My Mood
    Amazed
    Quote Originally Posted by Centarion View Post
    NOOB ENEJCTOR NAICE!!!!
    dont you mean nice
    You want respect
    Earn it.

  17. #45
    murderer's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    79
    Reputation
    10
    Thanks
    5
    My Mood
    Relaxed
    still work?

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Release] [Take][NL][Noob] Injector
    By [Take][NL][Noob] in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 2
    Last Post: 09-24-2011, 08:10 AM
  2. Working Injectors (Noob Friendly)
    By cwafflez in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 306
    Last Post: 03-11-2011, 03:17 PM
  3. Help with Perx Injector-Noob's Hack 9-30-10
    By SkullistE1 in forum Combat Arms Help
    Replies: 9
    Last Post: 10-01-2010, 08:29 PM
  4. Perx+Valkyrie Injector [Noob Friendly] *Updated Regularly*
    By IHelper in forum Combat Arms Discussions
    Replies: 120
    Last Post: 05-16-2010, 01:05 AM
  5. The Perx Injector/Valkrie Injector [NOOB FRIENDLY]
    By IHelper in forum Combat Arms Discussions
    Replies: 43
    Last Post: 02-11-2010, 02:55 PM