Merge #15087: Error if rpcpassword contains hash in conf sections
8cff83124b
Error if rpcpassword contains hash in conf sections (MeshCollider)
Pull request description:
Fixes #15075
Tree-SHA512: 08ba2a2e9a7ea228fc0e0ff9aa76da1fecbe079e3b388304a28b6399e338a4b3a38b03ab03aca880e75f14a8d2ba75ceb31a385d7989cd66db5193a79f32c4e5
This commit is contained in:
commit
ff7f7364d6
2 changed files with 9 additions and 1 deletions
|
@ -865,7 +865,7 @@ static bool GetConfigOptions(std::istream& stream, std::string& error, std::vect
|
||||||
} else if ((pos = str.find('=')) != std::string::npos) {
|
} else if ((pos = str.find('=')) != std::string::npos) {
|
||||||
std::string name = prefix + TrimString(str.substr(0, pos), pattern);
|
std::string name = prefix + TrimString(str.substr(0, pos), pattern);
|
||||||
std::string value = TrimString(str.substr(pos + 1), pattern);
|
std::string value = TrimString(str.substr(pos + 1), pattern);
|
||||||
if (used_hash && name == "rpcpassword") {
|
if (used_hash && name.find("rpcpassword") != std::string::npos) {
|
||||||
error = strprintf("parse error on line %i, using # in rpcpassword can be ambiguous and should be avoided", linenr);
|
error = strprintf("parse error on line %i, using # in rpcpassword can be ambiguous and should be avoided", linenr);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,14 @@ class ConfArgsTest(BitcoinTestFramework):
|
||||||
conf.write('server=1\nrpcuser=someuser\nrpcpassword=some#pass')
|
conf.write('server=1\nrpcuser=someuser\nrpcpassword=some#pass')
|
||||||
self.nodes[0].assert_start_raises_init_error(expected_msg='Error reading configuration file: parse error on line 3, using # in rpcpassword can be ambiguous and should be avoided')
|
self.nodes[0].assert_start_raises_init_error(expected_msg='Error reading configuration file: parse error on line 3, using # in rpcpassword can be ambiguous and should be avoided')
|
||||||
|
|
||||||
|
with open(inc_conf_file_path, 'w', encoding='utf-8') as conf:
|
||||||
|
conf.write('server=1\nrpcuser=someuser\nmain.rpcpassword=some#pass')
|
||||||
|
self.nodes[0].assert_start_raises_init_error(expected_msg='Error reading configuration file: parse error on line 3, using # in rpcpassword can be ambiguous and should be avoided')
|
||||||
|
|
||||||
|
with open(inc_conf_file_path, 'w', encoding='utf-8') as conf:
|
||||||
|
conf.write('server=1\nrpcuser=someuser\n[main]\nrpcpassword=some#pass')
|
||||||
|
self.nodes[0].assert_start_raises_init_error(expected_msg='Error reading configuration file: parse error on line 4, using # in rpcpassword can be ambiguous and should be avoided')
|
||||||
|
|
||||||
with open(inc_conf_file_path, 'w', encoding='utf-8') as conf:
|
with open(inc_conf_file_path, 'w', encoding='utf-8') as conf:
|
||||||
conf.write('testnot.datadir=1\n[testnet]\n')
|
conf.write('testnot.datadir=1\n[testnet]\n')
|
||||||
self.restart_node(0)
|
self.restart_node(0)
|
||||||
|
|
Loading…
Reference in a new issue