Hacker WarRock :: **[TuTo]*:Tout apprendre de Visual Basic !
Hacker WarRock Forum Index
Hacker WarRock
Les meilleurs Hacks WarRock!!
 
Hacker WarRock Forum IndexFAQSearchRegisterLog in

:: **[TuTo]*:Tout apprendre de Visual Basic ! ::

 
Post new topic   This topic is locked: you cannot edit posts or make replies.    Hacker WarRock Forum Index -> Programmation -> Visual basic 2008
Previous topic :: Next topic  
Author Message
PunitionXX
Hacker Pro
Hacker Pro

Offline

Joined: 15 Mar 2010
Posts: 543
Système d'exploitation: Vista
Localisation: Tchat
Masculin Verseau (20jan-19fev)
LVL Warrock: lvl 1
Moyenne de points: 0.59

PostPosted: Mon 19 Apr 2010 - 15:19    Post subject: **[TuTo]*:Tout apprendre de Visual Basic ! Reply with quote

INDEX

Tout c'est TUTO porte sur Visual Basic

1/ANIMATION FLASH!
2/ENREGISTRER ET METTRE UN ÎCONE!



 












Animation flash sur Visual Basic 2008 

 


 


Voici en vidéo comment mettre une animation flash (.gif ou .swf) sur un logiciel Visual Basic !!

Suivre attentivement le Tuto!!Je conseille le lien direct car la on peux pas mettre plein ecran
!


VIDEO:


LIEN DIRECT VIDEO(recommandé): http://www.youtube.com/watch?v=vo9EahkzaMI

Codes:
C'est les même que ce de l'injecteur mais pour pas éveiller les soupçons j'ai fait un codage sans ... En attente de Warrock.exe Sad !
Quand je met pas les codes sa marche pas et quand je fait un injecteur oui donc faut les codes injecteur . . . Okay


BON Pour ce qui arrive pas à copier/coller Voici le lien de téléchargement du Bloc-note qui contient ces codes: http://www.sendspace.com/file/z2hd02

LES CODES:


Option Strict On
Option Explicit On
Imports System.Runtime.InteropServices

Public Class Form1

    Const MEM_COMMIT As Integer = &H1000
    Const PAGE_READWRITE As Integer = &H4
    Const PROCESS_CREATE_THREAD As Integer = &H2
    Const PROCESS_VM_OPERATION As Integer = &H8
    Const PROCESS_VM_READ As Integer = &H10
    Const PROCESS_VM_WRITE As Integer = &H20


    <DllImport("kernel32.dll", SetLastError:=True, CallingConvention:=CallingConvention.Winapi)> _
    Public Shared Function OpenProcess(ByVal dwDesiredAccess As UInteger, <MarshalAs(UnmanagedType.Bool)> _
    ByVal bInheritHandle As Boolean, ByVal dwProcessId As Integer) As System.IntPtr
    End Function

    <DllImport("kernel32.dll", SetLastError:=True, CallingConvention:=CallingConvention.Winapi)> _
    Public Shared Function WriteProcessMemory(ByVal hProcess As System.IntPtr, ByVal lpBaseAddress As System.IntPtr, _
    ByVal lpBuffer As String, ByVal nSize As Int32, <Out()> ByRef lpNumberOfBytesWritten As Int32) As _
    <MarshalAs(UnmanagedType.Bool)> Boolean
    End Function

    <DllImport("kernel32.dll", SetLastError:=True, CallingConvention:=CallingConvention.Winapi)> _
    Public Shared Function VirtualAllocEx(ByVal hProcess As IntPtr, ByVal lpAddress As Int32, _
    ByVal dwSize As Int32, ByVal flAllocationType As UInteger, _
    ByVal flProtect As UInteger) As IntPtr
    End Function

    <DllImport("kernel32.dll", SetLastError:=True, CallingConvention:=CallingConvention.Winapi)> _
    Public Shared Function GetModuleHandle(ByVal lpModuleName As String) As IntPtr
    End Function

    <DllImport("kernel32.dll", SetLastError:=True, CallingConvention:=CallingConvention.Winapi)> _
    Public Shared Function GetProcAddress(ByVal hModule As IntPtr, ByVal lpProcName As String) As UIntPtr
    End Function

    <DllImport("kernel32.dll", SetLastError:=True, CallingConvention:=CallingConvention.Winapi)> _
    Public Shared Function CreateRemoteThread(ByVal hProcess As IntPtr, ByVal lpThreadAttributes As Int32, _
    ByVal dwStackSize As UInt32, ByVal lpStartAddress As UIntPtr, ByVal lpParameter As IntPtr, _
    ByVal dwCreationFlags As UInt32, ByRef lpThreadId As Int32) As IntPtr
    End Function

    <DllImport("kernel32.dll", SetLastError:=True, CharSet:=CharSet.Unicode, EntryPoint:="LoadLibraryA")> _
    Public Shared Function LoadLibrary(ByVal lpFileName As String) As IntPtr
    End Function

    Friend WithEvents OZ As New Timer
    Const TargetName As String = "WARROCK"
    Dim ExeName As String = IO.Path.GetFileNameWithoutExtension(Application.ExecutablePath)

    Private Sub InnjectionMethods_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.TopMost = True
        OZ.Interval = 25
        If IO.File.Exists(Application.StartupPath & "\" + ExeName + ".dll") Then
            Me.Label1.Text = ""
            OZ.Start()
        Else
            Me.Label1.Text = "..." + ExeName + ""
        End If
    End Sub

    Private Sub OZs(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OZ.Tick
        Dim Target As Process() = Process.GetProcessesByName(TargetName)
        If Target.Length <> 0 Then
            Me.Label1.Text = ""
            OZ.Stop()
            InjectToProcess()
        End If
    End Sub

    Sub InjectToProcess()
        Dim ExeName As String = IO.Path.GetFileNameWithoutExtension(Application.ExecutablePath)
        Dim Target As Process() = Process.GetProcessesByName(TargetName)
        Dim pHandle As IntPtr = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, Target(0).Id)
        Dim pszLibFileRemote As String = Application.StartupPath & "\" + ExeName + ".dll"
        Dim pfnStartAddr As UIntPtr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
        Dim TargetBufferSize As Int32 = Int(1 + Len(pszLibFileRemote))
        Dim LoadLibParamAdr As IntPtr = VirtualAllocEx(pHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
        Dim Rtn As Integer = CInt(WriteProcessMemory(pHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0))
        If Rtn <> 0 Then
            Label1.Text = ""
        Else
            Label1.Text = ""
        End If
        CreateRemoteThread(pHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
        Me.Close()
    End Sub
End Class
_________________




Last edited by PunitionXX on Mon 19 Apr 2010 - 19:45; edited 2 times in total
Back to top
MSN
PunitionXX
Hacker Pro
Hacker Pro

Offline

Joined: 15 Mar 2010
Posts: 543
Système d'exploitation: Vista
Localisation: Tchat
Masculin Verseau (20jan-19fev)
LVL Warrock: lvl 1
Moyenne de points: 0.59

PostPosted: Mon 19 Apr 2010 - 16:28    Post subject: **[TuTo]*:Tout apprendre de Visual Basic ! Reply with quote

Enregistrer et mettre un îcone sur Visual Basic 2008


Voici comment mettre un icone et enregistrer une application sur Visual Basic!



LIEN DIRECT(Recommandé): http://www.youtube.com/watch?v=YuO6hYNGAT0





 
 
 

_________________




Back to top
MSN
Display posts from previous:   
Post new topic   This topic is locked: you cannot edit posts or make replies.    Hacker WarRock Forum Index -> Programmation -> Visual basic 2008 All times are GMT + 2 Hours
Page 1 of 1

 
Jump to:  

Index | Create a forum | Free support forum | Free forums directory | Report a violation | Conditions générales d'utilisation

© Hacker-WarRock © 2009 - 2012
Powered by WeWeWe13 & Himka