PHP Source of http://www.andlabs.net/html5/acCOR.php:
<?php
if($_SERVER['HTTP_ORIGIN'] == "http://www.andlabs.org")
{
header('Access-Control-Allow-Origin: http://www.andlabs.org');
echo "This is sensitive information only available to requests from www.andlabs.org";
}
else
{
echo "This is just a normal page with no sensitive information";
}
?>
To make a request to this page from www.andlabs.org and view the response click here.