Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 18.219.66.32
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 /
fo /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
app.php
8.67
KB
-rw-rw-rw-
2022-11-18 23:36
auth.php
3.69
KB
-rw-rw-rw-
2022-11-18 23:36
broadcasting.php
2.16
KB
-rw-rw-rw-
2022-11-18 23:36
cache.php
3.3
KB
-rw-rw-rw-
2022-11-18 23:36
cors.php
880
B
-rw-rw-rw-
2022-11-18 23:36
database.php
5.31
KB
-rw-rw-rw-
2022-11-18 23:36
datatables.php
4.14
KB
-rw-rw-rw-
2022-11-18 23:36
filesystems.php
2.39
KB
-rw-rw-rw-
2022-11-18 23:36
flare.php
2.63
KB
-rw-rw-rw-
2022-11-18 23:36
fortify.php
4.98
KB
-rw-rw-rw-
2022-11-18 23:36
fpdf.php
185
B
-rw-rw-rw-
2022-11-18 23:36
hashing.php
1.59
KB
-rw-rw-rw-
2022-11-18 23:36
ignition.php
8.93
KB
-rw-rw-rw-
2022-11-18 23:36
logging.php
3.78
KB
-rw-rw-rw-
2022-11-18 23:36
mail.php
3.63
KB
-rw-rw-rw-
2022-11-18 23:36
pdf.php
436
B
-rw-rw-rw-
2022-11-18 23:36
queue.php
2.93
KB
-rw-rw-rw-
2022-11-18 23:36
sanctum.php
2.31
KB
-rw-rw-rw-
2022-11-18 23:36
services.php
1013
B
-rw-rw-rw-
2022-11-18 23:36
session.php
7.05
KB
-rw-rw-rw-
2022-11-18 23:36
sweetalert.php
7.74
KB
-rw-rw-rw-
2022-11-18 23:36
tinker.php
1.52
KB
-rw-rw-rw-
2022-11-18 23:36
view.php
1.06
KB
-rw-rw-rw-
2022-11-18 23:36
Save
Rename
<?php return [ /* * DataTables search options. */ 'search' => [ /* * Smart search will enclose search keyword with wildcard string "%keyword%". * SQL: column LIKE "%keyword%" */ 'smart' => true, /* * Multi-term search will explode search keyword using spaces resulting into multiple term search. */ 'multi_term' => true, /* * Case insensitive will search the keyword in lower case format. * SQL: LOWER(column) LIKE LOWER(keyword) */ 'case_insensitive' => true, /* * Wild card will add "%" in between every characters of the keyword. * SQL: column LIKE "%k%e%y%w%o%r%d%" */ 'use_wildcards' => false, /* * Perform a search which starts with the given keyword. * SQL: column LIKE "keyword%" */ 'starts_with' => false, ], /* * DataTables internal index id response column name. */ 'index_column' => 'DT_RowIndex', /* * List of available builders for DataTables. * This is where you can register your custom dataTables builder. */ 'engines' => [ 'eloquent' => Yajra\DataTables\EloquentDataTable::class, 'query' => Yajra\DataTables\QueryDataTable::class, 'collection' => Yajra\DataTables\CollectionDataTable::class, 'resource' => Yajra\DataTables\ApiResourceDataTable::class, ], /* * DataTables accepted builder to engine mapping. * This is where you can override which engine a builder should use * Note, only change this if you know what you are doing! */ 'builders' => [ //Illuminate\Database\Eloquent\Relations\Relation::class => 'eloquent', //Illuminate\Database\Eloquent\Builder::class => 'eloquent', //Illuminate\Database\Query\Builder::class => 'query', //Illuminate\Support\Collection::class => 'collection', ], /* * Nulls last sql pattern for PostgreSQL & Oracle. * For MySQL, use 'CASE WHEN :column IS NULL THEN 1 ELSE 0 END, :column :direction' */ 'nulls_last_sql' => ':column :direction NULLS LAST', /* * User friendly message to be displayed on user if error occurs. * Possible values: * null - The exception message will be used on error response. * 'throw' - Throws a \Yajra\DataTables\Exceptions\Exception. Use your custom error handler if needed. * 'custom message' - Any friendly message to be displayed to the user. You can also use translation key. */ 'error' => env('DATATABLES_ERROR', null), /* * Default columns definition of dataTable utility functions. */ 'columns' => [ /* * List of columns hidden/removed on json response. */ 'excess' => ['rn', 'row_num'], /* * List of columns to be escaped. If set to *, all columns are escape. * Note: You can set the value to empty array to disable XSS protection. */ 'escape' => '*', /* * List of columns that are allowed to display html content. * Note: Adding columns to list will make us available to XSS attacks. */ 'raw' => ['action'], /* * List of columns are forbidden from being searched/sorted. */ 'blacklist' => ['password', 'remember_token'], /* * List of columns that are only allowed fo search/sort. * If set to *, all columns are allowed. */ 'whitelist' => '*', ], /* * JsonResponse header and options config. */ 'json' => [ 'header' => [], 'options' => 0, ], /* * Default condition to determine if a parameter is a callback or not. * Callbacks needs to start by those terms, or they will be cast to string. */ 'callback' => ['$', '$.', 'function'], ];