Results 1 to 15 of 15
  1. #1
    MM-killer's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Frankfurt Germany
    Posts
    49
    Reputation
    10
    Thanks
    1,282
    My Mood
    Hot

    Post Blackshot Injector Source Codes UndetecteD

    Hi Guys

    I need Source COdes If anyOne Have Undetected Source Codes Of
    Blackshot Injector

    Then Give Me I will Be Very GreateFull To you
    If You Do

    Thanks
    "Find Me On Facebook & Youtube"


  2. #2
    daviddidi's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    1,185
    Reputation
    13
    Thanks
    1,974
    My Mood
    Doh
    Quote Originally Posted by MM-killer View Post
    Hi Guys

    I need Source COdes If anyOne Have Undetected Source Codes Of
    Blackshot Injector

    Then Give Me I will Be Very GreateFull To you
    If You Do

    Thanks
    Speak me in skype bro

    I want to Develop this World,
    But you Never Tell Me The Source Code ...

    Joined Forum: April 2011

  3. #3
    VeViDo's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    DataBase
    Posts
    43
    Reputation
    44
    Thanks
    155
    My Mood
    Asleep
    Quote Originally Posted by MM-killer View Post
    Hi Guys

    I need Source COdes If anyOne Have Undetected Source Codes Of
    Blackshot Injector

    Then Give Me I will Be Very GreateFull To you
    If You Do

    Thanks
    U can't make an injector source and u call ur self Coder ? take it anyway , GooD luck :
    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)
    Dim DLLFileName As String
    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.Ex ecutablePath)


    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(TextBox1.Text)
    TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
    pszLibFileRemote = OpenFileDialog1.FileName
    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.Show()
    End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Button1.Text = "Browse..."
    Label1.Text = "Waiting for users input"
    Timer1.Interval = 50
    Timer1.Start()
    End Sub


    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    If IO.File.Exists(OpenFileDialog1.FileName) Then
    Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
    If TargetProcess.Length = 0 Then
    Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe")


    Else
    Timer1.Stop()
    Me.Label1.Text = "Successfully Injected!"
    Call Inject()
    End If
    Else


    End If


    End Sub


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    OpenFileDialog1.Filter = "DLL (*.dll) |*.dll|(*.*) |*.*"
    OpenFileDialog1.ShowDialog()
    Dim FileName As String
    FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1 .FileName.LastIndexOf("\"))
    Dim DllFileName As String = FileName.Replace("\", "")
    Me.TextBox2.Text = (DllFileName)
    End Sub
    End Class

  4. #4
    MM-killer's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Frankfurt Germany
    Posts
    49
    Reputation
    10
    Thanks
    1,282
    My Mood
    Hot
    Quote Originally Posted by VeViDo View Post
    U can't make an injector source and u call ur self Coder ? take it anyway , GooD luck :
    when Did I said That Am Coder stupid Noob
    "Find Me On Facebook & Youtube"


  5. #5
    VeViDo's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    DataBase
    Posts
    43
    Reputation
    44
    Thanks
    155
    My Mood
    Asleep
    Quote Originally Posted by MM-killer View Post

    when Did I said That Am Coder stupid Noob
    MrSmith huuuh Don't Make Me Smile Idiot Leecher ..

  6. #6
    MM-killer's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Frankfurt Germany
    Posts
    49
    Reputation
    10
    Thanks
    1,282
    My Mood
    Hot
    Quote Originally Posted by VeViDo View Post
    MrSmith huuuh Don't Make Me Smile Idiot Leecher ..
    i leeched hack becasue Some ONe requsted Me to Give The hack

    So whatz The Wrong about It

    IF i leached Was for You Guys i can have It myself But i didnt U stupid Morron



    For MRsmith I just Give Him sa Example Stupid Brat Dont have Common sens?
    "Find Me On Facebook & Youtube"


  7. #7
    VeViDo's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    DataBase
    Posts
    43
    Reputation
    44
    Thanks
    155
    My Mood
    Asleep
    Quote Originally Posted by MM-killer View Post

    i leeched hack becasue Some ONe requsted Me to Give The hack

    So whatz The Wrong about It

    IF i leached Was for You Guys i can have It myself But i didnt U stupid Morron



    For MRsmith I just Give Him sa Example Stupid Brat Dont have Common sens?
    U Can Give Credits at least But Because Of U There Is No Hacks Right Now Every Hack Released Does not Approved :/ Too Bad Bro

  8. #8
    MM-killer's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Frankfurt Germany
    Posts
    49
    Reputation
    10
    Thanks
    1,282
    My Mood
    Hot
    Quote Originally Posted by VeViDo View Post
    U Can Give Credits at least But Because Of U There Is No Hacks Right Now Every Hack Released Does not Approved :/ Too Bad Bro
    nOOb i GaveHim The Creadit Stupid Moron Didnt U Checked My Thread that i was Created
    "Find Me On Facebook & Youtube"


  9. #9
    elimabiru's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    Behind YOU...
    Posts
    126
    Reputation
    10
    Thanks
    688
    My Mood
    Worried
    Quote Originally Posted by MM-killer View Post
    Hi Guys

    I need Source COdes If anyOne Have Undetected Source Codes Of
    Blackshot Injector

    Then Give Me I will Be Very GreateFull To you
    If You Do

    Thanks

    you can make it undetected if you change some of the code.. try it..

    @MM-killer and @VeViDo WTF of topic ..
    Give me a Thanks if i HELP !

    Making a Hack ! :
    Injector : Done
    Chams : In Progress
    Wallhack : Done
    Wireframe : Not Done
    D3D Menu : Done
    Loader : Done
    Trainer : Done


    Need Help on someone that good at C++ !
    Sorry if i make Mistake !!


    200 Thanks :
    500 Thanks : /me
    800 Thanks :
    1000 Thanks :

  10. #10
    VeViDo's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    DataBase
    Posts
    43
    Reputation
    44
    Thanks
    155
    My Mood
    Asleep
    Quote Originally Posted by elimabiru View Post
    you can make it undetected if you change some of the code.. try it..

    @MM-killer and @VeViDo WTF of topic ..
    Injector Is Not Responsible Of Detection WTF , The DLL File Is Responsible , Tard Go Play Tetris Or Barbie please !

    ---------- Post added at 05:45 PM ---------- Previous post was at 05:43 PM ----------

    Quote Originally Posted by MM-killer View Post

    nOOb i GaveHim The Creadit Stupid Moron Didnt U Checked My Thread that i was Created
    WTF So Why U Think All Of Those Topics Are Deleted By Moderateur , Adverts from B_S_V_I_P only ! i Don't Think So

  11. #11
    elimabiru's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    Behind YOU...
    Posts
    126
    Reputation
    10
    Thanks
    688
    My Mood
    Worried
    Quote Originally Posted by VeViDo View Post
    Injector Is Not Responsible Of Detection WTF , The DLL File Is Responsible , Tard Go Play Tetris Or Barbie please !

    ---------- Post added at 05:45 PM ---------- Previous post was at 05:43 PM ----------


    WTF So Why U Think All Of Those Topics Are Deleted By Moderateur , Adverts from B_S_V_I_P only ! i Don't Think So
    are you blind or what ?
    look what he says Undetected so i teach him idiot
    Give me a Thanks if i HELP !

    Making a Hack ! :
    Injector : Done
    Chams : In Progress
    Wallhack : Done
    Wireframe : Not Done
    D3D Menu : Done
    Loader : Done
    Trainer : Done


    Need Help on someone that good at C++ !
    Sorry if i make Mistake !!


    200 Thanks :
    500 Thanks : /me
    800 Thanks :
    1000 Thanks :

  12. #12
    KenshinCoder's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    389
    My Mood
    Relaxed
    @MM-killer

    here bro



    Hope i help.

    Code in discription
    Last edited by KenshinCoder; 04-18-2013 at 09:04 PM. Reason: Code
    We Win not by Playing Fair, We Do whats necessary.

    -KenshinCoder






    FUCK YOU LEECHERS! DONT LEECH MY CHEAT OR I WILL BITE YOU TO DEATH.


    OUR PAGE CLICK THE LINK.
    https://www.facebook.com/KenSyncHacks?fref=ts

    RESPECT LIST:

    3dVision
    BlackhatPH
    MJCreado
    dungzkii
    Jheamuel123

  13. #13
    MM-killer's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Frankfurt Germany
    Posts
    49
    Reputation
    10
    Thanks
    1,282
    My Mood
    Hot
    Quote Originally Posted by KenshinCoder View Post
    @MM-killer

    here bro



    Hope i help.

    Code in discription
    Thanks Man


    ---------- Post added at 01:14 AM ---------- Previous post was at 01:13 AM ----------

    Quote Originally Posted by VeViDo View Post
    Injector Is Not Responsible Of Detection WTF , The DLL File Is Responsible , Tard Go Play Tetris Or Barbie please !

    ---------- Post added at 05:45 PM ---------- Previous post was at 05:43 PM ----------


    WTF So Why U Think All Of Those Topics Are Deleted By Moderateur , Adverts from B_S_V_I_P only ! i Don't Think So


    Did U really know about Coding that Much

    Noob without Undetected Injector u cant Make a hack works stupid NoOB
    "Find Me On Facebook & Youtube"


  14. #14
    memecoveta09's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    IN YOUR BACK
    Posts
    161
    Reputation
    10
    Thanks
    83
    My Mood
    Scared
    Quote Originally Posted by MM-killer View Post
    Hi Guys

    I need Source COdes If anyOne Have Undetected Source Codes Of
    Blackshot Injector

    Then Give Me I will Be Very GreateFull To you
    If You Do

    Thanks
    https://www.mpgh.net/forum/168-blackshot-
    hacks/649302-garena-bss-file-checking-function.html


    go here !
    '''KEEP CALM AND LOVE MPGH'''





  15. #15
    Vehrdyn's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    House of house
    Posts
    8,543
    Reputation
    206
    Thanks
    5,531
    / Solved
    / Closed

Similar Threads

  1. [Source Code]Undetect DLL Injector For Visual Basic[Source Code]
    By HskCool in forum Programming Tutorial Requests
    Replies: 2
    Last Post: 12-11-2012, 08:55 PM
  2. [RELEASE] FULL WORKING INJECTOR SOURCE CODE
    By flameswor10 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 37
    Last Post: 08-29-2010, 05:03 AM
  3. [RELEASE] FULL WORKING INJECTOR SOURCE CODE
    By flameswor10 in forum Visual Basic Programming
    Replies: 34
    Last Post: 08-14-2010, 09:58 AM
  4. ~ DLL Injector Source Code ~
    By Silk[H4x] in forum Visual Basic Programming
    Replies: 32
    Last Post: 12-16-2009, 11:18 PM
  5. Combat Arms Injector Source Code
    By Melikepie in forum Combat Arms Discussions
    Replies: 6
    Last Post: 10-21-2009, 03:24 PM