This page exposes the cookie session name and that is has to be set to give access to the super secret key. Can this be hacked, like setting the cookie remotely somehow and in that case how?
<?php
isset($_SESSION) ? true : session_start();
isset($_SESSION['sure_you_have_access']) ? true : exit("NO ACCESS session cookie sure_you_have_access isnt set :S");
echo "Here is the super secret key ABC123, that you shouldn't be able to read unless the session cookie variable sure_you_have_access is set to anything. "; ?>