
Page Builder Audit Security & Risk Analysis
wordpress.org/plugins/page-builder-auditAudit all your pages to see which page builder each one uses. Detects 10+ popular page builders.
Is Page Builder Audit Safe to Use in 2026?
Generally Safe
Score 100/100Page Builder Audit has no known CVEs and is actively maintained. It's a solid choice for most WordPress installations.
The "page-builder-audit" plugin version 1.0.0 exhibits an excellent security posture based on the provided static analysis. The absence of AJAX handlers, REST API routes, shortcodes, and cron events significantly limits its attack surface. Furthermore, the code demonstrates strong security practices, with all SQL queries utilizing prepared statements and all output properly escaped. The presence of nonce and capability checks, despite a single file operation and no external HTTP requests, suggests that the developers have implemented basic security measures where applicable.
The taint analysis shows zero flows, indicating no identifiable vulnerabilities related to unsanitized input. The plugin's vulnerability history is also clean, with no recorded CVEs of any severity. This suggests a well-written and securely developed plugin.
Overall, "page-builder-audit" v1.0.0 appears to be a very secure plugin. Its minimal attack surface, adherence to secure coding practices like prepared statements and output escaping, and lack of any known vulnerabilities or concerning taint flows all contribute to a strong security profile. The only area of slight consideration is the single file operation, which, without further context, is not a direct vulnerability but warrants awareness.
Page Builder Audit Security Vulnerabilities
Page Builder Audit Release Timeline
Page Builder Audit Code Analysis
Output Escaping
Page Builder Audit Attack Surface
WordPress Hooks 3
Maintenance & Trust
Page Builder Audit Maintenance & Trust
Maintenance Signals
Community Trust
Page Builder Audit Alternatives
Admin Page Spider
admin-page-spider
Puts all your pages and posts into the admin bar so you can simply hover, view & edit anything in one click.
JHMG Converter For Elementor to Divi
jhmg-converter-for-elementor-to-divi
Convert and export your Elementor-built pages to Divi with precision and ease. Save hours of rebuilding work with this migration tool.
Reusable Blocks – Elementor, Beaver Builder, WYSIWYG, Gutenberg
design-sidebar-using-page-builder
The plugin is useful for reuse the designed templates built using Beaver Builder, Elementor page builders. Also you can reuse the WordPress editor …
Elementor Website Builder – more than just a page builder
elementor
The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel perfect design, global and reusable style systems, mobile r …
Sticky Header Effects for Elementor
sticky-header-effects-for-elementor
Create advanced Sticky Headers in Elementor Free or Pro with scroll effects, blur, shrink, hide on scroll & full responsive controls.
Page Builder Audit Developer Profile
5 plugins · 310 total installs
How We Detect Page Builder Audit
Patterns used to identify this plugin on WordPress sites during automated security audits and web crawling.
Asset Fingerprints
/wp-content/plugins/page-builder-audit/page-builder-audit.phpHTML / DOM Fingerprints
chrs-pba-wrapchrs-pba-headerchrs-pba-summarychrs-pba-installedchrs-pba-badgechrs-pba-badge block_editorchrs-pba-badge classic_editorchrs-pba-badge empty+12 more Page Builder Audit
*
* Audit all pages to identify which page builder each uses. Detects Elementor,
* WPBakery, Divi, Beaver Builder, Brizy, Oxygen, Thrive Architect, SeedProd,
* Bricks, and Breakdance.
*
* @package CHRS_Page_Builder_Audit
*
* @wordpress-plugin
* Plugin Name: Page Builder Audit
* Plugin URI: https://wordpress.org/plugins/page-builder-audit/
* Description: Audit all pages to identify which page builder each uses. Detects Elementor, WPBakery, Divi, Beaver Builder, Brizy, Oxygen, Thrive Architect, SeedProd, Bricks, and Breakdance.
* Version: 1.0.0
* Author: CHRS Interactive
* Author URI: https://www.chrsinteractive.com/
* Text Domain: page-builder-audit
* Requires at least: 6.0
* Tested up to: 6.9
* Requires PHP: 8.2
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
/*
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/ Main plugin class for Page Builder Audit.
*
* Provides functionality to audit all pages and identify which page builder
* was used to create each page.
*
* @since 1.0.0
* Cache for active page builders.
*
* @var array|null
* Constructor. Sets up hooks for admin functionality.
*
* @since 1.0.0
*+4 more