PHP代码审计 - 准备工作

工欲善其事必先利其器

工具预备

安装phpstorm2020并且注册为正版:下载安装包+破解程序,里面的文档有写😆

配置

这里需要配置浏览器和phpstorm,还有phpstudy

浏览器

安装XDebug插件

phpstudy配置



代码如下

[Xdebug]
zend_extension="【php XDebug扩展的路径】"
xdebug.profiler_enable=Of
xdebug.remote_enable=On
xdebug.remote_host="localhost"
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.idekey="PHPSTORM"

网站配置文件中加入两行代码设置连接超时时间

FcgidIOTimeout 3000  #程序响应超时时间
FcgidConnectTimeout 3000  #与程序通讯的最长时间

phpstorm配置