webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Concerns
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
BuildsQueries.php
17.61KB
edt
ren
CompilesJsonPaths.php
1.507KB
edt
ren
ExplainsQueries.php
0.441KB
edt
ren
ManagesTransactions.php
9.48KB
edt
ren
ParsesSearchPath.php
0.564KB
edt
ren
<?php namespace Illuminate\Database\Concerns; trait ParsesSearchPath { /** * Parse the Postgres "search_path" configuration value into an array. * * @param string|array|null $searchPath * @return array */ protected function parseSearchPath($searchPath) { if (is_string($searchPath)) { preg_match_all('/[^\s,"\']+/', $searchPath, $matches); $searchPath = $matches[0]; } return array_map(function ($schema) { return trim($schema, '\'"'); }, $searchPath ?? []); } }
<=Back
Liking