Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.117.253.217
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
lionsclub /
core /
vendor /
livewire /
livewire /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
stubs
[ DIR ]
drwxr-xr-x
.all-contributorsrc
17.66
KB
-rw-r--r--
.prettierrc
93
B
-rw-r--r--
LICENSE.md
1.05
KB
-rw-r--r--
README.md
24.07
KB
-rw-r--r--
babel.config.js
655
B
-rw-r--r--
composer.json
1.34
KB
-rw-r--r--
jest.config.js
239
B
-rw-r--r--
package-lock.json
128.69
KB
-rw-r--r--
package.json
992
B
-rw-r--r--
phpunit.xml
811
B
-rw-r--r--
rollup.config.js
1.49
KB
-rw-r--r--
squishy
1.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : squishy
#!/usr/bin/env php <?php require __DIR__.'/vendor/autoload.php'; use Symfony\Component\Console\Command\Command; $application = new Symfony\Component\Console\Application(); $application->add(new class extends Command { use \Illuminate\Console\Concerns\InteractsWithIO; protected static $defaultName = 'make:dusk'; protected function configure() { $this->addArgument('name', \Symfony\Component\Console\Input\InputArgument::REQUIRED, 'Test folder name'); } protected function execute($input, $output) { $this->input = $input; $this->output = $output; $name = $this->input->getArgument('name'); $testPath = __DIR__.'/tests/Browser'; $folderPath = $testPath.'/'.$name; if (file_exists($folderPath)) throw new \Exception('Test folder already exists: '.$folderPath); mkdir($folderPath); file_put_contents( $folderPath.'/Test.php', str_replace('[name]', $name, file_get_contents(__DIR__.'/stubs/DuskTest.stub')) ); file_put_contents( $folderPath.'/Component.php', str_replace('[name]', $name, file_get_contents(__DIR__.'/stubs/DuskComponent.stub')) ); file_put_contents( $folderPath.'/view.blade.php', str_replace('[name]', $name, file_get_contents(__DIR__.'/stubs/DuskView.stub')) ); return Command::SUCCESS; } }); $application->run();
Close