[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.144.89.0: ~ $
<?php
/*
* SiteSEO
* https://siteseo.io/
* (c) SiteSEO Team <support@siteseo.io>
*/

/*
Copyright 2016 - 2024 - Benjamin Denis  (email : contact@seopress.org)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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 St, Fifth Floor, Boston, MA  02110-1301  USA
*/

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

// Are we being accessed directly ?
if(!defined('SITESEO_VERSION')) {
	exit('Hacking Attempt !');
}

/**
 * Automatically ping Google daily for XML sitemaps
 *
 * @since 1.0.0
 *
 */
function siteseo_xml_sitemaps_ping_cron_action(){
	
	//Disable if MainWP add-on enabled
	if (defined('SITESEO_WPMAIN_VERSION')) {
		return;
	}

	// If site is set to noindex globally
	if ('1' === siteseo_get_service('TitleOption')->getTitleNoIndex() || '0' === get_option('blog_public')) {
		return;
	}
	
	// Check if XML sitemaps is enabled
	if ('1' !== siteseo_get_service('SitemapOption')->isEnabled() || '1' !== siteseo_get_toggle_option('xml-sitemap')) {
		return;
	}

	// Disable if IndexNow is enabled
	$options = get_option('siteseo_instant_indexing_option_name');
	if ('1' == siteseo_get_toggle_option('instant-indexing') && isset($options['engines']['bing']) && $options['engines']['bing'] === '1') {
		return;
	}

	$url = rawurlencode(get_option('home').'/sitemaps.xml/');

	$url = apply_filters( 'siteseo_sitemaps_xml_ping_url', $url);

	$args = [
		'blocking' => false,
	];

	$args = apply_filters( 'siteseo_sitemaps_xml_ping_args', $args);

	wp_remote_get('https://www.google.com/ping?sitemap='.$url, $args);
}
add_action('siteseo_xml_sitemaps_ping_cron', 'siteseo_xml_sitemaps_ping_cron_action');

Filemanager

Name Type Size Permission Actions
admin-bar Folder 0755
admin-pages Folder 0755
ajax-migrate Folder 0755
docs Folder 0755
export Folder 0755
metaboxes Folder 0755
migrate Folder 0755
page-builders Folder 0755
sanitize Folder 0755
wizard Folder 0755
admin-dyn-variables-helper.php File 4.92 KB 0644
admin.php File 22.64 KB 0644
ajax.php File 51.1 KB 0644
cron.php File 2.09 KB 0644
notifications-center.php File 26.57 KB 0644