!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:\cumbre\cumbreclima\wp-content\plugins\js_composer\include\templates\shortcodes\   drwxrwxrwx
Free 3.26 GB of 39.52 GB (8.25%)
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:     vc_images_carousel.php (4.57 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
$output 
$title $onclick $custom_links $img_size $custom_links_target $images $el_class $partial_view '';
$mode $slides_per_view $wrap $autoplay $hide_pagination_control $hide_prev_next_buttons $speed '';
extractshortcode_atts( array(
    
'title' => '',
    
'onclick' => 'link_image',
    
'custom_links' => '',
    
'custom_links_target' => '',
    
'img_size' => 'thumbnail',
    
'images' => '',
    
'el_class' => '',
    
'mode' => 'horizontal',
    
'slides_per_view' => '1',
    
'wrap' => '',
    
'autoplay' => '',
    
'hide_pagination_control' => '',
    
'hide_prev_next_buttons' => '',
    
'speed' => '5000',
    
'partial_view' => ''
), $atts ) );
$gal_images '';
$link_start '';
$link_end '';
$el_start '';
$el_end '';
$slides_wrap_start '';
$slides_wrap_end '';
$pretty_rand $onclick == 'link_image' rand() : '';

wp_enqueue_script'vc_carousel_js' );
wp_enqueue_style'vc_carousel_css' );
if ( 
$onclick == 'link_image' ) {
    
wp_enqueue_script'prettyphoto' );
    
wp_enqueue_style'prettyphoto' );
}

$el_class $this->getExtraClass$el_class );

if ( 
$images == '' $images '-1,-2,-3';

if ( 
$onclick == 'custom_link' ) {
    
$custom_links explode','$custom_links );
}

$images explode','$images );
$i = - 1;
$css_class apply_filtersVC_SHORTCODE_CUSTOM_CSS_FILTER_TAG'wpb_images_carousel wpb_content_element' $el_class ' vc_clearfix'$this->settings['base'], $atts );
$carousel_id 'vc_images-carousel-' WPBakeryShortCode_VC_images_carousel::getCarouselIndex();
$slider_width $this->getSliderWidth$img_size );
?>
<div class="<?php echo apply_filtersVC_SHORTCODE_CUSTOM_CSS_FILTER_TAG$css_class$this->settings['base'], $atts ?>">
    <div class="wpb_wrapper">
        <?php echo  wpb_widget_title( array( 'title' => $title'extraclass' => 'wpb_gallery_heading' ) ) ?>
        <div id="<?php echo $carousel_id ?>" data-ride="vc_carousel"
             data-wrap="<?php echo $wrap === 'yes' 'true' 'false' ?>" style="width: <?php echo $slider_width ?>;"
             data-interval="<?php echo $autoplay == 'yes' $speed 0 ?>" data-auto-height="yes"
             data-mode="<?php echo $mode ?>" data-partial="<?php echo $partial_view === 'yes' 'true' 'false' ?>"
             data-per-view="<?php echo $slides_per_view ?>"
             data-hide-on-end="<?php echo $autoplay == 'yes' 'false' 'true' ?>" class="vc_slide vc_images_carousel">
            <?php if ( $hide_pagination_control !== 'yes' ): ?>
            <!-- Indicators -->
            <ol class="vc_carousel-indicators">
                <?php for ( $z 0$z count$images ); $z ++ ): ?>
                <li data-target="#<?php echo $carousel_id ?>" data-slide-to="<?php echo $z ?>"></li>
                <?php endfor; ?>
            </ol>
            <?php endif; ?>
            <!-- Wrapper for slides -->
            <div class="vc_carousel-inner">
                <div class="vc_carousel-slideline">
                    <div class="vc_carousel-slideline-inner">
                        <?php foreach ( $images as $attach_id ): ?>
                        <?php
                        $i 
++;
                        if ( 
$attach_id ) {
                            
$post_thumbnail wpb_getImageBySize( array( 'attach_id' => $attach_id'thumb_size' => $img_size ) );
                        } else {
                            
$post_thumbnail = array();
                            
$post_thumbnail['thumbnail'] = '<img src="' vc_asset_url'vc/no_image.png' ) . '" />';
                            
$post_thumbnail['p_img_large'][0] = vc_asset_url'vc/no_image.png' );
                        }
                        
$thumbnail $post_thumbnail['thumbnail'];
                        
?>
                        <div class="vc_item">
                            <div class="vc_inner">
                                <?php if ( $onclick == 'link_image' ): ?>
                                <?php $p_img_large $post_thumbnail['p_img_large']; ?>
                                <a class="prettyphoto"
                                   href="<?php echo $p_img_large[0?><?php echo ' rel="prettyPhoto[rel-' $pretty_rand ']"' ?>>
                                    <?php echo $thumbnail ?>
                                </a>
                                <?php elseif ( $onclick == 'custom_link' && isset( $custom_links[$i] ) && $custom_links[$i] != '' ): ?>
                                <a
                                  href="<?php echo $custom_links[$i?>"<?php echo ( ! empty( $custom_links_target ) ? ' target="' $custom_links_target '"' '' ?>>
                                    <?php echo $thumbnail ?>
                                </a>
                                <?php else: ?>
                                <?php echo $thumbnail ?>
                                <?php endif; ?>
                            </div>
                        </div>
                        <?php endforeach; ?>
                    </div>
                </div>
            </div>
            <?php if ( $hide_prev_next_buttons !== 'yes' ): ?>
            <!-- Controls -->
            <a class="vc_left vc_carousel-control" href="#<?php echo $carousel_id ?>" data-slide="prev">
                <span class="icon-prev"></span>
            </a>
            <a class="vc_right vc_carousel-control" href="#<?php echo $carousel_id ?>" data-slide="next">
                <span class="icon-next"></span>
            </a>
            <?php endif; ?>
        </div>
    </div><?php echo $this->endBlockComment'.wpb_wrapper' ?>
</div><?php echo $this->endBlockComment'.wpb_images_carousel' ?>

:: 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.0156 ]--