Skip to content

Instantly share code, notes, and snippets.

@macedd
Created December 30, 2015 01:59
Show Gist options
  • Save macedd/83729b00c73b4881e10a to your computer and use it in GitHub Desktop.
Save macedd/83729b00c73b4881e10a to your computer and use it in GitHub Desktop.
Simple Security checks for PHP
<?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