Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
safemood
/
laravel-workflow
/
src
/
Commands
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
MakeAction.php
0.812KB
edt
ren
MakeJob.php
0.796KB
edt
ren
MakeWorkflow.php
0.818KB
edt
ren
<?php namespace Safemood\Workflow\Commands; use Illuminate\Console\GeneratorCommand; use Symfony\Component\Console\Input\InputArgument; class MakeJob extends GeneratorCommand { protected $name = 'workflow-job'; protected $description = 'Create a new job class for workflow'; protected $type = 'Job'; protected function getStub(): string { return file_exists($customPath = $this->laravel->basePath('stubs/job.stub')) ? $customPath : __DIR__.'/../../stubs/job.stub'; } protected function getDefaultNamespace($rootNamespace): string { return "{$rootNamespace}\\Jobs"; } protected function getArguments(): array { return [ ['name', InputArgument::REQUIRED, 'The name of the job class.'], ]; } }
<=Back
Liking