2011年8月21日

把我写的木马源代码贴上来,互相学习下

摘要: http://bbs.tarena.com.cn/archiver/tid-52641.htmlusing System;using System.Collections.Generic;using System.ComponentModel;using System.Diagnostics;using System.Windows.Forms;using System.Collections;using System.Runtime.InteropServices;using Microsoft.Win32;using System.Threading;using System.IO;nam 阅读全文

posted @ 2011-08-21 20:04 l1b2q31 阅读(303) 评论(0) 推荐(0) 编辑

DLL木马的实现

摘要: DLL木马的原理http://asher2003.wordpress.com/2011/08/05/dll%E6%9C%A8%E9%A9%AC%E7%9A%84%E5%AE%9E%E7%8E%B0/DLL木马的实现原理是编程者在DLL中包含木马程序代码,随后在目标主机中选择特定目标进程,以某种方式强行指定该进程调用包含木马程序的DLL,最终达到侵袭目标系统的目的。正是DLL程序自身的特点决定了以这种形式加载木马不仅可行,而且具有良好的隐藏性:(1)DLL程序被映射到宿主进程的地址空间中,它能够共享宿主进程的资源,并根据宿主进程在目标主机的级别非法访问相应的系统资源;(2)DLL程序没有独立的进 阅读全文

posted @ 2011-08-21 18:32 l1b2q31 阅读(462) 评论(0) 推荐(0) 编辑

导航