I never really noticed, but turns out my site keeps logging PHP warnings in wp-content/db.php
:
[06-Feb-2020 19:14:31 UTC] PHP Warning: Use of undefined constant DB_USER - assumed 'DB_USER' (this will throw an Error in a future version of PHP) in /data/www/example.org/www/wp-content/db.php on line 182
[06-Feb-2020 19:14:31 UTC] PHP Warning: Use of undefined constant DB_PASSWORD - assumed 'DB_PASSWORD' (this will throw an Error in a future version of PHP) in /data/www/example.org/www/wp-content/db.php on line 182
[06-Feb-2020 19:14:31 UTC] PHP Warning: Use of undefined constant DB_NAME - assumed 'DB_NAME' (this will throw an Error in a future version of PHP) in /data/www/example.org/www/wp-content/db.php on line 182
I implemented a fix as discussed here: https://core.trac.www.ads-software.com/ticket/35560 and I believe it’s now resolved.
$ diff -u db.orig.php db.php
--- db.orig.php 2020-02-07 09:35:48.658340022 +0100
+++ db.php 2020-02-07 09:16:37.271446435 +0100
@@ -179,4 +179,17 @@
}
+ if (!defined('DB_USER')) {
+ define('DB_USER', null);
+ }
+ if (!defined('DB_PASSWORD')) {
+ define('DB_PASSWORD', null);
+ }
+ if (!defined('DB_NAME')) {
+ define('DB_NAME', null);
+ }
+ if (!defined('DB_HOST')) {
+ define('DB_HOST', null);
+ }
+
$wpdb = new WP_SecureDBConnection_DB( DB_USER, DB_PASSWORD, DB_NAME, DB_HOST );
Love your plugin, thanks!
]]>Is this plugin still in development?
]]>I can’t seem to get this plugin to work in my environment. I’ve got a Windows IIS server running wordpress and a Windows MySQL server. I installed the plugin, activated it, updated my wp-config, and restarted both servers. When I checked my dashboard it’s still showing as a not secure connection. Any ideas what I may be missing here?
wp-config section:
/** Enable Secure MySQL Connection
define(‘DB_COLLATE’, ”);
define( ‘MYSQL_SSL_KEY’, ‘E:\Websites\WordPressDev\certs\client-key.pem’ );
define( ‘MYSQL_SSL_CERT’, ‘E:\Websites\WordPressDev\certs\client-cert.pem’ );
define( ‘MYSQL_SSL_CA’, ‘ca.pem’ );
define( ‘MYSQL_SSL_CA_PATH’, ‘E:\Websites\WordPressDev\certs’ );
define( ‘MYSQL_CLIENT_FLAGS’, MYSQLI_CLIENT_SSL );
I have two WP websites, updated at WP 4.9.6 running on same server with php7-fpm and nginx, connecting to same mysql server 5.6.10.
Same config:
define( 'MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL | MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT );
define( 'MYSQL_SSL_CIPHER', 'HIGH:!aNULL:!MD5:!RC4:!DHE');
//define( 'MYSQL_SSL_CIPHER', 'AES256-SHA:AES256-RMD:DES-CBC3-RMD:RC4-SHA:DES-CBC3-SHA:DES-CBC-SHA:EDH-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC-SHA');
One works like a charm the other gave me this error:
PHP Warning: mysqli_real_connect(): SSL operation failed with code 1. OpenSSL Error messages:
error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small in /wp-includes/wp-db.php on line 1531
Seems it’s not considering the MYSQL_SSL_CIPHER param. Is there anything else I could do to troubleshoot this problem.
]]>I can connect to my mysql & maria instances (yes either or) via CLIENT SSL CERTS: –ssl-ca=~../../myca.ca.pem –ssl-cert=client-cert.pem –ssl-key=client-key.pem (other commandline ARGs too naturally). I’ve set the wp-config.php but, it does not work…
SO I KNOW SSL WORKS via mysql>status;
8<— SNIP —>8
SSL: Cipher in use is DHE-RSA-AES256-GCM-SHA384
8<— SNIP —>8
/** MYSQL_SSL_KEY [default: not set] */
define(‘MYSQL_SSL_KEY’,’/FULLPATH/…client-key.pem’);
/**The path name to the key file. (RSA Key) */
/** MYSQL_SSL_CERT [default: not set] */
define(‘MYSQL_SSL_CERT’,’/FULLPATH/…client-cert.pem’);
/** The path name to the certificate file. */
/** MYSQL_SSL_CA [default: not set] */
define(‘MYSQL_SSL_CA’,ca.pem’);
/** The path name to the certificate authority file. */
/** MYSQL_SSL_CA_PATH [default: not set] */
define(‘MYSQL_SSL_CA_PATH’,”/FULLPATH/CA/…’);
]]>Hi!
Can I use your plugin for creating second and secure connection to another DB and keep the default connection to main DB the old, default way? I mean include the db.php and create and instance like:
$second_secure_db = new WP_SecureDBConnection_DB();
Plugin will not activate instead produces error below
Parse error: syntax error, unexpected ‘.’, expecting ‘,’ or ‘;’ in /[path_to_wp]/wp-content/plugins/secure-db-connection/lib/dropin.php on line 25
]]>I don’t know how hard it is to update the documentation, but it took me a long time to figure out what MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT actually does.
The PHP documentation wasn’t very clear either. https://php.net/manual/en/mysqli.real-connect.php#refsect1-mysqli.real-connect-parameters
After looking at the source code I found the flag sets MYSQL_OPT_SSL_VERIFY_SERVER_CERT in mysqlnd https://dev.mysql.com/doc/refman/5.7/en/mysql-options.html which means it only verifies the common name.
I was confused as to whether this stops CA validation when I specify a CA, turns out it doesn’t.
If you can, please update the documentation to reflect that MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT only stops validation of the Common Name and that CA validation depends on the CA flags.
Thanks ??
]]>