php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #79638 persistent connection with mysqli log as no password
Submitted: 2020-05-26 23:36 UTC Modified: -
Votes:3
Avg. Score:3.0 ± 0.0
Reproduced:3 of 3 (100.0%)
Same Version:0 (0.0%)
Same OS:2 (66.7%)
From: radek at pinkbike dot com Assigned:
Status: Open Package: MySQLi related
PHP Version: 7.4.6 OS: debian
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
32 + 37 = ?
Subscribe to this entry?

 
 [2020-05-26 23:36 UTC] radek at pinkbike dot com
Description:
------------
Mysql error log is filled with this when using a persistent connection. 
2020-05-26T23:15:40.279047Z 281924791 [Note] Access denied for user 'root'@'10.0.0.2' (using password: NO)

The connection succeeds so I'm assuming internally there are multiple attempts to connect, one of which is without the pass. 
This error is logged in the mysql log not on the first connect, but on subsequent requests to a process with a persistent connection.  
Switching to non persistent connection ( removing the p: form host), connection also succeeds but no such error is logged.

Also reverting to php 7.1.33 with exactly the same configuration does not log the error when using persistent connection. (expected behaviour)

All test using production Server version: 5.7.28-31-log Percona Server


Test script:
---------------
<?php

$link = mysqli_connect("p:10.0.0.2", "root", "password");

if (!$link) {
    echo "Debugging errno: " . mysqli_connect_errno();
} else {
    echo "Success";
}
?>

Expected result:
----------------
No error log message in mysql.

Actual result:
--------------
2020-05-26T23:15:40.279047Z 281924791 [Note] Access denied for user 'root'@'10.0.0.2' (using password: NO)

Patches

Add a Patch

Pull Requests

Add a Pull Request

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 07:01:31 2024 UTC