add bounds checking to /area and evidence

This commit is contained in:
in1tiate 2021-03-09 17:24:52 -06:00
parent 483e89d5cf
commit 7d87a7027f
2 changed files with 3 additions and 3 deletions

View File

@ -641,7 +641,7 @@ void AOClient::cmdArea(int argc, QStringList argv)
{
bool ok;
int new_area = argv[0].toInt(&ok);
if (!ok) {
if (!ok || new_area > server->areas.size() || new_area < 0) {
sendServerMessage("That does not look like a valid area ID.");
return;
}

View File

@ -289,7 +289,7 @@ void AOClient::pktRemoveEvidence(AreaData* area, int argc, QStringList argv, AOP
{
bool is_int = false;
int idx = argv[0].toInt(&is_int);
if (is_int) {
if (is_int && idx <= area->evidence.size() && idx >= 0) {
area->evidence.removeAt(idx);
}
sendEvidenceList(area);
@ -300,7 +300,7 @@ void AOClient::pktEditEvidence(AreaData* area, int argc, QStringList argv, AOPac
bool is_int = false;
int idx = argv[0].toInt(&is_int);
AreaData::Evidence evi = {argv[1], argv[2], argv[3]};
if (is_int) {
if (is_int && idx <= area->evidence.size() && idx >= 0) {
area->evidence.replace(idx, evi);
}
sendEvidenceList(area);