webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
View
/
Compilers
/
Concerns
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
CompilesAuthorizations.php
2.443KB
edt
ren
CompilesClasses.php
0.436KB
edt
ren
CompilesComments.php
0.403KB
edt
ren
CompilesComponents.php
6.24KB
edt
ren
CompilesConditionals.php
8.965KB
edt
ren
CompilesEchos.php
4.5KB
edt
ren
CompilesErrors.php
0.911KB
edt
ren
CompilesFragments.php
0.712KB
edt
ren
CompilesHelpers.php
1.561KB
edt
ren
CompilesIncludes.php
2.376KB
edt
ren
CompilesInjections.php
0.493KB
edt
ren
CompilesJs.php
0.437KB
edt
ren
CompilesJson.php
0.708KB
edt
ren
CompilesLayouts.php
3.011KB
edt
ren
CompilesLoops.php
4.806KB
edt
ren
CompilesRawPhp.php
0.605KB
edt
ren
CompilesSessions.php
0.989KB
edt
ren
CompilesStacks.php
2.728KB
edt
ren
CompilesStyles.php
0.433KB
edt
ren
CompilesTranslations.php
1.028KB
edt
ren
CompilesUseStatements.php
0.52KB
edt
ren
<?php namespace Illuminate\View\Compilers\Concerns; trait CompilesLayouts { /** * The name of the last section that was started. * * @var string */ protected $lastSection; /** * Compile the extends statements into valid PHP. * * @param string $expression * @return string */ protected function compileExtends($expression) { $expression = $this->stripParentheses($expression); $echo = "<?php echo \$__env->make({$expression}, \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>"; $this->footer[] = $echo; return ''; } /** * Compile the extends-first statements into valid PHP. * * @param string $expression * @return string */ protected function compileExtendsFirst($expression) { $expression = $this->stripParentheses($expression); $echo = "<?php echo \$__env->first({$expression}, \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>"; $this->footer[] = $echo; return ''; } /** * Compile the section statements into valid PHP. * * @param string $expression * @return string */ protected function compileSection($expression) { $this->lastSection = trim($expression, "()'\" "); return "<?php \$__env->startSection{$expression}; ?>"; } /** * Replace the @parent directive to a placeholder. * * @return string */ protected function compileParent() { $escapedLastSection = strtr($this->lastSection, ['\\' => '\\\\', "'" => "\\'"]); return "<?php echo \Illuminate\View\Factory::parentPlaceholder('{$escapedLastSection}'); ?>"; } /** * Compile the yield statements into valid PHP. * * @param string $expression * @return string */ protected function compileYield($expression) { return "<?php echo \$__env->yieldContent{$expression}; ?>"; } /** * Compile the show statements into valid PHP. * * @return string */ protected function compileShow() { return '<?php echo $__env->yieldSection(); ?>'; } /** * Compile the append statements into valid PHP. * * @return string */ protected function compileAppend() { return '<?php $__env->appendSection(); ?>'; } /** * Compile the overwrite statements into valid PHP. * * @return string */ protected function compileOverwrite() { return '<?php $__env->stopSection(true); ?>'; } /** * Compile the stop statements into valid PHP. * * @return string */ protected function compileStop() { return '<?php $__env->stopSection(); ?>'; } /** * Compile the end-section statements into valid PHP. * * @return string */ protected function compileEndsection() { return '<?php $__env->stopSection(); ?>'; } }
<=Back
Liking