Skip to content
Tech News
← Back to articles

vBulletin fixes critical pre-auth RCE flaw with public exploit

read original more articles
Why This Matters

The discovery of a critical pre-authentication remote code execution vulnerability in vBulletin underscores the ongoing risks associated with legacy forum platforms. With a publicly available proof-of-concept, attackers now have an easier pathway to exploit unpatched systems, emphasizing the importance of timely updates and security vigilance for online communities and organizations relying on vBulletin. This incident highlights the need for proactive security measures to protect sensitive data and maintain platform integrity in the face of evolving threats.

Key Takeaways

A critical vulnerability in the vBulletin forum software allows unauthenticated attackers to execute arbitrary PHP code through template rendering.

The security issue is tracked as CVE-2026-61511 and affects vBulletin versions in the 5.x and 6.x branches up to 5.7.5 and 6.2.1, respectively.

vBulletin is a PHP-based proprietary forum platform released in 2000 and used by large online communities, gaming sites, support portals, automotive forums, tech forums, and discussion boards.

Although the platform has lost popularity over the years to newer, more modern solutions, it still retains a significant market share.

Independent security researcher Egidio Romano discovered the flaw and reported it through the SSD Secure Disclosure advisory program and published a technical write-up.

According to Romano, the flaw is caused by the ‘runMaths()’ function, which doesn’t properly sanitize user input before passing it to PHP's eval() function, which should be limited to mathematical expressions only.

The researcher found that unauthenticated attackers can exploit the flaw by sending a specially crafted request to the 'ajax/render/[template]' endpoint.

The request is processed by a vulnerable template, like 'pagenav', that ultimately passes attacker-controlled input to PHP's eval() function, resulting in remote code execution.

SSD Secure Disclosure has also published a technical analysis for CVE-2026-61511, explaining that the sanitization restrictions can be bypassed using the so-called “phpfuck” technique.

The researchers also published a proof-of-concept (PoC) exploit targeting the ajax/render/pagenav route and executing arbitrary system commands on vulnerable servers.

... continue reading