Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
database /
factories /
Delete
Unzip
Name
Size
Permission
Date
Action
AddressFactory.php
305
B
-rwxrwxrwx
2022-04-21 13:43
BuildingFloorsFactory.php
312
B
-rwxrwxrwx
2022-04-21 13:43
BuildingTypesFactory.php
311
B
-rwxrwxrwx
2022-04-21 13:43
BuildingsFactory.php
307
B
-rwxrwxrwx
2022-04-21 13:43
CarHistoryFactory.php
308
B
-rwxrwxrwx
2022-04-21 13:43
CarsFactory.php
302
B
-rwxrwxrwx
2022-04-21 13:43
CheckInFactory.php
305
B
-rwxrwxrwx
2022-04-21 13:43
ClientsFactory.php
305
B
-rwxrwxrwx
2022-04-21 13:43
DevisFactory.php
303
B
-rwxrwxrwx
2022-04-21 13:43
DevisLinesFactory.php
308
B
-rwxrwxrwx
2022-04-21 13:43
InterventionAddressesFactory.php
319
B
-rwxrwxrwx
2022-04-21 13:43
InterventionBuildingsFactory.php
319
B
-rwxrwxrwx
2022-04-21 13:43
InterventionContactsFactory.php
318
B
-rwxrwxrwx
2022-04-21 13:43
InterventionStatusFactory.php
316
B
-rwxrwxrwx
2022-04-21 13:43
InterventionsFactory.php
311
B
-rwxrwxrwx
2022-04-21 13:43
PassesFactory.php
304
B
-rwxrwxrwx
2022-04-21 13:43
RulesFactory.php
303
B
-rwxrwxrwx
2022-04-21 13:43
StatusFactory.php
304
B
-rwxrwxrwx
2022-04-21 13:43
TeamHistoryFactory.php
309
B
-rwxrwxrwx
2022-04-21 13:43
TeamLogsFactory.php
306
B
-rwxrwxrwx
2022-04-21 13:43
TeamMembersFactory.php
309
B
-rwxrwxrwx
2022-04-21 13:43
TeamsFactory.php
303
B
-rwxrwxrwx
2022-04-21 13:43
UserFactory.php
883
B
-rwxrwxrwx
2022-04-21 13:43
Save
Rename
<?php /** @var \Illuminate\Database\Eloquent\Factory $factory */ use App\Models\User; use Faker\Generator as Faker; use Illuminate\Support\Str; /* |-------------------------------------------------------------------------- | Model Factories |-------------------------------------------------------------------------- | | This directory should contain each of the model factory definitions for | your application. Factories provide a convenient way to generate new | model instances for testing / seeding your application's database. | */ $factory->define(User::class, function (Faker $faker) { return [ 'name' => $faker->name, 'email' => $faker->unique()->safeEmail, 'email_verified_at' => now(), 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 'remember_token' => Str::random(10), ]; });