发新话题
打印

[转载]Anatomy of a Malware

[转载]Anatomy of a Malware

文章作者:Nicolas Falliere
信息来源:邪恶八进制信息安全团队(www.eviloctal.com

Introduction
This tutorial should help people understand how a simple piece of malware works. I might
eventually go on with a series of papers that should help beginners in reverse engineering to
cope with malicious programs.
This first paper is about a password stealer. To start with something simple, it's a dropper
program written in C, packed with FSG. The code is quite clear and understandable. Many
common techniques used by malware in general are used in this very program, which makes
it an even more educative piece of malware to look at. For educational purposes, most of the
analysis will consist of a white box approach - in our case, meaning stepping through the
program and analyzing it with a disassembler.
Characteristics of the file:
- MD5 hash: fceea9d062a5f55ef4c7be8df5abd127
- Size: 6961 bytes
- Type: 32-bit Windows Portable Executable (PE)
- Packed: yes
- High level language: C, very likely
Reader's requirements:
- Intel x86 assembly
- Windows API, MSDN nearby

附件

Anatomy of a Malware.rar (34.64 KB)

2008-3-26 01:08, 下载次数: 33

曾几何时,有人对我说:装B遭雷劈。我说:去你妈的。于是,这个人又对我说:如果再说脏话,上帝会惩罚你的。我说:我操上帝。结论:彪悍的人生不需要上帝。

TOP

发新话题