专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅
    每个都有自己生存空间在Windows系统中你可以在任何时候让你执行些操作还可以触发消息触发消息分为 3种是操作你界面onClickonMouseMove等等另外个可以使用Windows消息机制来捕获些系统消息但是如果你想在任何时候监控任何情况那可能你就会选择HOOK来实现了虽然还有其他思路方法但不得不承认HOOK是个比较简单解决问题途径   下面就来举个例子(使用Delphi7.0调试通过):   如果你需要访问某个人机器那在运行\\SB的后那个人就会在你机器上敲入他adminsitrator密码当然你也可以使用黑客工具来得到他密码但 [阅读全文] [PDF]
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; Memo1: TMemo; Button2: TButton; Button3: TButton; procedure Button1Click(Sender: TObject); procedure Bu [阅读全文] [PDF]
unit MLDE32Unit; //Micro Length Disassembler Engine interface //作者忘记了,不好意思。好像出自29A-7。 //sorry, author! function LDE32(Opcode: pointer): integer; implementation function LDE32(Opcode: pointer): integer; const //**************** //* Opcode types * //**************** O_UN [阅读全文] [PDF]
原理见http://202.38.73.222/~pjf/blog/archives/000040.html 代码如下: ============form1.dfm============== object Form1: TForm1 Left = 192 Top = 107 Width = 396 Height = 261 Caption = \'Form1\' Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Heigh [阅读全文] [PDF]
1 共4条 分1页