⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
dalily.dev-unit.com
/
config
/
View File Name :
geoip.php
<?php return [ /* |-------------------------------------------------------------------------- | GeoIP Driver Type |-------------------------------------------------------------------------- | | Supported: 'ipinfo', 'dbip', 'ipbase', 'ip2location', 'ipapi', 'ipapico', | 'ipgeolocation','iplocation', 'ipstack', 'maxmind_api', 'maxmind_database' | */ 'default' => env('GEOIP_DRIVER', 'ipapi'), /* |-------------------------------------------------------------------------- | Return random ip addresses (useful for dev envs) |-------------------------------------------------------------------------- */ 'randomIp' => env('GEOIP_RANDOM_IP', false), /* |-------------------------------------------------------------------------- | Drivers |-------------------------------------------------------------------------- */ 'drivers' => [ /* * Website: https://ipinfo.io/ */ 'ipinfo' => [ 'token' => env('GEOIP_IPINFO_TOKEN'), ], /* * Website: https://db-ip.com/ * No API key required */ 'dbip' => [ 'apiKey' => env('GEOIP_DBIP_API_KEY'), 'pro' => false, ], /* * Website: https://ipbase.com/ */ 'ipbase' => [ 'apiKey' => env('GEOIP_IPBASE_API_KEY'), ], /* * Website: https://www.ip2location.com/ */ 'ip2location' => [ 'apiKey' => env('GEOIP_IP2LOCATION_API_KEY'), ], /* * Website: https://ip-api.com/ * No API key required */ 'ipapi' => [ 'pro' => false, ], /* * Website: https://ipapi.co/ * No API key required */ 'ipapico' => [ //... ], /* * Website: https://ipgeolocation.io/ */ 'ipgeolocation' => [ 'apiKey' => env('GEOIP_IPGEOLOCATION_API_KEY'), ], /* * Website: https://www.iplocation.net/ * No API key is required. */ 'iplocation' => [ 'apiKey' => env('GEOIP_IPLOCATION_API_KEY'), 'pro' => false, ], /* * Website: https://ipstack.com/ */ 'ipstack' => [ 'accessKey' => env('GEOIP_IPSTACK_ACCESS_KEY'), 'pro' => false, ], /* * Website: https://dev.maxmind.com/geoip/docs/web-services */ 'maxmind_api' => [ 'accountId' => env('GEOIP_MAXMIND_ACCOUNT_ID'), 'licenseKey' => env('GEOIP_MAXMIND_LICENSE_KEY'), ], /* * https://dev.maxmind.com/geoip/geoip2/geolite2/ * The license key is required for database updates * GeoLite2-Country.mmdb => DON'T WORK! * GeoLite2-City.mmdb => WORK! */ 'maxmind_database' => [ 'database' => env('GEOIP_MAXMIND_DATABASE', storage_path('database/maxmind/GeoLite2-City.mmdb')), 'licenseKey' => env('GEOIP_MAXMIND_LICENSE_KEY'), ], ], ];