I'm doing a basic CTF at the moment. Using,
GET / HTTP/1.1
Host: subdomain.domain.com
I am getting the response:
<a href="/c98efc0d-5c3f-45ec-996a-2cb82d35ed26.html">follow this link to get easy flag (manual work)</a>
<a href="/deep/">follow this link to get harder flag (automatic work)</a>
<a href="/calculator/">follow this link to visit human calculator</a>
Now I assumed to find the flags, I would change my GET requests to the following:
GET /c98efc0d-5c3f-45ec-996a-2cb82d35ed26.html HTTP/1.1
Host: subdomain.domain.com
and
GET /deep/ HTTP/1.1
Host: subdomain.domain.com
What am I missing here?