Created
December 30, 2015 01:59
-
-
Save macedd/83729b00c73b4881e10a to your computer and use it in GitHub Desktop.
Simple Security checks for PHP
This file contains 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 | |
print_r([ | |
exec('woami'), // shell access | |
get_current_user(), // running user | |
file_get_contents('/etc/hosts') // open_basedir restriction | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment