Undergrounds Forum - Online community #1 for Indonesian Community

Jika Anda Belum Punya ID UGD

Silahkan Anda Daftar Terlebih Dahulu

All Crew UGD

Join the forum, it's quick and easy

Undergrounds Forum - Online community #1 for Indonesian Community

Jika Anda Belum Punya ID UGD

Silahkan Anda Daftar Terlebih Dahulu

All Crew UGD

Undergrounds Forum - Online community #1 for Indonesian Community

Would you like to react to this message? Create an account in a few clicks or log in to continue.
Undergrounds Forum - Online community #1 for Indonesian Community

Undergrounds Forum - Online community #1 for Indonesian Community


+4
Fauzi
nakal
eMIVnem_[UGD]™
jackster
8 posters

    tutor pembuatan injektor + videonya

    avatar
    jackster
    Member UGD™
    Member UGD™


    Jumlah posting : 3
    Join date : 19.10.10

    tutor pembuatan injektor + videonya Empty tutor pembuatan injektor + videonya

    Post by jackster Wed Oct 27, 2010 12:40 pm

    gan nih ane kasih vidio buat agan yg mo belajar buat injector..

    silahkan liat nih vidio : [You must be registered and logged in to see this link.]

    nih buat tambahan'a...

    1. Buka VB,buat project baru (Ctrl+Shift+N)

    [You must be registered and logged in to see this link.]


    2. Buka Form1, dan tambahkan object seperti gambar di bawah


    [You must be registered and logged in to see this link.]

    4. Copy & Paste kode dibawah di Module yg baru saja di buat

    Module Module1
    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_READ = &H10
    Public Const PROCESS_VM_WRITE = (&H20)

    Public Enum ThreadAccess As Integer
    TERMINATE = (&H1)
    SUSPEND_RESUME = (&H2)
    GET_CONTEXT = (&H8)
    SET_CONTEXT = (&H10)
    SET_INFORMATION = (&H20)
    QUERY_INFORMATION = (&H40)
    SET_THREAD_TOKEN = (&H80)
    IMPERSONATE = (&H100)
    DIRECT_IMPERSONATION = (&H200)
    End Enum

    Public Declare Function OpenThread Lib "kernel32.dll" (ByVal dwDesiredAccess As ThreadAccess, ByVal bInheritHandle As Boolean, ByVal dwThreadId As UInteger) As IntPtr
    Public Declare Function SuspendThread Lib "kernel32.dll" (ByVal hThread As IntPtr) As UInteger
    Public Declare Function ResumeThread Lib "kernel32.dll" (ByVal hThread As IntPtr) As UInteger
    Public Declare Function CloseHandle Lib "kernel32.dll" (ByVal hHandle As IntPtr) As Boolean

    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

    Public 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

    End Module

    5. Kembali ke Form1, klik kanan pilih View Code
    6. Skali lagi copas code dibawah
    Imports System

    Public Class Form1
    Private prPB As Process
    Private szGame As String = "POINTBLANK"
    Private szDLLName As String
    Private dwProcessID As Long = 0
    Private dwStartAddr As Long
    Private dwBuffer As Long

    Private Sub SuspendProcess(ByVal process As System.Diagnostics.Process)
    For Each t As ProcessThread In process.Threads
    Dim th As IntPtr
    th = OpenThread(ThreadAccess.SUSPEND_RESUME, False, t.Id)
    If th IntPtr.Zero Then
    SuspendThread(th)
    CloseHandle(th)
    End If
    Next
    End Sub

    Private Sub ResumeProcess(ByVal process As System.Diagnostics.Process)
    For Each t As ProcessThread In process.Threads
    Dim th As IntPtr
    th = OpenThread(ThreadAccess.SUSPEND_RESUME, False, t.Id)
    If th IntPtr.Zero Then
    ResumeThread(th)
    CloseHandle(th)
    End If
    Next
    End Sub

    Private Sub Inject()
    dwProcessID = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, prPB.Id)
    dwStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
    dwBuffer = Len(szDLLName) + 1
    Dim ret As Integer
    Dim dwLibAdress As Integer
    dwLibAdress = VirtualAllocEx(dwProcessID, 0, dwBuffer, MEM_COMMIT, PAGE_READWRITE)
    ret = WriteProcessMemory(dwProcessID, dwLibAdress, szDLLName, dwBuffer, 0)
    CreateRemoteThread(dwProcessID, 0, 0, dwStartAddr, dwLibAdress, 0, 0)
    CloseHandle(dwProcessID)
    End Sub


    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    If (Process.GetProcessesByName(szGame).Length = 0) Then
    Label1.Text = "Waiting " & szGame
    Button1.Enabled = False
    Button2.Enabled = False
    Else
    Timer1.Stop()
    prPB = Process.GetProcessesByName(szGame)(0)
    dwProcessID = prPB.Id
    szDLLName = Mid$(prPB.MainModule.FileName, 1, Len(prPB.MainModule.FileName) - 4) & ".i3exec"
    Label1.Text = "Found " & szGame
    Button1.Enabled = True
    Button2.Enabled = True
    End If
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    If Button1.Text = "Suspend" Then
    SuspendProcess(prPB)
    Button1.Text = "Resume"
    Else
    ResumeProcess(prPB)
    Button1.Text = "Suspend"
    End If
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Inject()
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Timer1.Interval = 100
    Timer1.Start()
    End Sub
    'EDIT, nambahin Auto Resume pada saat firm di tutup
    '--------------------------------------------------------------
    Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
    If Button1.Text = "Resume" Then
    ResumeProcess(prPB)
    End If
    End Sub
    '--------------------------------------------------------------
    End Class

    7. Build project, Run

    sory klo ane agak copas dikit,,,

    cuma niat berbagi aja...

    bagi cendolnya ya gan...
    cheers
    eMIVnem_[UGD]™
    eMIVnem_[UGD]™
    Team UGD™
    Team UGD™


    Jumlah posting : 50
    Join date : 18.10.10
    Age : 28
    Lokasi : Bandung hacker indonesia

    tutor pembuatan injektor + videonya Empty Re: tutor pembuatan injektor + videonya

    Post by eMIVnem_[UGD]™ Wed Oct 27, 2010 9:29 pm

    maantaaappp !!!
    [You must be registered and logged in to see this image.]

    bangreyy makasihh nihh dengan video nya jadi lebih gampang nihh ?

    [You must be registered and logged in to see this image.]

    tar buatin video cara buat dll nya ya bangreyy ?

    pkonya maaantaappp nihh bangrey dan forum nya ?


    [You must be registered and logged in to see this image.]
    avatar
    jackster
    Member UGD™
    Member UGD™


    Jumlah posting : 3
    Join date : 19.10.10

    tutor pembuatan injektor + videonya Empty Re: tutor pembuatan injektor + videonya

    Post by jackster Sat Oct 30, 2010 1:30 pm

    itu bukan bengrey
    avatar
    nakal
    Member UGD™
    Member UGD™


    Jumlah posting : 5
    Join date : 30.10.10

    tutor pembuatan injektor + videonya Empty Re: tutor pembuatan injektor + videonya

    Post by nakal Sun Oct 31, 2010 2:52 pm

    Mantaf semua bisa belajar kunk gan... [You must be registered and logged in to see this image.]
    Fauzi
    Fauzi
    Member UGD™
    Member UGD™


    Jumlah posting : 40
    Join date : 18.10.10
    Age : 41
    Lokasi : MEDAN

    tutor pembuatan injektor + videonya Empty Re: tutor pembuatan injektor + videonya

    Post by Fauzi Tue Nov 02, 2010 9:04 pm

    mantap kk , dri gk th menjadi tahu
    NICE KK
    avatar
    rheza
    Member UGD™
    Member UGD™


    Jumlah posting : 6
    Join date : 04.11.10

    tutor pembuatan injektor + videonya Empty Re: tutor pembuatan injektor + videonya

    Post by rheza Fri Nov 05, 2010 11:35 am

    hahahha,,,,,,
    lassta1
    lassta1
    Member UGD™
    Member UGD™


    Jumlah posting : 11
    Join date : 10.11.10

    tutor pembuatan injektor + videonya Empty Re: tutor pembuatan injektor + videonya

    Post by lassta1 Wed Nov 10, 2010 10:19 am

    [You must be registered and logged in to see this image.] nampang gan biar rame
    avatar
    rivergreat11
    Member UGD™
    Member UGD™


    Jumlah posting : 36
    Join date : 26.10.10

    tutor pembuatan injektor + videonya Empty Re: tutor pembuatan injektor + videonya

    Post by rivergreat11 Wed Nov 10, 2010 10:51 am

    dimna download VB nya gan? [You must be registered and logged in to see this image.]
    avatar
    notfreaks
    Member UGD™
    Member UGD™


    Jumlah posting : 10
    Join date : 19.12.10

    tutor pembuatan injektor + videonya Empty Re: tutor pembuatan injektor + videonya

    Post by notfreaks Sun Dec 19, 2010 4:28 pm

    gan,, pas di suspennya malah jadi ilang tuu c pb.exe nya [You must be registered and logged in to see this image.]

    Sponsored content


    tutor pembuatan injektor + videonya Empty Re: tutor pembuatan injektor + videonya

    Post by Sponsored content


      Waktu sekarang Mon May 20, 2024 7:33 am