php注入代码片段

修改php fpm配置文件

; Automatically add files before PHP document.
; http://php.net/auto-prepend-file
auto_prepend_file = 

; Automatically add files after PHP document.
; http://php.net/auto-append-file
auto_append_file =

如果使用Nginx的话,还可以通过Nginx的配置文件设置,这样侵入性更小,并且可以实现基于站点的注入。

fastcgi_param PHP_VALUE "auto_prepend_file=/opt/inject.php";


你可能感兴趣的:(PHP)