Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 카카오프로젝트100
- oracle
- Oracle SQL
- 보안뉴스한줄요약
- GIT
- python
- 카카오프로젝트
- 카카오프로젝트 100
- 깃허브
- 자바스크립트 기본 문법
- 보안뉴스 한줄요약
- 자바스크립트 API
- 자바스크립트 prototype
- 자바스크립트 element api
- numpy
- 오라클
- 파이썬
- oracle db
- javascript
- 다크웹
- ES6
- 랜섬웨어
- 보안뉴스
- 보안뉴스 요약
- 자바스크립트 객체
- 자바스크립트 jQuery
- 보안뉴스요약
- 자바스크립트
- 자바스크립트 node
- php
Archives
- Today
- Total
FU11M00N
[ DreamHack ] command-injection-1 본문
- 문제 정보
특정 Host에 ping 패킷을 보내는 서비스입니다.
Command Injection을 통해 플래그를 획득하세요. 플래그는 flag.py에 있습니다.
#!/usr/bin/env python3
import subprocess
from flask import Flask, request, render_template, redirect
from flag import FLAG
APP = Flask(__name__)
@APP.route('/')
def index():
return render_template('index.html')
@APP.route('/ping', methods=['GET', 'POST'])
def ping():
if request.method == 'POST':
host = request.form.get('host')
cmd = f'ping -c 3 "{host}"'
try:
output = subprocess.check_output(['/bin/sh', '-c', cmd], timeout=5)
return render_template('ping_result.html', data=output.decode('utf-8'))
except subprocess.TimeoutExpired:
return render_template('ping_result.html', data='Timeout !')
except subprocess.CalledProcessError:
return render_template('ping_result.html', data=f'an error occurred while executing the command. -> {cmd}')
return render_template('ping.html')
if __name__ == '__main__':
APP.run(host='0.0.0.0', port=8000)
페이지는 ping을 날릴수있는 page이다
즉 시스템명령어가 사용가능하다는것이다.
그럼 리눅스의 멀티커맨드 특성을 이용해 ping 과 다른 명령어 를 넣어 시스템 명령어를 입력할 수있다.
nevertrustbrutus.tistory.com/177?category=776190
하지만 아이피 형식을 제외하고 다른것을 추가로 넣을려면 패턴에 걸려 전송하지못한다.
가볍게 제거 후 시스템 명령어를 입력하면 된다.
123.123.123.123 "; cat flag.py"
'Web Hacking > DreamHack' 카테고리의 다른 글
[ DreamHack ] php-1 (0) | 2021.03.28 |
---|---|
[ DreamHack ] simple-ssti (0) | 2021.03.28 |
[ DreamHack ] csrf-1 (0) | 2021.03.28 |
[ DreamHack ] proxy-1 (0) | 2021.03.28 |
[ DreamHack ] image-storage (0) | 2021.03.28 |
Comments