首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 网络安全 > 黑客技术 > 回家(PBackhome)v 1.02版注册机 源码
【标  题】:回家(PBackhome)v 1.02版注册机 源码
【关键字】:c,源码,PB,02,Back,PBackhome,02
【来  源】:网络

回家(PBackhome)v 1.02版注册机 源码

//回家(PBackhome)v 1.02版注册机
//delphi5.0编译
//注册码计算:
//取计算机用户名(转为大写字母)作为机器码,机器码字符长度不足15位,
//则在机器码后依次加上PolarBearSoftware,凑足15位字符
//分别取每个字符的ASCII码,转为10进制数值,加1,累积求和sum1
//若机器码字符长度<15位,sum1*64*机器码字符长度=注册码
//否则sum1*64*15=注册码

unit Unit3;

interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;

type
TForm1 = class(TForm)
Edit1: TEdit;
Edit2: TEdit;
Button1: TButton;
Label1: TLabel;
Label2: TLabel;
Button2: TButton;
Label3: TLabel;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
a,b,d,e,h,i,len1,len2:longint;
c:String;

implementation

{$R *.DFM}

procedure TForm1.Button1Click(Sender: TObject);
begin
len1 := length(edit1.text); //len=机器码长度
name := edit1.text; //name=机器码
b := 0;
e := 0;
for i := 1 to len1 do
begin
a := ord(name[i]) + 1; //取机器码每个字符ascii码,转为10进制数
b := a + b; //累计求和
end;

len2 := 15 - len1;
if len2 <= 0 then edit2.text := inttostr(b*64*15);
if len2 > 0 then
begin
c := 'PolarBearSoftware';
for h := 1 to len2 do
begin
d := ord(c[h]) + 1;
e := d + e;
end;
edit2.text := inttostr((b+e)*64*len1);
end;
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
close;
end;
end.
MagicWin 98 1.30f的注册机源码:【上一篇】
电脑幽灵pcGhost4.0注册机(TC编译通过):【下一篇】
【相关文章】
  • MagicWin 98 1.30f的注册机源码
  • olldbg小解音频转换工具ezConverter!
  • 破解ASPack 2.000 及其补丁制作教学
  • 一个Delphi程序的破解: Icon Catcher
  • coolfly教程-破解入门第七集
  • coolfly教程-破解入门第六集
  • animagic32
  • 软件 system menachinc 的它用(附:序列号破解)
  • System Mechanic V3.5i破解攻略---前言
  • 批量解压缩(Batch UnZip)1.0.5破解纪录
  • 【随机文章】
  • ICX数据库路由器软件功能
  • 木马随程序启动的方法
  • Indigo,MS又要大家学习了。
  • oracle数据安全面面观
  • 有VB的Trainer吗?VB6或VB.net都行
  • solaris管理(20060831)
  • "linux"发音,今天你发错了吗
  • 思考详细设计
  • SQL Server 索引结构及其使用(一)
  • Maya 4.0 粒子系统-创建粒子(2)
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 软讯网络 All Rigths Reserved.