2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2022-08-17 09:44:32 -04:00
|
|
|
import { expect } from 'chai'
|
2020-04-23 03:32:53 -04:00
|
|
|
import { buildDigest } from '@server/helpers/peertube-crypto'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HTTP_SIGNATURE } from '@server/initializers/constants'
|
2022-03-23 09:24:50 -04:00
|
|
|
import { activityPubContextify } from '@server/lib/activitypub/context'
|
2022-03-23 11:14:33 -04:00
|
|
|
import { buildGlobalHeaders, signAndContextify } from '@server/lib/activitypub/send'
|
2021-11-02 14:11:20 -04:00
|
|
|
import { makeFollowRequest, makePOSTAPRequest } from '@server/tests/shared'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { buildAbsoluteFixturePath, wait } from '@shared/core-utils'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '@shared/models'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { cleanupTests, createMultipleServers, killallServers, PeerTubeServer } from '@shared/server-commands'
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
function setKeysOfServer (onServer: PeerTubeServer, ofServer: PeerTubeServer, publicKey: string, privateKey: string) {
|
2021-03-10 05:17:20 -05:00
|
|
|
const url = 'http://localhost:' + ofServer.port + '/accounts/peertube'
|
|
|
|
|
|
|
|
return Promise.all([
|
2021-07-16 03:04:35 -04:00
|
|
|
onServer.sql.setActorField(url, 'publicKey', publicKey),
|
|
|
|
onServer.sql.setActorField(url, 'privateKey', privateKey)
|
2021-03-10 05:17:20 -05:00
|
|
|
])
|
|
|
|
}
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
function setUpdatedAtOfServer (onServer: PeerTubeServer, ofServer: PeerTubeServer, updatedAt: string) {
|
2021-03-10 05:17:20 -05:00
|
|
|
const url = 'http://localhost:' + ofServer.port + '/accounts/peertube'
|
|
|
|
|
2018-10-23 05:38:48 -04:00
|
|
|
return Promise.all([
|
2021-07-16 03:04:35 -04:00
|
|
|
onServer.sql.setActorField(url, 'createdAt', updatedAt),
|
|
|
|
onServer.sql.setActorField(url, 'updatedAt', updatedAt)
|
2018-10-23 05:38:48 -04:00
|
|
|
])
|
|
|
|
}
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
function getAnnounceWithoutContext (server: PeerTubeServer) {
|
2021-06-14 10:52:22 -04:00
|
|
|
const json = require(buildAbsoluteFixturePath('./ap-json/peertube/announce-without-context.json'))
|
2019-04-26 02:50:52 -04:00
|
|
|
const result: typeof json = {}
|
|
|
|
|
|
|
|
for (const key of Object.keys(json)) {
|
|
|
|
if (Array.isArray(json[key])) {
|
2021-03-10 05:17:20 -05:00
|
|
|
result[key] = json[key].map(v => v.replace(':9002', `:${server.port}`))
|
2019-04-26 02:50:52 -04:00
|
|
|
} else {
|
2021-03-10 05:17:20 -05:00
|
|
|
result[key] = json[key].replace(':9002', `:${server.port}`)
|
2019-04-26 02:50:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
2018-10-23 05:38:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
describe('Test ActivityPub security', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let servers: PeerTubeServer[]
|
2018-10-23 05:38:48 -04:00
|
|
|
let url: string
|
|
|
|
|
2021-06-14 10:52:22 -04:00
|
|
|
const keys = require(buildAbsoluteFixturePath('./ap-json/peertube/keys.json'))
|
|
|
|
const invalidKeys = require(buildAbsoluteFixturePath('./ap-json/peertube/invalid-keys.json'))
|
2019-04-26 02:50:52 -04:00
|
|
|
const baseHttpSignature = () => ({
|
2018-10-23 05:38:48 -04:00
|
|
|
algorithm: HTTP_SIGNATURE.ALGORITHM,
|
|
|
|
authorizationHeaderName: HTTP_SIGNATURE.HEADER_NAME,
|
2019-04-26 02:50:52 -04:00
|
|
|
keyId: 'acct:peertube@localhost:' + servers[1].port,
|
2018-10-23 05:38:48 -04:00
|
|
|
key: keys.privateKey,
|
|
|
|
headers: HTTP_SIGNATURE.HEADERS_TO_SIGN
|
2019-04-26 02:50:52 -04:00
|
|
|
})
|
2018-10-23 05:38:48 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
servers = await createMultipleServers(3)
|
2018-10-23 05:38:48 -04:00
|
|
|
|
|
|
|
url = servers[0].url + '/inbox'
|
|
|
|
|
2021-03-10 05:17:20 -05:00
|
|
|
await setKeysOfServer(servers[0], servers[1], keys.publicKey, null)
|
|
|
|
await setKeysOfServer(servers[1], servers[1], keys.publicKey, keys.privateKey)
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const to = { url: 'http://localhost:' + servers[0].port + '/accounts/peertube' }
|
|
|
|
const by = { url: 'http://localhost:' + servers[1].port + '/accounts/peertube', privateKey: keys.privateKey }
|
2018-10-23 05:38:48 -04:00
|
|
|
await makeFollowRequest(to, by)
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When checking HTTP signature', function () {
|
|
|
|
|
|
|
|
it('Should fail with an invalid digest', async function () {
|
2022-03-23 11:14:33 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]), 'Announce')
|
2018-10-23 05:38:48 -04:00
|
|
|
const headers = {
|
|
|
|
Digest: buildDigest({ hello: 'coucou' })
|
|
|
|
}
|
|
|
|
|
2021-03-09 08:01:44 -05:00
|
|
|
try {
|
|
|
|
await makePOSTAPRequest(url, body, baseHttpSignature(), headers)
|
|
|
|
expect(true, 'Did not throw').to.be.false
|
|
|
|
} catch (err) {
|
|
|
|
expect(err.statusCode).to.equal(HttpStatusCode.FORBIDDEN_403)
|
|
|
|
}
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an invalid date', async function () {
|
2022-03-23 11:14:33 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]), 'Announce')
|
2018-10-23 05:38:48 -04:00
|
|
|
const headers = buildGlobalHeaders(body)
|
|
|
|
headers['date'] = 'Wed, 21 Oct 2015 07:28:00 GMT'
|
|
|
|
|
2021-03-09 08:01:44 -05:00
|
|
|
try {
|
|
|
|
await makePOSTAPRequest(url, body, baseHttpSignature(), headers)
|
|
|
|
expect(true, 'Did not throw').to.be.false
|
|
|
|
} catch (err) {
|
|
|
|
expect(err.statusCode).to.equal(HttpStatusCode.FORBIDDEN_403)
|
|
|
|
}
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with bad keys', async function () {
|
2019-04-26 02:50:52 -04:00
|
|
|
await setKeysOfServer(servers[0], servers[1], invalidKeys.publicKey, invalidKeys.privateKey)
|
|
|
|
await setKeysOfServer(servers[1], servers[1], invalidKeys.publicKey, invalidKeys.privateKey)
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2022-03-23 11:14:33 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]), 'Announce')
|
2018-10-23 05:38:48 -04:00
|
|
|
const headers = buildGlobalHeaders(body)
|
|
|
|
|
2021-03-09 08:01:44 -05:00
|
|
|
try {
|
|
|
|
await makePOSTAPRequest(url, body, baseHttpSignature(), headers)
|
|
|
|
expect(true, 'Did not throw').to.be.false
|
|
|
|
} catch (err) {
|
|
|
|
expect(err.statusCode).to.equal(HttpStatusCode.FORBIDDEN_403)
|
|
|
|
}
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
|
|
|
|
2020-11-12 04:42:25 -05:00
|
|
|
it('Should reject requests without appropriate signed headers', async function () {
|
2019-04-26 02:50:52 -04:00
|
|
|
await setKeysOfServer(servers[0], servers[1], keys.publicKey, keys.privateKey)
|
|
|
|
await setKeysOfServer(servers[1], servers[1], keys.publicKey, keys.privateKey)
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2022-03-23 11:14:33 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]), 'Announce')
|
2018-10-23 05:38:48 -04:00
|
|
|
const headers = buildGlobalHeaders(body)
|
2020-11-12 04:42:25 -05:00
|
|
|
|
|
|
|
const signatureOptions = baseHttpSignature()
|
|
|
|
const badHeadersMatrix = [
|
|
|
|
[ '(request-target)', 'date', 'digest' ],
|
|
|
|
[ 'host', 'date', 'digest' ],
|
|
|
|
[ '(request-target)', 'host', 'digest' ]
|
|
|
|
]
|
|
|
|
|
|
|
|
for (const badHeaders of badHeadersMatrix) {
|
|
|
|
signatureOptions.headers = badHeaders
|
|
|
|
|
2021-03-09 08:01:44 -05:00
|
|
|
try {
|
|
|
|
await makePOSTAPRequest(url, body, signatureOptions, headers)
|
|
|
|
expect(true, 'Did not throw').to.be.false
|
|
|
|
} catch (err) {
|
|
|
|
expect(err.statusCode).to.equal(HttpStatusCode.FORBIDDEN_403)
|
|
|
|
}
|
2020-11-12 04:42:25 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2022-05-06 09:11:54 -04:00
|
|
|
it('Should succeed with a valid HTTP signature draft 11 (without date but with (created))', async function () {
|
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]), 'Announce')
|
|
|
|
const headers = buildGlobalHeaders(body)
|
|
|
|
|
|
|
|
const signatureOptions = baseHttpSignature()
|
|
|
|
signatureOptions.headers = [ '(request-target)', '(created)', 'host', 'digest' ]
|
|
|
|
|
|
|
|
const { statusCode } = await makePOSTAPRequest(url, body, signatureOptions, headers)
|
|
|
|
expect(statusCode).to.equal(HttpStatusCode.NO_CONTENT_204)
|
|
|
|
})
|
|
|
|
|
2020-11-12 04:42:25 -05:00
|
|
|
it('Should succeed with a valid HTTP signature', async function () {
|
2022-03-23 11:14:33 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]), 'Announce')
|
2020-11-12 04:42:25 -05:00
|
|
|
const headers = buildGlobalHeaders(body)
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2021-03-08 08:24:11 -05:00
|
|
|
const { statusCode } = await makePOSTAPRequest(url, body, baseHttpSignature(), headers)
|
|
|
|
expect(statusCode).to.equal(HttpStatusCode.NO_CONTENT_204)
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
2021-02-26 08:42:34 -05:00
|
|
|
|
|
|
|
it('Should refresh the actor keys', async function () {
|
|
|
|
this.timeout(20000)
|
|
|
|
|
|
|
|
// Update keys of server 2 to invalid keys
|
|
|
|
// Server 1 should refresh the actor and fail
|
|
|
|
await setKeysOfServer(servers[1], servers[1], invalidKeys.publicKey, invalidKeys.privateKey)
|
2021-03-10 05:17:20 -05:00
|
|
|
await setUpdatedAtOfServer(servers[0], servers[1], '2015-07-17 22:00:00+00')
|
|
|
|
|
|
|
|
// Invalid peertube actor cache
|
2021-07-09 09:37:43 -04:00
|
|
|
await killallServers([ servers[1] ])
|
2021-07-16 03:47:51 -04:00
|
|
|
await servers[1].run()
|
2021-02-26 08:42:34 -05:00
|
|
|
|
2022-03-23 11:14:33 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]), 'Announce')
|
2021-02-26 08:42:34 -05:00
|
|
|
const headers = buildGlobalHeaders(body)
|
|
|
|
|
2021-03-09 08:01:44 -05:00
|
|
|
try {
|
|
|
|
await makePOSTAPRequest(url, body, baseHttpSignature(), headers)
|
|
|
|
expect(true, 'Did not throw').to.be.false
|
|
|
|
} catch (err) {
|
2021-03-10 05:17:20 -05:00
|
|
|
console.error(err)
|
2021-03-09 08:01:44 -05:00
|
|
|
expect(err.statusCode).to.equal(HttpStatusCode.FORBIDDEN_403)
|
|
|
|
}
|
2021-02-26 08:42:34 -05:00
|
|
|
})
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When checking Linked Data Signature', function () {
|
2021-02-26 08:42:34 -05:00
|
|
|
before(async function () {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
|
|
|
await setKeysOfServer(servers[0], servers[1], keys.publicKey, keys.privateKey)
|
|
|
|
await setKeysOfServer(servers[1], servers[1], keys.publicKey, keys.privateKey)
|
2019-04-26 02:50:52 -04:00
|
|
|
await setKeysOfServer(servers[2], servers[2], keys.publicKey, keys.privateKey)
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const to = { url: 'http://localhost:' + servers[0].port + '/accounts/peertube' }
|
|
|
|
const by = { url: 'http://localhost:' + servers[2].port + '/accounts/peertube', privateKey: keys.privateKey }
|
2018-10-23 05:38:48 -04:00
|
|
|
await makeFollowRequest(to, by)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with bad keys', async function () {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
await setKeysOfServer(servers[0], servers[2], invalidKeys.publicKey, invalidKeys.privateKey)
|
|
|
|
await setKeysOfServer(servers[2], servers[2], invalidKeys.publicKey, invalidKeys.privateKey)
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const body = getAnnounceWithoutContext(servers[1])
|
|
|
|
body.actor = 'http://localhost:' + servers[2].port + '/accounts/peertube'
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const signer: any = { privateKey: invalidKeys.privateKey, url: 'http://localhost:' + servers[2].port + '/accounts/peertube' }
|
2022-03-23 11:14:33 -04:00
|
|
|
const signedBody = await signAndContextify(signer, body, 'Announce')
|
2018-10-23 05:38:48 -04:00
|
|
|
|
|
|
|
const headers = buildGlobalHeaders(signedBody)
|
|
|
|
|
2021-03-09 08:01:44 -05:00
|
|
|
try {
|
|
|
|
await makePOSTAPRequest(url, signedBody, baseHttpSignature(), headers)
|
|
|
|
expect(true, 'Did not throw').to.be.false
|
|
|
|
} catch (err) {
|
|
|
|
expect(err.statusCode).to.equal(HttpStatusCode.FORBIDDEN_403)
|
|
|
|
}
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an altered body', async function () {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
await setKeysOfServer(servers[0], servers[2], keys.publicKey, keys.privateKey)
|
|
|
|
await setKeysOfServer(servers[0], servers[2], keys.publicKey, keys.privateKey)
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const body = getAnnounceWithoutContext(servers[1])
|
|
|
|
body.actor = 'http://localhost:' + servers[2].port + '/accounts/peertube'
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const signer: any = { privateKey: keys.privateKey, url: 'http://localhost:' + servers[2].port + '/accounts/peertube' }
|
2022-03-23 11:14:33 -04:00
|
|
|
const signedBody = await signAndContextify(signer, body, 'Announce')
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
signedBody.actor = 'http://localhost:' + servers[2].port + '/account/peertube'
|
2018-10-23 05:38:48 -04:00
|
|
|
|
|
|
|
const headers = buildGlobalHeaders(signedBody)
|
|
|
|
|
2021-03-09 08:01:44 -05:00
|
|
|
try {
|
|
|
|
await makePOSTAPRequest(url, signedBody, baseHttpSignature(), headers)
|
|
|
|
expect(true, 'Did not throw').to.be.false
|
|
|
|
} catch (err) {
|
|
|
|
expect(err.statusCode).to.equal(HttpStatusCode.FORBIDDEN_403)
|
|
|
|
}
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with a valid signature', async function () {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const body = getAnnounceWithoutContext(servers[1])
|
|
|
|
body.actor = 'http://localhost:' + servers[2].port + '/accounts/peertube'
|
2018-10-23 05:38:48 -04:00
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const signer: any = { privateKey: keys.privateKey, url: 'http://localhost:' + servers[2].port + '/accounts/peertube' }
|
2022-03-23 11:14:33 -04:00
|
|
|
const signedBody = await signAndContextify(signer, body, 'Announce')
|
2018-10-23 05:38:48 -04:00
|
|
|
|
|
|
|
const headers = buildGlobalHeaders(signedBody)
|
|
|
|
|
2021-03-08 08:24:11 -05:00
|
|
|
const { statusCode } = await makePOSTAPRequest(url, signedBody, baseHttpSignature(), headers)
|
|
|
|
expect(statusCode).to.equal(HttpStatusCode.NO_CONTENT_204)
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
2021-02-26 08:42:34 -05:00
|
|
|
|
|
|
|
it('Should refresh the actor keys', async function () {
|
|
|
|
this.timeout(20000)
|
|
|
|
|
|
|
|
// Wait refresh invalidation
|
|
|
|
await wait(10000)
|
|
|
|
|
|
|
|
// Update keys of server 3 to invalid keys
|
|
|
|
// Server 1 should refresh the actor and fail
|
|
|
|
await setKeysOfServer(servers[2], servers[2], invalidKeys.publicKey, invalidKeys.privateKey)
|
|
|
|
|
|
|
|
const body = getAnnounceWithoutContext(servers[1])
|
|
|
|
body.actor = 'http://localhost:' + servers[2].port + '/accounts/peertube'
|
|
|
|
|
|
|
|
const signer: any = { privateKey: keys.privateKey, url: 'http://localhost:' + servers[2].port + '/accounts/peertube' }
|
2022-03-23 11:14:33 -04:00
|
|
|
const signedBody = await signAndContextify(signer, body, 'Announce')
|
2021-02-26 08:42:34 -05:00
|
|
|
|
|
|
|
const headers = buildGlobalHeaders(signedBody)
|
|
|
|
|
2021-03-09 08:01:44 -05:00
|
|
|
try {
|
|
|
|
await makePOSTAPRequest(url, signedBody, baseHttpSignature(), headers)
|
|
|
|
expect(true, 'Did not throw').to.be.false
|
|
|
|
} catch (err) {
|
|
|
|
expect(err.statusCode).to.equal(HttpStatusCode.FORBIDDEN_403)
|
|
|
|
}
|
2021-02-26 08:42:34 -05:00
|
|
|
})
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
2019-04-26 02:50:52 -04:00
|
|
|
this.timeout(10000)
|
|
|
|
|
|
|
|
await cleanupTests(servers)
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
|
|
|
})
|