⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
cms-1.dev-unit.com
/
core
/
View File Name :
inject.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Updater</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> </head> <body> <?php $base = __DIR__ . '/../'; // replace web.php unlink($base . 'core/routes/web.php'); copy("web.php", $base . 'core/routes/web.php'); // place UpdaterController.php if (file_exists($base . './core/app/Http/Controllers/UpdateController.php')) { unlink($base . './core/app/Http/Controllers/UpdateController.php'); } copy("UpdateController.php", $base . 'core/app/Http/Controllers/UpdateController.php'); ?> <div class="container"> <div class="row"> <div class="col-lg-8 offset-lg-2 pt-5"> <div class="alert alert-success"> Updater codes has been injected </div> <div class="card"> <form action="../update/version"> <div class="card-footer text-center"> <button class="btn btn-success" type="submit">Update</button> </div> </form> </div> </div> </div> </div> </body> </html>