返回列表 发帖

delphi 控制PC喇叭瑞星报毒?

delphi 控制PC喇叭瑞星报毒?
用DELPHI写的恶作剧东东。。只是用了一个死循环控制pc喇叭发出救护车声音。。瑞星居然报毒???

unit Unit1;

interface

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

type
  TForm1 = class(TForm)
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
var
  a:integer;
begin
  a:=0;
  repeat
  windows.Beep(999,1000);
  windows.Beep(760,1000);
  until a<>0;
end;

end.

TOP

难到有什么操作 导致瑞星误报。。?

TOP

不,原来有个叫Assasin2.3H的远控,我做免杀时发现瑞星把特征码定到了恶作剧声音上,后来发现瑞星好多次定义远控都在声音上,呵呵,很绝啊~

TOP

返回列表