mirror of
https://github.com/monero-project/monero.git
synced 2025-01-08 07:27:52 -05:00
Merge pull request #8084
a4954a9
rpc: fix DoS vector in get_output_distribution (moneromooo-monero)
This commit is contained in:
commit
dfb818a01b
@ -3055,6 +3055,14 @@ namespace cryptonote
|
|||||||
if (use_bootstrap_daemon_if_necessary<COMMAND_RPC_GET_OUTPUT_DISTRIBUTION>(invoke_http_mode::JON_RPC, "get_output_distribution", req, res, r))
|
if (use_bootstrap_daemon_if_necessary<COMMAND_RPC_GET_OUTPUT_DISTRIBUTION>(invoke_http_mode::JON_RPC, "get_output_distribution", req, res, r))
|
||||||
return r;
|
return r;
|
||||||
|
|
||||||
|
const bool restricted = m_restricted && ctx;
|
||||||
|
if (restricted && req.amounts != std::vector<uint64_t>(1, 0))
|
||||||
|
{
|
||||||
|
error_resp.code = CORE_RPC_ERROR_CODE_RESTRICTED;
|
||||||
|
error_resp.message = "Restricted RPC can only get output distribution for rct outputs. Use your own node.";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
size_t n_0 = 0, n_non0 = 0;
|
size_t n_0 = 0, n_non0 = 0;
|
||||||
for (uint64_t amount: req.amounts)
|
for (uint64_t amount: req.amounts)
|
||||||
if (amount) ++n_non0; else ++n_0;
|
if (amount) ++n_non0; else ++n_0;
|
||||||
@ -3096,6 +3104,13 @@ namespace cryptonote
|
|||||||
if (use_bootstrap_daemon_if_necessary<COMMAND_RPC_GET_OUTPUT_DISTRIBUTION>(invoke_http_mode::BIN, "/get_output_distribution.bin", req, res, r))
|
if (use_bootstrap_daemon_if_necessary<COMMAND_RPC_GET_OUTPUT_DISTRIBUTION>(invoke_http_mode::BIN, "/get_output_distribution.bin", req, res, r))
|
||||||
return r;
|
return r;
|
||||||
|
|
||||||
|
const bool restricted = m_restricted && ctx;
|
||||||
|
if (restricted && req.amounts != std::vector<uint64_t>(1, 0))
|
||||||
|
{
|
||||||
|
res.status = "Restricted RPC can only get output distribution for rct outputs. Use your own node.";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
size_t n_0 = 0, n_non0 = 0;
|
size_t n_0 = 0, n_non0 = 0;
|
||||||
for (uint64_t amount: req.amounts)
|
for (uint64_t amount: req.amounts)
|
||||||
if (amount) ++n_non0; else ++n_0;
|
if (amount) ++n_non0; else ++n_0;
|
||||||
|
Loading…
Reference in New Issue
Block a user