boriz666 wrote:The page you reques, sends a "X-Frame-Options: DENY", header field with
the response back to your browser and due to that your browser will not show
the content in a frame or iframe.
- Code: Select all
~]# curl -i "https://www.hackthissite.org/missions/realistic/5/"
HTTP/1.1 200 OK
Date: Tue, 02 Feb 2016 15:08:05 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 627
Connection: keep-alive
Last-Modified: Mon, 30 Dec 2013 05:28:08 GMT
ETag: "d159eca-273-4eeb9b57bea00"
Accept-Ranges: bytes
Server: HackThisSite Load Balancer
Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
..
..
If you use firefox, you can get an addon to ignore the X-Frame-Options: DENY
you can get it here:
https://addons.mozilla.org/en-us/firefo ... e-options/
In this instance it should propably not be sent by the server, or the mission should
be changed not to use iframes / frames.
Or the server should deny only iframes if its origin isn't local:
X-Frame-Options: sameorigin
Some admin needs to look at this and act accordingly.
Ok. Thank you very much for your reply.