mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 08:32:23 +01:00
fix: do not verify AP /inbox POST for wrong actor
This commit is contained in:
parent
40f1f91937
commit
642babad94
1 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
const escape = require('lodash/escape')
|
||||
const axios = require('axios')
|
||||
const crypto = require('crypto')
|
||||
const config = require('../config')
|
||||
|
@ -495,9 +496,19 @@ const Helpers = {
|
|||
*/
|
||||
async verifySignature (req, res, next) {
|
||||
|
||||
const name = req.params.name
|
||||
const actor_url = req?.body?.actor
|
||||
|
||||
const isDelete = req?.body?.type === 'Delete'
|
||||
const settings = settingsController.settings
|
||||
|
||||
if (!name) {
|
||||
log.info('[AP] Bad /inbox request')
|
||||
return res.status(400).send('Bad request.')
|
||||
}
|
||||
if (name !== settings.instance_name) {
|
||||
log.info(`[FEDI] No record found for ${name} (applicationActor is ${settings.instance_name})`)
|
||||
return res.status(404).send(`No record found for ${escape(name)}`)
|
||||
}
|
||||
|
||||
// do we have an actor?
|
||||
if (!actor_url) {
|
||||
|
|
Loading…
Reference in a new issue