!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:\Users\DMZ\Desktop\cumbreclima0909\wp-content\plugins\duplicator\views\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.36%)
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:     actions.php (4.99 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 *  DUPLICATOR_PACKAGE_SCAN
 *  Returns a json scan report object which contains data about the system
 *  
 *  @return json   json report object
 *  @example       to test: /wp-admin/admin-ajax.php?action=duplicator_package_scan
 */
function duplicator_package_scan() {
    
    
header('Content-Type: application/json;');
    
DUP_Util::CheckPermissions('export');
    
    @
set_time_limit(0);
    
$errLevel error_reporting();
    
error_reporting(E_ERROR);
    
DUP_Util::InitSnapshotDirectory();
    
    
$Package DUP_Package::GetActive();
    
$report $Package->Scan();
    
    
$Package->SaveActiveItem('ScanFile'$Package->ScanFile);
    
$json_response json_encode($report);
    
    
DUP_Package::TmpCleanup();
    
error_reporting($errLevel);
    die(
$json_response);
}

/**
 *  duplicator_package_build
 *  Returns the package result status
 *  
 *  @return json   json object of package results
 */
function duplicator_package_build() {
    
    
header('Content-Type: application/json');
    
DUP_Util::CheckPermissions('export');
    
    @
set_time_limit(0);
    
$errLevel error_reporting();
    
error_reporting(E_ERROR);
    
DUP_Util::InitSnapshotDirectory();

    
$Package DUP_Package::GetActive();
    
    if (!
is_readable(DUPLICATOR_SSDIR_PATH_TMP "/{$Package->ScanFile}")) {
        die(
"The scan result file was not found.  Please run the scan step before building the package.");
    }
    
    
$Package->Build();
    
    
//JSON:Debug Response
    //Pass = 1, Warn = 2, Fail = 3
    
$json = array();
    
$json['Status']   = 1;
    
$json['Package']  = $Package;
    
$json['Runtime']  = $Package->Runtime;
    
$json['ExeSize']  = $Package->ExeSize;
    
$json['ZipSize']  = $Package->ZipSize;
    
$json_response json_encode($json);
    
    
error_reporting($errLevel);
    die(
$json_response);
}


function 
duplicator_package_report() {
    
    
DUP_Util::CheckPermissions('export');
    
    
$scanReport $_GET['scanfile'];
    
header('Content-Type: application/json');
    
header("Location: " DUPLICATOR_SSDIR_URL "/tmp/" $scanReport);
    echo 
DUPLICATOR_SSDIR_URL "/tmp/" $scanReport;
    
    die();
}

/**
 *  DUPLICATOR_PACKAGE_DELETE
 *  Deletes the files and database record entries
 *
 *  @return json   A json message about the action.  
 *                   Use console.log to debug from client
 */
function duplicator_package_delete() {
    
    
DUP_Util::CheckPermissions('export');
    
    try {
        global 
$wpdb;
        
$json        = array();
        
$post        stripslashes_deep($_POST);
        
$tblName    $wpdb->prefix 'duplicator_packages';
        
$postIDs    = isset($post['duplicator_delid']) ? $post['duplicator_delid'] : null;
        
$list        explode(","$postIDs);
        
$delCount    0;
        
        if (
$postIDs != null) {
            
            foreach (
$list as $id) {
                
                
$getResult $wpdb->get_results($wpdb->prepare("SELECT name, hash FROM `{$tblName}` WHERE id = %d"$id), ARRAY_A);
                if (
$getResult) {
                    
$row        =  $getResult[0];
                    
$nameHash    "{$row['name']}_{$row['hash']}";
                    
$delResult    $wpdb->query($wpdb->prepare"DELETE FROM `{$tblName}` WHERE id = %d"$id ));
                    if (
$delResult != 0) {
                        
//Perms
                        
@chmod(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH_TMP "/{$nameHash}_archive.zip"), 0644);
                        @
chmod(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH_TMP "/{$nameHash}_database.sql"), 0644);
                        @
chmod(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH_TMP "/{$nameHash}_installer.php"), 0644);                        
                        @
chmod(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}_archive.zip"), 0644);
                        @
chmod(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}_database.sql"), 0644);
                        @
chmod(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}_installer.php"), 0644);
                        @
chmod(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}_scan.json"), 0644);
                        @
chmod(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}.log"), 0644);
                        
//Remove
                        
@unlink(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH_TMP "/{$nameHash}_archive.zip"));
                        @
unlink(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH_TMP "/{$nameHash}_database.sql"));
                        @
unlink(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH_TMP "/{$nameHash}_installer.php"));
                        @
unlink(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}_archive.zip"));
                        @
unlink(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}_database.sql"));
                        @
unlink(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}_installer.php"));
                        @
unlink(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}_scan.json"));
                        @
unlink(DUP_Util::SafePath(DUPLICATOR_SSDIR_PATH "/{$nameHash}.log"));
                        
//Unfinished Zip files
                        
$tmpZip DUPLICATOR_SSDIR_PATH_TMP "/{$nameHash}_archive.zip.*";
                        
array_map('unlink'glob($tmpZip));
                        @
unlink(DUP_Util::SafePath());
                        
$delCount++;
                    } 
                }
            }
        }

    } catch (
Exception $e) {
        
$json['error'] = "{$e}";
        die(
json_encode($json));
    }
    
    
$json['ids'] = "{$postIDs}";
    
$json['removed'] = $delCount;
    die(
json_encode($json));
}

//DO NOT ADD A CARRIAGE RETURN BEYOND THIS POINT (headers issue)!!
?>

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