3年前的小程序:破解需要delphi IDE 环境的vcl 控件

基本原理:有些vcl组件未注册的话,会显示没有注册的信息,但在设计期间不显示这些信息,表示该组件会检查delphi的ide 环境,解决办法就是让自己的exe带上ide的信息;

组件检查ide的办法无非就是使用api查找特定的delphi窗体类名称,如下是代码,建立几个看不见的窗体,名称和delphi ide的主要窗口一样;当然,这样做不见得100%破解检查ide环境的组件,有些组件可以遍历窗体的子件类,总之方法很多,要更好的办法,简单;用dede反编译delphi的主程序,把dfm资源搞出来,到自己工程里加入就行了。

以下是代码,见笑;
None.gif{********************* 破解需要delphi IDE 的vcl 控件*****
None.gif
//请直接将该单元加入到工程中,并放到最初启动位置,无需调
None.gif
//用方法,自动完成解密过程
None.gif
//版权所有:随飞
None.gif//该版为 Pascal 代码版本
None.gif
********************************************************}
None.gifunit vclAntIde;
ExpandedBlockStart.gifContractedBlock.gif
Interface usesinterface
InBlock.gifuses
InBlock.gif  Windows, Messages;
InBlock.gif
InBlock.gif
const
InBlock.gif  AppBuilder        
= 'TAppBuilder';
InBlock.gif
  EditWindow        = 'TEditWindow';
InBlock.gif
  PropertyInspector = 'TPropertyInspector';
InBlock.gif
  ObjectTreeView    = 'TObjectTreeView';
InBlock.gif

InBlock.gifimplementation
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif
Function WindowProc()function WindowProc(Window: Integer; AMessage, wParam, lParam: Integer):
InBlock.gif  
Integer;
InBlock.gif  stdcall; export;
InBlock.gifbegin
InBlock.gif  WindowProc :
= 0;
InBlock.gif  
case AMessage of
InBlock.gif    WM_DESTROY, WM_QUIT, WM_QUERYENDSESSION, WM_CLOSE:
InBlock.gif      begin
InBlock.gif        PostQuitMessage(
0);
InBlock.gif        
Exit;
InBlock.gif      
end;
InBlock.gif  
end;
InBlock.gif  WindowProc :
= DefWindowProc(Window, AMessage, wParam, lParam);
InBlock.gif
end;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif
Function WinRegister()function WinRegister(AppName: PAnsiChar): boolean;
InBlock.gifvar
InBlock.gif  WindowClass       : TWndClass;
InBlock.gifbegin
InBlock.gif  WindowClass.Style :
= 2 or 1;
InBlock.gif  WindowClass.lpfnWndProc :
= @WindowProc;
InBlock.gif  WindowClass.cbClsExtra :
= 0;
InBlock.gif  WindowClass.cbWndExtra :
= 0;
InBlock.gif  WindowClass.hInstance :
= HInstance;
InBlock.gif  WindowClass.hIcon :
= LoadIcon(0, idi_Application);
InBlock.gif  WindowClass.hCursor :
= LoadCursor(0, idc_Arrow);
InBlock.gif  WindowClass.hbrBackground :
= HBrush(Color_Window);
InBlock.gif  WindowClass.lpszMenuName :
= nil;
InBlock.gif  WindowClass.lpszClassName :
= AppName;
InBlock.gif
InBlock.gif  Result :
= RegisterClass(WindowClass) <> 0;
InBlock.gif
end;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif
Function WinCreate()function WinCreate(AppName: PAnsiChar): HWnd;
InBlock.gifvar
InBlock.gif  hWindow           : HWnd;
InBlock.gifbegin
InBlock.gif  hWindow :
= CreateWindow(AppName,
InBlock.gif    AppName,
InBlock.gif    WS_OVERLAPPEDWINDOW,
InBlock.gif    
0,
InBlock.gif    
0,
InBlock.gif    
1,
InBlock.gif    
1,
InBlock.gif    
0,
InBlock.gif    
0,
InBlock.gif    HInstance,
InBlock.gif    nil);
InBlock.gif  
if hWindow <> 0 then
InBlock.gif  begin
InBlock.gif    
//      ShowWindow(hWindow, cmdShow);
InBlock.gif    
//      UpdateWindow(hWindow);
InBlock.gif  
end;
InBlock.gif
InBlock.gif  Result :
= hWindow;
InBlock.gif
end;
InBlock.gif
InBlock.gifvar
InBlock.gif  AMessage          : TMsg;
InBlock.gif  hWindow           : HWnd;
InBlock.gif  
InBlock.gifbegin
InBlock.gif
//HWND handle = GetSafeHwnd();
InBlock.gif
InBlock.gif  
if GlobalFindAtom('@TaskAgent')=0 then
InBlock.gif
  begin
InBlock.gif    GlobalAddAtom(
'@TaskAgent');
InBlock.gif
  end;
InBlock.gif
InBlock.gif  
if not WinRegister(AppBuilder) then
InBlock.gif  begin
InBlock.gif    MessageBox(
0'注册失败!', nil, mb_Ok);
InBlock.gif
    Exit;
InBlock.gif  
end;
InBlock.gif  
if not WinRegister(EditWindow) then
InBlock.gif  begin
InBlock.gif    MessageBox(
0'注册失败!', nil, mb_Ok);
InBlock.gif
    Exit;
InBlock.gif  
end;
InBlock.gif  
if not WinRegister(PropertyInspector) then
InBlock.gif  begin
InBlock.gif    MessageBox(
0'注册失败!', nil, mb_Ok);
InBlock.gif
    Exit;
InBlock.gif  
end;
InBlock.gif  
if not WinRegister(ObjectTreeView) then
InBlock.gif  begin
InBlock.gif    MessageBox(
0'注册失败!', nil, mb_Ok);
InBlock.gif
    Exit;
InBlock.gif  
end;
InBlock.gif
InBlock.gif  hWindow :
= WinCreate(AppBuilder);
InBlock.gif  
if hWindow = 0 then
InBlock.gif  begin
InBlock.gif    MessageBox(
0'创建失败', nil, mb_Ok);
InBlock.gif
    Exit;
InBlock.gif  
end;
InBlock.gif
InBlock.gif  hWindow :
= WinCreate(EditWindow);
InBlock.gif  
if hWindow = 0 then
InBlock.gif  begin
InBlock.gif    MessageBox(
0'创建失败', nil, mb_Ok);
InBlock.gif
    Exit;
InBlock.gif  
end;
InBlock.gif  hWindow :
= WinCreate(PropertyInspector);
InBlock.gif  
if hWindow = 0 then
InBlock.gif  begin
InBlock.gif    MessageBox(
0'创建失败', nil, mb_Ok);
InBlock.gif
    Exit;
InBlock.gif  
end;
InBlock.gif
InBlock.gif  hWindow :
= WinCreate(ObjectTreeView);
InBlock.gif  
if hWindow = 0 then
InBlock.gif  begin
InBlock.gif    MessageBox(
0'创建失败', nil, mb_Ok);
InBlock.gif
    Exit;
InBlock.gif  
end;
InBlock.gif
InBlock.gif
end.
InBlock.gif
InBlock.gif

转载于:https://www.cnblogs.com/Chinasf/archive/2005/10/24/260518.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380620.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

执行POP和PUSH指令后,SS和SP的变化

我们知道push指令是将数据送入栈中&#xff0c;pop指令是将数据从栈顶取出来&#xff0c;8086CPU的入栈和出栈操作都是以字为单位的 比如说将10000H-1000FH这段内存当做栈使用 CPU是通过CS、IP中存放的段地址和偏移地址来知道当前要执行的指令&#xff0c;通过DS和[address]来…

win7 php 上传文件,在LNMP原来的基础上,win7环境下如何上传PHP文件到Linux环境下...

首先&#xff0c;下载一个WINSCP客户端连接主机后&#xff0c;上传文件到自己的保存目录接着进入数据库添加我们的数据库mysql -uroot -p //这个是进入mysql的命令&#xff0c;但是要是你没有加 ln -s /usr/local/mysql/bin/mysql /usr/bin 的话就要输入下面那一行/usr/loc…

HDFC的完整形式是什么?

HDFC&#xff1a;住房发展金融公司 (HDFC: Housing Development Finance Corporation) HDFC is an abbreviation of Housing Development Finance Corporation. It is a well-known housing expansion finance corporation of India which largely makes available housing loa…

将10000H-1000FH这段空间当做栈,初始状态栈是空的,设置AX=001AH,BX=001BH,利用栈,交换AX和BX的数据

程序&#xff1a; mov ax,1000H mov ss,ax mov sp,0010H;设置AX和BX的值 mov ax,001AH mov bx,001BH;压栈 push ax push bx;出栈 pop ax pop bx解释&#xff1a; 在8086中&#xff0c;段寄存器不能直接传值&#xff0c;要通过一般寄存器&#xff0c;所以先将值传到ax中&#x…

php having,having方法

having方法1、对分组统计的结果&#xff0c;进行筛选如果将分分组查询的结果看成一张表的话&#xff0c;having方法类似where语句的功能2、源码&#xff1a;/thinkphp/library/think/db/Query.php/*** 指定having查询* access public* param string $having having* return $th…

Linux:jumpserver介绍(1)

官方网站 JumpServer - 开源堡垒机 - 官网https://www.jumpserver.org/ JumpServer 是广受欢迎的开源堡垒机&#xff0c;是符合 4A 规范的专业运维安全审计系统。JumpServer 帮助企业以更安全的方式管控和登录所有类型的资产&#xff0c;实现事前授权、事中监察、事后审计&…

对一个简单汇编程序分析

程序&#xff1a; assume cs:codesgcodesg segmentmov ax,0123Hmov bx,0456Hadd ax,bxadd ax,axmov ax,4c00Hint 21Hcodesg endsend伪指令&#xff1a; 伪指令是写给编译器看的&#xff0c;CPU不会执行&#xff0c;在源程序中&#xff0c;包括两种指令&#xff0c;一个是…

劈尖等厚干涉条纹matlab,劈尖等厚干涉实验中,k=0级的干涉条纹是条纹,与k级暗条纹对应的空气薄膜的厚度为...

劈尖等厚干涉实验中&#xff0c;k0级的干涉条纹是条纹&#xff0c;与k级暗条纹对应的空气薄膜的厚度为答&#xff1a;暗&#xff0c;kλ/2spampython 编程\nprint(spam[-6:-4])是否报错&#xff1f;(是&#xff1a;则填写报错原因&#xff0c;否&#xff1a;则填写输出结果)答&…

使用OpenCV python模块读取图像并将其另存为灰度系统

In Python, we can use an OpenCV library named cv2. Python does not come with cv2, so we need to install it separately. 在Python中&#xff0c;我们可以使用名为cv2的OpenCV库 。 Python没有随附cv2 &#xff0c;因此我们需要单独安装它。 For Windows: 对于Windows&a…

A4Desk 网站破解

A4Desk是一个不错的Flash站点建站工具&#xff0c;不过生成的swf文件很不爽&#xff0c;主要是1、单击3次就会显示注册对话框&#xff1b;2、会在网站上显示Demo 字样。 如果希望去掉这些信息&#xff0c;按如下步骤操作即可&#xff1a; 一、用A4Desk建立站点并导出。 二、用S…

and和or指令

and指令&#xff1a;逻辑与指令&#xff0c;按位进行与运算 mov al,01100011B and al,00111011B执行后al00100011B&#xff0c;两个为1才为1&#xff0c;所以通过该指令可将操作数对象的相应位设为0&#xff0c;其他位不变 or指令&#xff1a;逻辑或指令&#xff0c;按位进行…

php 上传多个txt文件上传,一个多文件上传的例子(原创)

一个多文件上传的例子(原创)更新时间&#xff1a;2006年10月09日 00:00:00 作者&#xff1a;//filename:multi_upload.phpif($ifupload){$pathAddSlashes(dirname($PATH_TRANSLATED))."\\upload\\";for($i1;$i<8;$i){$files"afile".$i;if(${$files}!&…

DI和SI

si和di是8086CPU中和bx功能相近的寄存器&#xff0c;di和si不能分成两个8位寄存器来使用。下面的3组指令实现了相同的功能&#xff1a; mov bx,0 mov ax,[bx]mov si,0 mov ax,[si]mov di,0 mov ax,[di]我们遇到si和di时&#xff0c;就往bx上靠&#xff0c;基本上bx什么功能di和…

无线智能路由器家长控制宽带

家长对控制孩子的上网问题颇为头痛&#xff0c;其实只要方法用对&#xff0c;控制孩子上网是完全没有问题的。我总结了三条供家长们分享。 6-16岁的孩子正是学习知识&#xff0c;塑造性格最佳时期&#xff0c;辨别事物也最为薄弱。要想控制孩子上网&#xff0c;首先要在思想上引…

求职新玩法:如今用MSN也可以求职

今天在Donews上看到一篇文章说到利用MSN求职&#xff0c;在你的MSN中添加联系人job01hr.com&#xff0c;然后向该联系人发送消息&#xff0c;比如输入&#xff1a;北京 .NET&#xff0c;对方会提示给你搜索到多少项符合的记录&#xff0c;同时还提供命令行帮助你&#xff1a;/h…

BX、DI、SI、BP总结

在8086CPU中&#xff0c;只有这四个寄存器可以放在[…]内来进行内存单元的寻址 下面的指令是错误的 mov ax ,[cx] mov ax,[ax] mov ax,[dx]在[…]中&#xff0c;bx和bp不能同时出现&#xff0c;si和di不能同时出现 比如下面的指令是错误的 mov ax,[bxbp] mov ax,[sidi]在[…]…

缓存应用--Memcached分布式缓存简介(二)

1 命令行查看状态 很多时候我们需要去查看Memcached 的使用状态&#xff0c;比如Memcached 的运行时间&#xff0c;使用状态等等。在Windows系统中我们可以使用telnet 命令来查看Memcached 的相关运行情况。 开始—>运行cmd 运行得到如下&#xff1a; 输入telnet命令&#x…

Android模拟器无法上网问题

方法一 首先&#xff0c;Windows下&#xff0c;配置Adroid环境变量&#xff08;Win7为例&#xff09; 1、桌面右键——》我的电脑——》高级系统设置 2、高级——》环境变量——》系统变量——》Path 3、添加android sdk目录到系统变量Path中&#xff0c;如下图&#xff1a; 注…

2011年:签到已死?

导读&#xff1a;作为移动互联网最受关注的热点之一&#xff0c;各式LBS应用一度大量涌现&#xff0c;但其发展局限也越来越被更多的业界同行清楚认知&#xff0c;LBS只是一个功能特性还是可以支撑起一个产品&#xff1f;签到如何添加黏性和用户核心需求结合&#xff1f;LBS厂商…

Pip:基本命令和使用的指南,实现有效的包管理

目录 学习目标&#xff1a; 学习内容&#xff1a; 学习时间&#xff1a; 学习产出&#xff1a; 介绍 Pip 工具&#xff1a;Pip 是 Python 包管理工具&#xff0c;可以帮助用户方便地安装、管理和升级 Python 包&#xff1a; 安装 Pip 工具&#xff1a;学习如何在不同操作系统上…