• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






jenesor's home

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2011年12月8日

脱壳之附加数据段的提取
摘要: 附加数据段不属于如何一个区块,由于PE文件被映射到内存是按照区块映射的,所以附加数据段是不能被映射到内存的。 附加数据段是在所有区块的最后,用PEiD观察可以发现它有一个OVerload的数据段,如下图:从这个数据可以看出,他的附加数据段在文件位置的的3800处, 同时也可以看出这个PE文件是用UPX加壳了的,脱壳之后会发现,其附加的数据段没有被dump下来,这个时候就需要用十六进制文件去手动去添加。用修正读取附加数据段的指针。 阅读全文
posted @ 2011-12-08 11:18 jenesor 阅读(1173) 评论(0) 推荐(0)
 
CreateFileA 用法
摘要: Creates or opens a file or I/O device. The most commonly used I/O devices are as follows: file, file stream, directory, physical disk, volume, console buffer, tape drive, communications resource, mailslot, and pipe. The function returns a handle that can be used to access the file or device for var. 阅读全文
posted @ 2011-12-08 10:52 jenesor 阅读(10597) 评论(0) 推荐(0)