首页
社区
课程
招聘
[旧帖] [求助]请大家来帮个忙,小弟先谢了 0.00雪花
发表于: 2007-11-2 18:30 3627

[旧帖] [求助]请大家来帮个忙,小弟先谢了 0.00雪花

2007-11-2 18:30
3627
我在破一个软件,注册部份会有两个机器码,我已脱壳,它是delphi写的,反编译它,看了看它的代码,找到了,代码为:
object RegistForm: TRegistForm
  Left = 390
  Top = 322
  BorderStyle = bsDialog
  Caption = 注册
  ClientHeight = 182
  ClientWidth = 320
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -10
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 33
    Top = 39
    Width = 34
    Height = 13
    Caption = 'Code1:'
  end
  object Label2: TLabel
    Left = 33
    Top = 65
    Width = 34
    Height = 13
    Caption = 'Code2:'
  end
  object Label3: TLabel
    Left = 26
    Top = 13
    Width = 216
    Height = 13
    Caption = 将以下两个编码通知我们,以得到注册码
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -12
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    ParentFont = False
  end
  object Label4: TLabel
    Left = 33
    Top = 111
    Width = 39
    Height = 13
    Caption = 注册码:
  end
  object Button1: TButton
    Left = 114
    Top = 150
    Width = 61
    Height = 20
    Caption = 'OK'
    Default = True
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -12
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    ModalResult = 1
    ParentFont = False
    TabOrder = 0
    OnClick = Button1Click
  end
  object Edit1: TEdit
    Left = 85
    Top = 38
    Width = 183
    Height = 21
    Color = clAqua
    MaxLength = 20
    ReadOnly = True
    TabOrder = 1
  end
  object Edit2: TEdit
    Left = 85
    Top = 64
    Width = 183
    Height = 21
    Color = clAqua
    MaxLength = 8
    ReadOnly = True
    TabOrder = 2
  end
  object Button2: TButton
    Left = 192
    Top = 150
    Width = 61
    Height = 20
    Caption = 取消
    Default = True
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -16
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    ModalResult = 1
    ParentFont = False
    TabOrder = 3
    OnClick = Button2Click
  end
  object Edit3: TEdit
    Left = 85
    Top = 110
    Width = 183
    Height = 21
    MaxLength = 16
    TabOrder = 4
  end
end
可是我看不出它是什么算法

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
呵呵,这相当于是个资源,用一般的资源编辑器就可以查出来,不是算法的地方~~
注意这个按钮对象:
  object Button1: TButton
    Left = 114
    Top = 150
    Width = 61
    Height = 20
    Caption = 'OK'
    Default = True
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -12
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    ModalResult = 1
    ParentFont = False
    TabOrder = 0
    OnClick = Button1Click
  end
特别注意这个按钮的事件:OnClick = Button1Click
用DEDE反编译,“过程”里面找到对应窗体,就可以找到Button1Click函数的入口点了。直接在入口点设断,接下来就看你了。
2007-11-2 19:32
0
雪    币: 201
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
谢谢,我试下
2007-11-6 16:46
0
游客
登录 | 注册 方可回帖
返回