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

推荐订阅源

Martin Fowler
Martin Fowler
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
L
LangChain Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
美团技术团队
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
D
DataBreaches.Net
P
Proofpoint News Feed
小众软件
小众软件
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
WordPress大学
WordPress大学
雷峰网
雷峰网
G
Google Developers Blog

Hackread – Cybersecurity News, Data Breaches, AI and More

Suspected Cyberattack Sends Fake Emergency Alert to Phones Across Brazil Operation Endgame Disrupts StealC, Amadey and SocGholish Malware Networks New GhostShell Hacking Group Targets Ukraine’s Drone Defense Sector Fake npm Packages Impersonate PostCSS Tool to Steal Chrome Passwords Best Crypto Payment Solutions for E-Commerce Businesses Internet Society Foundation Opens Global Call for Common Good Cyber Fund to Strengthen Cybersecurity LastPass Confirms Customer Data Breach After Klue OAuth Token Theft ‘Cordyceps’ CI/CD Flaw Exposes Microsoft, Google, Apache Repos to Pipeline Hijacking The Rise of AI-Powered Academic Fraud: Beyond Traditional Plagiarism New CryptoBandits Malware Uses USB Drives and Tor to Steal Crypto The Evolution of iGaming Fraud: What Security Teams Should Expect in 2027 2 Scattered Spider-Linked Hackers Plead Guilty Over £39M TfL Cyberattack Beats Studio Buds Flaw Could Let Nearby Attackers Eavesdrop on Users Texas Parks and Wildlife Data Breach Affects Over 3M License Customers Threat Hunting Beyond Alerts: Finding the Activity Detection Misses Scammers Use Fake GitHub Stars, VirusTotal Reviews to Spread Crypto Clipper Salesforce Disables Klue Integration After OAuth Token Theft Hits Customer Data MDR Provider Comparison: Time to Discover and Respond to Threats Meteor 3.0 Migration Helped Rocket.Chat Move Off End-of-Life Node.js Runtime Gcore Helps Ucom Safeguard Public Live Broadcast Infrastructure During Armenia’s Parliamentary Elections Nintendo America Employee Data Exposed After Shadowbyt3$ Targets TinyPulse eFAQ Publishes Investigation Into Alleged Scam Activity and Coordinated Reputation Attacks FIFA World Cup 2026: Hackers Target Football Fans With Fake Tickets Sites MacBook Neo vs Windows Laptops for Cybersecurity Tasks Operation Endgame Disrupts SocGholish Malware Infrastructure What Businesses Should Know Before Migrating Their CMS DragonForce Ransomware Abused Microsoft Teams to Hide Malware Activity Agentjacking: Researchers Show How One Fake Bug Report Can Hijack AI Coding Agents FortiBleed Attack Exposes Fortinet Firewall Credentials in 194 Countries SpyCloud Report Finds Phishing Attacks Surge as Employee Data Is Exposed at 86% of Fortune 100 Companies
Zero-Click pretalx XSS Flaw Lets Hackers Hijack Conferenc...
Deeba Ahmed · 2026-06-01 · via Hackread – Cybersecurity News, Data Breaches, AI and More

Cybersecurity researchers at the firm Novee Security have discovered a dangerous flaw in pretalx, a popular open-source software, which allows cybercriminals to completely hijack organiser accounts without having to click a single link. It is a high-severity stored Cross-Site Scripting (XSS) vulnerability, tracked as CVE-2026-41241 with a high CVSS score of 8.7.

For your information, pretalx is widely used to run Call for Papers (CFP) processes and scheduling for everything from hacker camps to academic symposiums. The vulnerability was analyzed by Elad Meged, a founding engineer and security researcher at Novee, who noticed that while different events look independent from the outside, they run on the same underlying codebase. This means a single flaw creates systemic exposure across the industry.

Bypassing Content Security Policies

Novee’s blog post, shared with Hackread.com, reveals that the attack vector requires low privileges and low complexity, so any registered user can exploit it simply by planting HTML or JavaScript in the organizer-side search bar dropdown. Basically, the conference website is tricked into running malicious code hidden inside normal presentation submissions.

Researchers explain that pretalx uses a strict Content Security Policy (CSP) featuring script-src ‘self’ with HTML5 innerHTML script suppression to prevent unauthorised code execution. However, attackers can completely bypass these defences through a chained exploit where they upload a .js payload file disguised as normal lecture materials or slides to the CFP platform, and because the file is stored directly on the platform, it adopts the site’s own domain origin. The attacker then places an iframe tag in their submission title:

Zero-Click pretalx XSS Flaw Lets Hackers Hijack Conference Organizer Accounts

When an organizer searches for common words like “intro” or “machine learning,” the typeahead search renders the title. The srcdoc attribute creates a fresh document context that bypasses the HTML5 script block. Because pretalx lacks a frame-src directive, the iframe executes the uploaded script, passing the CSP filter. This grants the script full access to the organizer’s session for instant hijacking, data theft, and automated talk acceptance.

Demoting Administrators Without JavaScript

The analysis also exposed a secondary technique requiring no JavaScript at all. By placing an image tag in a submission title, the browser automatically makes an authenticated GET request to load the image source. The moment the search results render, this request triggers a superuser-demotion endpoint, permanently revoking the organizer’s admin privileges.

Furthermore, the investigation revealed how threat actors could use automated AI software agents to weaponise this flaw on a bigger scale. They could deploy an agent to scrape public pretalx deployments, generate custom presentation abstracts using large language models (LLMs), and automatically flood dozens of conferences with the malicious payload simultaneously. They just need to target the search terms organisers use most to get their own submissions accepted, theoretically achieving a 100% acceptance rate across 40 or more conferences.

Traditional application security tools fail to catch these attacks. “Static analysis flags innerHTML. DAST scanners replay payloads against forms,” researchers noted, explaining that while tools classify individual bugs as low-risk, they cannot model how an autonomous agent can compose these pieces into a full chain.

Novee has praised the pretalx team and creator Tobias Kunze for a quick and cooperative response as the vulnerability was officially patched on May 27, 2026, in pretalx version v2026.1.0.