validate ip parameter in set_bans rpc call

This commit is contained in:
eversinc33 2024-12-28 23:31:46 +01:00
parent 941ecefab2
commit 9311a24044

View file

@ -2875,6 +2875,12 @@ namespace cryptonote
}
else
{
if (!i->ip)
{
error_resp.code = CORE_RPC_ERROR_CODE_WRONG_PARAM;
error_resp.message = "No ip/host supplied";
return false;
}
na = epee::net_utils::ipv4_network_address{i->ip, 0};
}
if (i->ban)