Is there any way to see hidden content on a website maybe hidden cloudfront links?

I know this might sound a bit crazy but is there any way to see hidden content on a website? For example have a look here . Is there a way to see the hidden images. I saw the source code and I think there is something with cloudfront system.

Any help will be appreciated Thank you

0

1 Answer

It depends on how they have 'hidden' the content:

  • If they just use display: none; or visibility: hidden; (i.e. they sytlistically hide it) then you can't see it as the browser won't render the item, but it will still exist in the HTML; if it's an image, the link to the image will be valid, or if it is text you can just read it.

  • In your example, they are using some server-side code to limit what is actually emitted into HTML - thus there is nothing there. That way people can't just inspect the source and hack around it.

5

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like