首页 > 程序设计『Programing』 > 蛋疼的挂掉360云查杀的小玩意儿

蛋疼的挂掉360云查杀的小玩意儿

其实就是个域名屏蔽的列表,做个小工具便于免杀。没什么高深的技术。猛击此处下载! 提取码:f03cfa2718

最后蛋疼的贴点代码:

procedure TForm1.FormCreate(Sender: TObject);
begin
GetSystemDirectory(sysdir,256);
hosts := sysdir + '\drivers\etc\hosts';
backup := sysdir + '\drivers\etc\hosts.bak';
//ShowMessage(hosts);
if FileExists(hosts) then begin
mmo1.Lines.LoadFromFile(hosts);
if ((Pos('sdup.360.cn',mmo1.Lines.Text)) >0) then   begin
spSkinStatusPanel1.Caption := '状态:云已经挂掉。' ;
spSkinButton1.Enabled := False;
end else begin
spSkinStatusPanel1.Caption := '状态:云还飘着呢,赶紧挂掉吧。' ;
spSkinButton2.Enabled := False;
end;
 
end;
end;

procedure TForm1.spSkinButton1Click(Sender: TObject);
begin
if FileExists(backup) then begin
ShowMessage('备份文件已经存在,无法备份文件。');
end else begin
CopyFile(PChar(hosts),PChar(backup),False);
mmo2.Lines.SaveToFile(hosts);
spSkinButton1.Enabled :=False;
ShowMessage('云已经成功挂掉!');
spSkinStatusPanel1.Caption := '状态:云已经挂掉。' ;
end;
 
end;
 
procedure TForm1.spSkinButton2Click(Sender: TObject);
begin
if FileExists(backup) then begin
CopyFile(Pchar(backup),Pchar(hosts),False);
spSkinButton1.Enabled :=True;
spSkinButton2.Enabled :=False;
spSkinStatusPanel1.Caption := '状态:云还飘着呢,赶紧挂掉吧。' ;
ShowMessage('恢复成功。');
end else begin
ShowMessage('备份文件已经丢失,无法恢复!');
end;
end;
 
procedure TForm1.spSkinButton3Click(Sender: TObject);
begin
ShowMessage('这就是个蛋疼的小玩意儿,没什么新鲜的!'+#10#13+'闲着没事可以常来我的博客晃悠晃悠。');
end;
 
end.

原创文章,转载请注明: 转载自火星信息安全研究院

本文链接地址: 蛋疼的挂掉360云查杀的小玩意儿: http://www.h4ck.org.cn/2010/07/kill-360-cloud/

  1. youstar 七 29th, 2010 @ 21:26 | #1

    貌似360检查了host文件的吧,这样做可以?

    • obaby 七 29th, 2010 @ 22:32 | #2

      测试的时候在免杀的时候是可以的,现在具体什么情况不太清楚。呵呵

  2. jielong 七 9th, 2010 @ 11:47 | #3

    路过。。。

评论提交中, 请稍候...

留言

:p 8) :lol: =( :8 ;) :(( :o: :[ :) :D :-| :-[) :bloody: :cool: :choler: :love: :oups: :aie: :beurk:
可以使用的标签: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">
Trackbacks & Pingbacks ( 0 )
  1. 还没有 trackbacks