mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-06 17:38:29 +02:00
Policy - lock down file loading in mail reply handler path
Summary: Ref T7094. This one is really straight-forward since $this->actor is always populated and the right thing to do here. Test Plan: used the ole thinking noodle since testing email w/ attachments is really hard Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7094 Differential Revision: https://secure.phabricator.com/D11589
This commit is contained in:
parent
f58dce6819
commit
388d1ff7bd
1 changed files with 4 additions and 3 deletions
|
@ -325,9 +325,10 @@ abstract class PhabricatorMailReplyHandler {
|
||||||
return $body;
|
return $body;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: (T603) What's the policy here?
|
$files = id(new PhabricatorFileQuery())
|
||||||
$files = id(new PhabricatorFile())
|
->setViewer($this->getActor())
|
||||||
->loadAllWhere('phid in (%Ls)', $attachments);
|
->withPHIDs($attachments)
|
||||||
|
->execute();
|
||||||
|
|
||||||
// if we have some text then double return before adding our file list
|
// if we have some text then double return before adding our file list
|
||||||
if ($body) {
|
if ($body) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue