untClient.dfm
上传用户:sinothink
上传日期:2022-07-15
资源大小:459k
文件大小:4k
源码类别:

远程控制编程

开发平台:

Delphi

  1. object Form1: TForm1
  2.   Left = 190
  3.   Top = 105
  4.   Width = 520
  5.   Height = 269
  6.   Caption = 'miniRAT'
  7.   Color = clBtnFace
  8.   Constraints.MinHeight = 269
  9.   Constraints.MinWidth = 392
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'Tahoma'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   OnCreate = FormCreate
  17.   DesignSize = (
  18.     512
  19.     242)
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object GroupBox1: TGroupBox
  23.     Left = 0
  24.     Top = 0
  25.     Width = 512
  26.     Height = 49
  27.     Anchors = [akLeft, akTop, akRight]
  28.     Caption = 'Connection Settings'
  29.     TabOrder = 0
  30.     DesignSize = (
  31.       512
  32.       49)
  33.     object Label1: TLabel
  34.       Left = 8
  35.       Top = 16
  36.       Width = 73
  37.       Height = 21
  38.       AutoSize = False
  39.       Caption = 'Port to listen :'
  40.       Layout = tlCenter
  41.     end
  42.     object Label2: TLabel
  43.       Left = 152
  44.       Top = 16
  45.       Width = 57
  46.       Height = 21
  47.       AutoSize = False
  48.       Caption = 'Password :'
  49.       Layout = tlCenter
  50.     end
  51.     object Edit1: TEdit
  52.       Left = 80
  53.       Top = 16
  54.       Width = 65
  55.       Height = 21
  56.       TabOrder = 0
  57.       Text = '80'
  58.     end
  59.     object Button1: TButton
  60.       Left = 440
  61.       Top = 16
  62.       Width = 65
  63.       Height = 21
  64.       Anchors = [akTop, akRight]
  65.       Caption = '&Listen'
  66.       TabOrder = 1
  67.       OnClick = Button1Click
  68.     end
  69.     object Edit2: TEdit
  70.       Left = 216
  71.       Top = 16
  72.       Width = 217
  73.       Height = 21
  74.       Anchors = [akLeft, akTop, akRight]
  75.       PasswordChar = '*'
  76.       TabOrder = 2
  77.       Text = 'shj'
  78.     end
  79.   end
  80.   object StatusBar1: TStatusBar
  81.     Left = 0
  82.     Top = 225
  83.     Width = 512
  84.     Height = 17
  85.     Panels = <
  86.       item
  87.         Width = 100
  88.       end
  89.       item
  90.         Width = 50
  91.       end>
  92.   end
  93.   object ListView1: TListView
  94.     Left = 0
  95.     Top = 64
  96.     Width = 512
  97.     Height = 161
  98.     Anchors = [akLeft, akTop, akRight, akBottom]
  99.     Columns = <
  100.       item
  101.         Caption = 'Address'
  102.         Width = 100
  103.       end
  104.       item
  105.         Caption = 'Port'
  106.       end
  107.       item
  108.         Caption = 'Version'
  109.       end
  110.       item
  111.         Caption = 'Connection'
  112.         Width = 70
  113.       end
  114.       item
  115.         Caption = 'KBs In/Out'
  116.         Width = 90
  117.       end
  118.       item
  119.         Caption = 'Socket'
  120.       end
  121.       item
  122.         Caption = 'Name'
  123.         Width = 80
  124.       end>
  125.     ColumnClick = False
  126.     GridLines = True
  127.     ReadOnly = True
  128.     RowSelect = True
  129.     PopupMenu = PopupMenu1
  130.     TabOrder = 2
  131.     ViewStyle = vsReport
  132.   end
  133.   object PopupMenu1: TPopupMenu
  134.     Left = 8
  135.     Top = 72
  136.     object N3: TMenuItem
  137.       Caption = #22686#21152#20027#26426
  138.       OnClick = N3Click
  139.     end
  140.     object ransferView1: TMenuItem
  141.       Caption = '&Transfer View'
  142.       OnClick = ransferView1Click
  143.     end
  144.     object InformationView1: TMenuItem
  145.       Caption = '&Information View'
  146.       OnClick = InformationView1Click
  147.     end
  148.     object FileManager1: TMenuItem
  149.       Caption = '&File Manager'
  150.       OnClick = FileManager1Click
  151.     end
  152.     object ProcessList1: TMenuItem
  153.       Caption = '&Process List'
  154.       OnClick = ProcessList1Click
  155.     end
  156.     object RemoteCmd1: TMenuItem
  157.       Caption = '&Remote Cmd'
  158.       OnClick = RemoteCmd1Click
  159.     end
  160.     object N1: TMenuItem
  161.       Caption = '-'
  162.     end
  163.     object Disconnect1: TMenuItem
  164.       Caption = '&Disconnect'
  165.       OnClick = Disconnect1Click
  166.     end
  167.     object Uninstall1: TMenuItem
  168.       Caption = '&Uninstall'
  169.       OnClick = Uninstall1Click
  170.     end
  171.     object Download1: TMenuItem
  172.       Caption = 'UR&L Download'
  173.       object hisone1: TMenuItem
  174.         Caption = 'This one'
  175.         OnClick = hisone1Click
  176.       end
  177.       object Everyone1: TMenuItem
  178.         Caption = '&Everyone'
  179.         OnClick = Everyone1Click
  180.       end
  181.     end
  182.     object N2: TMenuItem
  183.       Caption = '-'
  184.     end
  185.     object CreateServer1: TMenuItem
  186.       Caption = '&Create Server'
  187.       OnClick = CreateServer1Click
  188.     end
  189.     object About1: TMenuItem
  190.       Caption = '&About'
  191.       OnClick = About1Click
  192.     end
  193.   end
  194.   object Timer1: TTimer
  195.     Interval = 1
  196.     OnTimer = Timer1Timer
  197.     Left = 40
  198.     Top = 72
  199.   end
  200. end