Don't ensureProfile before we verify signature
This commit is contained in:
parent
00b2bddc7c
commit
dc52a8ff43
@ -49,14 +49,15 @@ class SalmonAction extends Action
|
|||||||
|
|
||||||
$entry = $magic_env->getPayload(); // Not cryptographically verified yet!
|
$entry = $magic_env->getPayload(); // Not cryptographically verified yet!
|
||||||
$this->activity = new Activity($entry->documentElement);
|
$this->activity = new Activity($entry->documentElement);
|
||||||
$oprofile = $this->ensureProfile();
|
$profile = Profile::fromUri($this->activity->actor->id);
|
||||||
|
assert($profile instanceof Profile);
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
common_debug('Salmon envelope parsing failed with: '.$e->getMessage());
|
common_debug('Salmon envelope parsing failed with: '.$e->getMessage());
|
||||||
$this->clientError($e->getMessage());
|
$this->clientError($e->getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cryptographic verification test
|
// Cryptographic verification test
|
||||||
if (!$magic_env->verify($oprofile->localProfile())) {
|
if (!$magic_env->verify($profile)) {
|
||||||
common_log(LOG_DEBUG, "Salmon signature verification failed.");
|
common_log(LOG_DEBUG, "Salmon signature verification failed.");
|
||||||
// TRANS: Client error.
|
// TRANS: Client error.
|
||||||
$this->clientError(_m('Salmon signature verification failed.'));
|
$this->clientError(_m('Salmon signature verification failed.'));
|
||||||
|
Loading…
Reference in New Issue
Block a user