One Hat Cyber Team
Your IP :
3.147.242.120
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
centos12
/
public_html
/
centosuit
/
config
/
View File Name :
laravel-device-tracking.php
<?php use IvanoMatteo\LaravelDeviceTracking\DeviceHijackingDetectorDefault; return [ // if user_model is null, will be probed: App\Model\User and then App\User 'user_model' => \App\Models\UserAuth::class, // if user_model is App\Model\User, model_relation_id will be user_id 'model_relation_id' => 'user_auth_id', 'device_table' => 'track_devices', 'detect_on_login' => true, 'geoip_provider' => null, // must implement: IvanoMatteo\LaravelDeviceTracking\GeoIpProvider // the device identifier cookie 'device_cookie' => 'device_uuid', 'cookie_http_only' => true, 'session_key' => 'laravel-device-tracking', // must implement: IvanoMatteo\LaravelDeviceTracking\DeviceHijackingDetector 'hijacking_detector' => DeviceHijackingDetectorDefault::class, ];