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
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
import * as chai from 'chai'
|
2020-04-23 03:32:53 -04:00
|
|
|
import { buildDigest } from '@server/helpers/peertube-crypto'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
|
2021-02-26 08:42:34 -05:00
|
|
|
import {
|
2021-06-14 10:52:22 -04:00
|
|
|
buildAbsoluteFixturePath,
|
2021-02-26 08:42:34 -05:00
|
|
|
cleanupTests,
|
|
|
|
closeAllSequelize,
|
|
|
|
flushAndRunMultipleServers,
|
2021-03-10 05:17:20 -05:00
|
|
|
killallServers,
|
|
|
|
reRunServer,
|
2021-02-26 08:42:34 -05:00
|
|
|
ServerInfo,
|
|
|
|
setActorField,
|
|
|
|
wait
|
|
|
|
} from '../../../../shared/extra-utils'
|
|
|
|
import { makeFollowRequest, makePOSTAPRequest } from '../../../../shared/extra-utils/requests/activitypub'
|
|
|
|
import { activityPubContextify, buildSignedActivity } from '../../../helpers/activitypub'
|
|
|
|
import { HTTP_SIGNATURE } from '../../../initializers/constants'
|
|
|
|
import { buildGlobalHeaders } from '../../../lib/job-queue/handlers/utils/activitypub-http-utils'
|
2018-10-23 05:38:48 -04:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
function setKeysOfServer (onServer: ServerInfo, ofServer: ServerInfo, publicKey: string, privateKey: string) {
|
2021-03-10 05:17:20 -05:00
|
|
|
const url = 'http://localhost:' + ofServer.port + '/accounts/peertube'
|
|
|
|
|
|
|
|
return Promise.all([
|
|
|
|
setActorField(onServer.internalServerNumber, url, 'publicKey', publicKey),
|
|
|
|
setActorField(onServer.internalServerNumber, url, 'privateKey', privateKey)
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
function setUpdatedAtOfServer (onServer: ServerInfo, ofServer: ServerInfo, updatedAt: string) {
|
|
|
|
const url = 'http://localhost:' + ofServer.port + '/accounts/peertube'
|
|
|
|
|
2018-10-23 05:38:48 -04:00
|
|
|
return Promise.all([
|
2021-03-10 05:17:20 -05:00
|
|
|
setActorField(onServer.internalServerNumber, url, 'createdAt', updatedAt),
|
|
|
|
setActorField(onServer.internalServerNumber, url, 'updatedAt', updatedAt)
|
2018-10-23 05:38:48 -04:00
|
|
|
])
|
|
|
|
}
|
|
|
|
|
2021-03-10 05:17:20 -05:00
|
|
|
function getAnnounceWithoutContext (server: ServerInfo) {
|
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 () {
|
|
|
|
let servers: ServerInfo[]
|
|
|
|
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)
|
|
|
|
|
|
|
|
servers = await flushAndRunMultipleServers(3)
|
|
|
|
|
|
|
|
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 () {
|
2019-04-26 02:50:52 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
|
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 () {
|
2019-04-26 02:50:52 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
|
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
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
|
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
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
|
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
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with a valid HTTP signature', async function () {
|
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
|
|
|
|
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
|
|
|
|
killallServers([ servers[1] ])
|
|
|
|
await reRunServer(servers[1])
|
2021-02-26 08:42:34 -05:00
|
|
|
|
|
|
|
const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
|
|
|
|
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' }
|
2018-10-23 05:38:48 -04:00
|
|
|
const signedBody = await buildSignedActivity(signer, body)
|
|
|
|
|
|
|
|
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' }
|
2018-10-23 05:38:48 -04:00
|
|
|
const signedBody = await buildSignedActivity(signer, body)
|
|
|
|
|
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' }
|
2018-10-23 05:38:48 -04:00
|
|
|
const signedBody = await buildSignedActivity(signer, body)
|
|
|
|
|
|
|
|
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' }
|
|
|
|
const signedBody = await buildSignedActivity(signer, body)
|
|
|
|
|
|
|
|
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
|
|
|
|
2019-02-21 09:44:12 -05:00
|
|
|
await closeAllSequelize(servers)
|
2018-10-23 05:38:48 -04:00
|
|
|
})
|
|
|
|
})
|