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 MakeAction extends GeneratorCommand { protected $name = 'make:workflow-action'; protected $description = 'Create a new action class'; protected $type = 'Action'; protected function getStub(): string { return file_exists($customPath = $this->laravel->basePath('stubs/action.stub')) ? $customPath : __DIR__.'/../../stubs/action.stub'; } protected function getDefaultNamespace($rootNamespace): string { return "{$rootNamespace}\\Actions"; } protected function getArguments(): array { return [ ['name', InputArgument::REQUIRED, 'The name of the action class.'], ]; } }