Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
Mailer /
adodb /
session /
Delete
Unzip
Name
Size
Permission
Date
Action
old
[ DIR ]
drwxr-sr-x
2008-01-09 06:27
.Index.txt
969
B
-rw-r--r--
2008-01-09 06:27
adodb-compress-bzip2.php
2.01
KB
-rw-r--r--
2008-01-09 06:27
adodb-compress-gzip.php
1.47
KB
-rw-r--r--
2008-01-09 06:27
adodb-cryptsession.php
590
B
-rw-r--r--
2008-01-09 06:27
adodb-encrypt-mcrypt.php
1.78
KB
-rw-r--r--
2008-01-09 06:27
adodb-encrypt-md5.php
756
B
-rw-r--r--
2008-01-09 06:27
adodb-encrypt-secret.php
1005
B
-rw-r--r--
2008-01-09 06:27
adodb-encrypt-sha1.php
376
B
-rw-r--r--
2008-01-09 06:27
adodb-sess.txt
3.69
KB
-rw-r--r--
2008-01-09 06:27
adodb-session-clob.php
515
B
-rw-r--r--
2008-01-09 06:27
adodb-session.php
20.07
KB
-rw-r--r--
2008-01-09 06:27
adodb-sessions.mysql.sql
396
B
-rw-r--r--
2008-01-09 06:27
adodb-sessions.oracle.clob.sql
281
B
-rw-r--r--
2008-01-09 06:27
adodb-sessions.oracle.sql
313
B
-rw-r--r--
2008-01-09 06:27
crypt.inc.php
2.75
KB
-rw-r--r--
2008-01-09 06:27
session_schema.xml
537
B
-rw-r--r--
2008-01-09 06:27
Save
Rename
<?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; } } ?>