| 제목 | descreekert wx-discuz master (latest commit: 12bd474 ) CWE-79 |
|---|
| 설명 | project url: https://github.com/descreekert/wx-discuz
Vulnerability code pattern: `echo $_GET`
Vulnerability code path: wx.php:24
```php
public function validToken()
{
$echoStr = $_GET["echostr"];
//valid signature , option
if($this->checkSignature()){
echo $echoStr;
exit;
}
}
```
CWE: CWE-79-Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
CWE Description: The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users. |
|---|
| 사용자 | dev03303 (UID 85336) |
|---|
| 제출 | 2025. 07. 16. AM 09:22 (9 개월 ago) |
|---|
| 모더레이션 | 2025. 07. 18. AM 11:33 (2 days later) |
|---|
| 상태 | 수락 |
|---|
| VulDB 항목 | 316869 [descreekert wx-discuz 까지 12bd4745c63ec203cb32119bf77ead4a923bf277 /wx.php validToken echostr 크로스 사이트 스크립팅] |
|---|
| 포인트들 | 17 |
|---|