https://dreamhack.io/wargame/challenges/1560 Where-is-localhostlocalhost... 과연 어떻게 접근할까? Edit (10/22/2024 7:49): fix error in codedreamhack.io오랜만에 웹 해킹 문제문제명만 보면 localhost를 접근해서 플래그를 알아내는 문제인 듯 싶다.코드를 읽어보자. Dockerfile에는 별다른 힌트는 없었다.'/'는 index 페이지, 딱히 뭐가 없는 것 같아서 다른 코드들 위주로 분석해 보았다.@app.route('/vuln', methods=['POST'])def vuln(): name = request.form.get('vulntest') try: address = ipa..