论坛


2008年10月16日 星期四

病毒与恶意软件隐藏技术详解

狐狸| 狐狸Hack-Delphi |13:51:38

?病毒与恶意软件隐藏技术详解?一、借助系统弱点实现隐藏???????在计算机操作系统还是windows 9x的时代,由于操作系统先天存在缺陷,所以病毒编写者并布需要花费太多的功夫就可以做到让病毒悄无声息地运行,并彻底让它在任务管理器中销声匿迹。??????从本质上讲,病毒...

病毒行为分析(详细)

狐狸| 狐狸Hack-Delphi |13:51:30

病毒行为分析(详细)???????????关于如何分析病毒,估计每个人的做法都不太一样,但是原理是相同的,只要知道原理,即可举一反三。有网友问了这个问题,我就来说说这个话题吧,我的实力有限,这个话题只能从我的实践出发。本文涉及的软件,如果没提供下载地址,那么...

[转]病毒攻击目标及对象(一)

狐狸| 狐狸Hack-Delphi |13:51:28

在电脑历史上,从第一个病毒出现起,Windows操作系统就一直成为病毒攻击的目标。病毒的编写技术也一直在更新,以前病毒并没有现在的病毒攻击性和发作性强,病毒和垃圾邮件编写者还进行了合作,对网络安全以及用户电脑造成了更大的威胁。纵观病毒的发展,不难发现病毒...

简单病毒制作

狐狸| 狐狸Hack-Delphi |13:51:27

病毒的编写是一种高深技术,真正的病毒一般都具有:传染性、隐藏性(又称潜伏性)、破坏性。现在的病毒种类也不少,如平常的传染可执行文件的病?尽⒑瓴《镜鹊取5?原始的、破坏性最大的病毒还是传染可执行文件的病毒(像CIH病毒),而这些病毒一般都是用汇编语言编写...

学习病毒的制作原理

狐狸| 狐狸Hack-Delphi |13:51:26

病毒的编写是一种高深技术,真正的病毒一般都具有:传染性、隐藏性(又称潜伏性)、破坏性。现在的病毒种类也不少,如平常的传染可执行文件的病毒、宏病毒等等。但原始的、破坏性最大的病毒还是传染可执行文件的病毒(像CIH病毒),而这些病毒一般都是用汇编语言编写...

解析新病毒时代部分病毒

狐狸| 狐狸Hack-Delphi |13:51:25

解析新病毒时代部分病毒? 时间:2006-10-15 16:04:05 | 来自:反病毒社区 | ???电脑病毒总是突如其来、在我们不经意的时候光顾,而它们经常是通过我们非常熟悉且为之做好准备的方式来访。好像两年前,在宏病毒盛行的时代,美丽莎(Melissa)病毒借助Word宏疯狂肆虐了一...

Delphi and C++Builder 2009 in Prague and Bratislava

Pawel Glowacki| Pawel Glowacki |12:47:15

This week there were two Delphi and C++Builder 2009 launch events in Prague and in Bratislava. In Prague there were 205 developers and in Bratislava around 50. Good numbers of attendees and very interesting questions from the audience. ? There was...

Streams, streams, ... using the TStream in Delphi

About.com| About.com Delphi Programming |03:00:42

RTL'n'VCL :: A stream is what its name suggests: a flowing "river of data". A stream has a beginning, an end, and you're always somewhere in between of these two...

2008年10月15日 星期三

Value Capture vs. Variable Capture

Allen Bauer| The Oracle at Delphi |18:14:16

Anonymous methods (aka. Closures) capture the variables from the outer scope that are referenced within the body of the method itself. This is the intended behavior as it serves to extend the lifetime of the variable to match that of the anonymous...

BCS Delphi 2009 Code Generator

CodeGear| CodeGear-CodeCentral Delphi |17:43:42

The Brooks Computing Systems Delphi 2009 Code Generator provides all the necessary communications to generate source code for Delphi 2009 windows personality applications. From a simple dialog the end user produces the source code for non data win...

delphi : 取得网页源码内容

幸福苹果| 幸福苹果-delphi |17:24:00

取得网页的源码内容的函数以及调用方法供大家参考:program geturl;useswininet,windows;//取网页内容function StrPas(const Str: PChar): string;beginResult := Str;end;function GetWebPage(const Url: string):string;varSession,HttpFile:HINTERNET;szSizeBuffer...

delphi : 中英文分词

幸福苹果| 幸福苹果-delphi |14:28:00

procedure TForm1.Button1Click(Sender: TObject);vars: pchar;       //要分词的句子sl: tstrings;   //分词之后保存的字符串列表i:integer;      //遍历字符串列表所有行beginEdit1.Text:='?..

Random Thoughts on the Passing Scene #88

Nick Hodges| Nick Hodges |08:20:10

CodeRage is back! I assume that most of  you read this blog because you are interested in Delphi Programming.  And thus I am doing my part to make sure that Delphi programming gets the recognition it deserves — maybe even "Lan...

2008年10月14日 星期二

Listbox控件用法

幸福苹果| 幸福苹果-delphi |18:42:00

(1)添加记录:ListBox1.Add(EditBox1.Text);//添加到末尾(2)插入记录:ListBox1.insert(0,EditBox1.Text);//添加到开头(3)选中的记录号:Rc := ListBox1. CurIndex;//Rc:string;(4)计数:Rn:=ListBox1.count;//Rn:integer;类别:delphi编程 查看评论

Delphi : ListBox拖放编程,拖动编程,拖移项目编程

幸福苹果| 幸福苹果-delphi |17:12:00

//请首先把ListBox.DragMode属性设置成dmAutomatic哦。varForm1: TForm1;Index: Integer;implementation{$R *.dfm}procedure TForm1.ListBox1DragOver(Sender, Source: TObject; X, Y: Integer;State: TDragState; var Accept: Boolean);beginIndex:=TListBox(Source...

« 上一页

下一页 »