Webページへのリンクが与えられた。
また、ソースコードが提示されており、以下のリクエストを送れば良さそうであることが読み取れた。
{"password":"pass"}
を伴う POST
メソッドのリクエスト
DELETE
メソッドのリクエスト
ページを読み込むリクエストに対し
POST
にするContent-Type: application/json
を追加する{"password":"pass"}
を入れる
また、Firefoxの開発者ツールでページを読み込むリクエストのメソッドを DELETE
に「編集して再送信」することで、flagの後半部分が得られた。
A link to a web page was given.
Also a source code was given and it suggested that we should send these requests:
POST
request with JSON data {"password":"pass"}
DELETE
request
Based on a request to load the page, I made these changes with the Developer Tool on
POST
.Content-Type: application/json
to the request header.{"password":"pass"}
to the request body.
Also I obtained the latter part of the flag by using "Edit and Resend" to change the method to DELETE
with the Developer Tool on Firefox.