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

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/var/softaculous/zurmo/   drwxr-xr-x
Free 293.26 GB of 429.69 GB (68.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     debug.php (7.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
    
/*********************************************************************************
     * Zurmo is a customer relationship management program developed by
     * Zurmo, Inc. Copyright (C) 2017 Zurmo Inc.
     *
     * Zurmo is free software; you can redistribute it and/or modify it under
     * the terms of the GNU Affero General Public License version 3 as published by the
     * Free Software Foundation with the addition of the following permission added
     * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
     * IN WHICH THE COPYRIGHT IS OWNED BY ZURMO, ZURMO DISCLAIMS THE WARRANTY
     * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
     *
     * Zurmo is distributed in the hope that it will be useful, but WITHOUT
     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
     * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
     * details.
     *
     * You should have received a copy of the GNU Affero General Public License along with
     * this program; if not, see http://www.gnu.org/licenses or write to the Free
     * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
     * 02110-1301 USA.
     *
     * You can contact Zurmo, Inc. with a mailing address at 27 North Wacker Drive
     * Suite 370 Chicago, IL 60606. or at email address contact@zurmo.com.
     *
     * The interactive user interfaces in original and modified versions
     * of this program must display Appropriate Legal Notices, as required under
     * Section 5 of the GNU Affero General Public License version 3.
     *
     * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
     * these Appropriate Legal Notices must retain the display of the Zurmo
     * logo and Zurmo copyright notice. If the display of the logo is not reasonably
     * feasible for technical reasons, the Appropriate Legal Notices must display the words
     * "Copyright Zurmo Inc. 2017. All rights reserved".
     ********************************************************************************/

    // Keep this on ALL THE TIME WHEN DEVELOPING. Turn it off in production.
    // Check it in as false!
    
$debugOn false;

    
// Turn this on to see additional performance information. Turn it off in production.
    // Check it in as true!
    
$performanceOn false;

    
// Turn this on to see RedBean queries. Turn it off in production.
    // Check it in as false!
    
$redBeanDebugOn false;

    
// Turn this on to save RedBean queries into file. Turn it off in production.
    // Check it in as false!
    
$redBeanDebugLogToFileOn false;

    
// Turn this on to see extra query data such as total count, duplicate count, and duplicate queries
    // Check it in as false!
    
$queryDataOn false;

    
// Turn this off to use php to do permissions, rights, and polices.
    // Use this to comparatively test the mysql stored functions and procedures.
    // Check it in as true!
    
$securityOptimized false;

    
// Turn this off to use AuditEvent to do write audit entries when
    // the database is frozen. When it is not frozen it will always be used.
    // Use this to comparatively test.
    // Check it in as true!
    
$auditingOptimized true;

    
// Turn this off to test without php level caching.
    // Php level caching is required so that only one instance of
    // any model is in memory at once. Turning it off is only useful
    // in limited debugging scenarios.
    // Check it in as true!
    
$phpLevelCaching true;

    
// Turn this off to test without memcache level caching.
    // Memcache level caching works in conjunction with php level
    // caching. When a model is pulled from memcache its related
    // models will subsequently be pull from the php level cache
    // if they already exist in memory, or will be pulled from
    // memcache. A model's related models are not serialized
    // along with it.
    // Check it in as true!
    
$memcacheLevelCaching false;

    
// Turn this off to test without db level caching of permissions.
    // Check it in as true!
    
$dbLevelCaching true;

    
// Turn this off when you debug css/javascript code.
    // Turn it on for production websites, because it optimize and combine javascript/css
    // files, so page can loads much faster
    // Check it in as true!
    
$minifyScripts true;

    
// Turn this off if you are not fixing validation error.
    // W3C online validator is used, so pages render slow when validator is turned on.
    // Works only in debug mode (when $debugOn = true).
    
$xhtmlValidation false;

    
// Should Crash reports be automatically submitted to Sentry
    
$submitCrashToSentry false;

    
// Set information related to function tests
    // 1. $seleniumServerPath is path to selenium server(selenium jar file)
    // 2. $testBaseUrl is url of website to be tested via selenium server. It can be local or remote
    // 3. $seleniumTestResultUrl is url where results of functional tests can be seen
    // 4. $seleniumTestResultsPath path where functional tests will be stored, relatibe to basePath
    // 5. $seleniumServerPort - selenium server port
    // 6. $seleniumBrowsersToRun - list of browsers to run functional tests in
    // 7. $seleniumDbControlUrl - url via which we can backup/restore db, so tests will be independent
    // For more details, please check protected/tests/functional/TestSuite.php
    
$seleniumServerPath             '';
    
$seleniumTestBaseUrl            '';
    
$seleniumTestResultUrl          '';
    
$seleniumTestResultsPath        '';
    
$seleniumServerPort             '4048';
    
$seleniumBrowsersToRun          'All';
    
$seleniumControlUrl           '';

    if (
$debugOn)
    {
        
error_reporting(E_ALL E_STRICT);
    }

    
define('YII_DEBUG',              $debugOn);
    
define('YII_TRACE_LEVEL',        $debugOn 0);
    
define('SHOW_PERFORMANCE',       $performanceOn);
    
define('SHOW_QUERY_DATA',        $queryDataOn);
    
define('REDBEAN_DEBUG',          $redBeanDebugOn);
    
define('REDBEAN_DEBUG_TO_FILE',  $redBeanDebugLogToFileOn);
    
define('SECURITY_OPTIMIZED',     $securityOptimized);
    
define('AUDITING_OPTIMIZED',     $auditingOptimized);
    
define('PHP_CACHING_ON',         $phpLevelCaching);
    
define('MEMCACHE_ON',            $memcacheLevelCaching);
    
define('DB_CACHING_ON',          $dbLevelCaching);
    
define('MINIFY_SCRIPTS',         $minifyScripts);
    
define('XHTML_VALIDATION',       $xhtmlValidation);
    
define('SUBMIT_CRASH_TO_SENTRY'$submitCrashToSentry);

    
assert_options(ASSERT_ACTIVE,   $debugOn); // Don't even think about disabling asserts!
    
assert_options(ASSERT_WARNING,  $debugOn);
    
assert_options(ASSERT_BAIL,     false);
    if (
php_sapi_name() != 'cli')
    {
        
assert_options(ASSERT_CALLBACK'assertFailureInBrowser');
    }
    else
    {
        
assert_options(ASSERT_CALLBACK'assertFailureInCli');
    }
    
$phpVersion explode('.'phpversion());
    if (
$phpVersion[0] >= && $debugOn)
    {
        if (
ini_get('zend.assertions') == 0)
        {
            
ini_set('zend.assertions''1');
        }
        
ini_set('assert.exception''0');
    }

    function 
assertFailureInBrowser($file$line$message)
    {
        echo 
'<span style="background-color: red; color: yellow; font-weight:bold;">';
        echo 
"ASSERTION FAILED in $file on line $line";
        if (
is_string($message) && !empty($message))
        {
            echo 
": assert('$message'); "// Not Coding Standard
        
}
        echo 
'</span><br />';
    }

    function 
assertFailureInCli($file$line$message)
    {
        throw new 
FailedAssertionException($file$line$message);
    }
?>

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