Linux server1.sbs.cy 5.14.0-362.18.1.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jan 29 07:05:48 EST 2024 x86_64
Apache
: 199.192.25.12 | : 172.69.58.100
28 Domain
8.1.31
administrator
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
var /
softaculous /
cake /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
php53
[ DIR ]
drwxr-xr-x
php56
[ DIR ]
drwxr-xr-x
php71
[ DIR ]
drwxr-xr-x
php81
[ DIR ]
drwxr-xr-x
php82
[ DIR ]
drwxr-xr-x
app_local.php
2.79
KB
-rw-r--r--
fileindex.php
194
B
-rw-r--r--
import.php
5.14
KB
-rw-r--r--
info.xml
2.85
KB
-rw-r--r--
install.js
921
B
-rw-r--r--
install.php
3.64
KB
-rw-r--r--
install.xml
214
B
-rw-r--r--
md5
3.17
KB
-rw-r--r--
notes.txt
1006
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : app_local.php
<?php /* * Local configuration file to provide any overrides to your app.php configuration. * Copy and save this file as app_local.php and make changes as required. * Note: It is not recommended to commit files with credentials such as app_local.php * into source code version control. */ return [ /* * Debug Level: * * Production Mode: * false: No error messages, errors, or warnings shown. * * Development Mode: * true: Errors and warnings shown. */ 'debug' => filter_var(env('DEBUG', true), FILTER_VALIDATE_BOOLEAN), /* * Security and encryption configuration * * - salt - A random string used in security hashing methods. * The salt value is also used as the encryption key. * You should treat it as extremely sensitive data. */ 'Security' => [ 'salt' => env('SECURITY_SALT', '[[salt]]'), ], /* * Connection information used by the ORM to connect * to your application's datastores. * * See app.php for more configuration options. */ 'Datasources' => [ 'default' => [ 'host' => '[[softdbhost]]', /* * CakePHP will use the default DB port based on the driver selected * MySQL on MAMP uses port 8889, MAMP users will want to uncomment * the following line and set the port accordingly */ //'port' => 'non_standard_port_number', 'username' => '[[softdbuser]]', 'password' => '[[softdbpass]]', 'database' => '[[softdb]]', /* * If not using the default 'public' schema with the PostgreSQL driver * set it here. */ //'schema' => 'myapp', /* * You can use a DSN string to set the entire configuration */ 'url' => env('DATABASE_URL', null), ], /* * The test connection is used during the test suite. */ 'test' => [ 'host' => 'localhost', //'port' => 'non_standard_port_number', 'username' => 'my_app', 'password' => 'secret', 'database' => 'test_myapp', //'schema' => 'myapp', 'url' => env('DATABASE_TEST_URL', 'sqlite://127.0.0.1/tmp/tests.sqlite'), ], ], /* * Email configuration. * * Host and credential configuration in case you are using SmtpTransport * * See app.php for more configuration options. */ 'EmailTransport' => [ 'default' => [ 'host' => 'localhost', 'port' => 25, 'username' => null, 'password' => null, 'client' => null, 'url' => env('EMAIL_TRANSPORT_DEFAULT_URL', null), ], ], ];
Close