Skip to content

Instantly share code, notes, and snippets.

@DominicFinn
Created July 13, 2016 14:52
Show Gist options
  • Save DominicFinn/7a9477848199971f603a6af26f3ba9fe to your computer and use it in GitHub Desktop.
Save DominicFinn/7a9477848199971f603a6af26f3ba9fe to your computer and use it in GitHub Desktop.
Windows CE User Agent Booster
<?php
$yourfavesite = 'https://www.lol.com'
while(true){
$options = array('http' => array('user_agent' => 'Mozilla/4.0 (compatible; MSIE 4.01; Windows CE)'));
$context = stream_context_create($options);
$response = file_get_contents($yourfavesite, false, $context);
print_r($response);
sleep(10);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment