문제 링크 https://dreamhack.io/wargame/challenges/44 command-injection-1특정 Host에 ping 패킷을 보내는 서비스입니다. Command Injection을 통해 플래그를 획득하세요. 플래그는 flag.py에 있습니다. Reference Exercise: Command Injectiondreamhack.io 문제 해법 커맨드 인젝션을 이용한 exploit을 통해, 서버 내부 명령어를 실행토록 하는 공격입니다. ping 루트 @APP.route('/ping', methods=['GET', 'POST'])def ping(): if request.method == 'POST': host = request.form.get('host') ..