fileselfmain.pas
来自「各种反分析软件的手法,包括(反Dede,反单步跟踪,反SoftICE,Ollyd」· PAS 代码 · 共 43 行
PAS
43 行
unit FileSelfMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Base64Unit, ComCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
StatusBar1: TStatusBar;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
UserName,Serial:String;
InfoStr,InfoYes,InfoNo:PChar;
begin
InfoStr:=PChar(Base64Decryption('zOHKvg=='));
InfoYes:=PChar(Base64Decryption('16Ky4bPJuaYh'));
InfoNo:=PChar(Base64Decryption('16Ky4cqnsNwh'));
UserName:='MTIz';Serial:='MTIz';
if UserName=Serial then
MessageBox(Handle,InfoYes,InfoStr,MB_OK)
else
MessageBox(Handle,InfoNo,InfoStr,MB_OK);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?