Skip to content

Instantly share code, notes, and snippets.

@buesing
Last active August 29, 2015 14:10
Show Gist options
  • Save buesing/1807aa4659ba5470eec5 to your computer and use it in GitHub Desktop.
Save buesing/1807aa4659ba5470eec5 to your computer and use it in GitHub Desktop.
AdBlock circumvention
<?php
$urls = explode(",", $_POST["url"]);
for ($i = 0; $i < count($urls); $i++) {
$result = file_get_contents($urls[$i]);
echo(base64_encode($result));
if ($i < count($urls) - 1) {
echo("\n");
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment