]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/activitypub/security.ts
Avoir some circular dependencies
[github/Chocobozzz/PeerTube.git] / server / tests / api / activitypub / security.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
df66d815
C
2
3import 'mocha'
4
a1587156 5import { cleanupTests, closeAllSequelize, flushAndRunMultipleServers, ServerInfo, setActorField } from '../../../../shared/extra-utils'
74dc3bca 6import { HTTP_SIGNATURE } from '../../../initializers/constants'
8dc8a34e 7import { buildGlobalHeaders } from '../../../lib/job-queue/handlers/utils/activitypub-http-utils'
df66d815 8import * as chai from 'chai'
df66d815 9import { activityPubContextify, buildSignedActivity } from '../../../helpers/activitypub'
94565d52 10import { makeFollowRequest, makePOSTAPRequest } from '../../../../shared/extra-utils/requests/activitypub'
8dc8a34e 11import { buildDigest } from '@server/helpers/peertube-crypto'
df66d815
C
12
13const expect = chai.expect
14
48f07b4a 15function setKeysOfServer (onServer: ServerInfo, ofServer: ServerInfo, publicKey: string, privateKey: string) {
df66d815 16 return Promise.all([
48f07b4a
C
17 setActorField(onServer.internalServerNumber, 'http://localhost:' + ofServer.port + '/accounts/peertube', 'publicKey', publicKey),
18 setActorField(onServer.internalServerNumber, 'http://localhost:' + ofServer.port + '/accounts/peertube', 'privateKey', privateKey)
df66d815
C
19 ])
20}
21
48f07b4a
C
22function getAnnounceWithoutContext (server2: ServerInfo) {
23 const json = require('./json/peertube/announce-without-context.json')
24 const result: typeof json = {}
25
26 for (const key of Object.keys(json)) {
27 if (Array.isArray(json[key])) {
28 result[key] = json[key].map(v => v.replace(':9002', `:${server2.port}`))
29 } else {
a1587156 30 result[key] = json[key].replace(':9002', `:${server2.port}`)
48f07b4a
C
31 }
32 }
33
34 return result
df66d815
C
35}
36
37describe('Test ActivityPub security', function () {
38 let servers: ServerInfo[]
39 let url: string
40
41 const keys = require('./json/peertube/keys.json')
42 const invalidKeys = require('./json/peertube/invalid-keys.json')
48f07b4a 43 const baseHttpSignature = () => ({
df66d815
C
44 algorithm: HTTP_SIGNATURE.ALGORITHM,
45 authorizationHeaderName: HTTP_SIGNATURE.HEADER_NAME,
48f07b4a 46 keyId: 'acct:peertube@localhost:' + servers[1].port,
df66d815
C
47 key: keys.privateKey,
48 headers: HTTP_SIGNATURE.HEADERS_TO_SIGN
48f07b4a 49 })
df66d815
C
50
51 // ---------------------------------------------------------------
52
53 before(async function () {
54 this.timeout(60000)
55
56 servers = await flushAndRunMultipleServers(3)
57
58 url = servers[0].url + '/inbox'
59
48f07b4a 60 await setKeysOfServer(servers[0], servers[1], keys.publicKey, keys.privateKey)
df66d815 61
48f07b4a
C
62 const to = { url: 'http://localhost:' + servers[0].port + '/accounts/peertube' }
63 const by = { url: 'http://localhost:' + servers[1].port + '/accounts/peertube', privateKey: keys.privateKey }
df66d815
C
64 await makeFollowRequest(to, by)
65 })
66
67 describe('When checking HTTP signature', function () {
68
69 it('Should fail with an invalid digest', async function () {
48f07b4a 70 const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
df66d815
C
71 const headers = {
72 Digest: buildDigest({ hello: 'coucou' })
73 }
74
48f07b4a 75 const { response } = await makePOSTAPRequest(url, body, baseHttpSignature(), headers)
df66d815
C
76
77 expect(response.statusCode).to.equal(403)
78 })
79
80 it('Should fail with an invalid date', async function () {
48f07b4a 81 const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
df66d815
C
82 const headers = buildGlobalHeaders(body)
83 headers['date'] = 'Wed, 21 Oct 2015 07:28:00 GMT'
84
48f07b4a 85 const { response } = await makePOSTAPRequest(url, body, baseHttpSignature(), headers)
df66d815
C
86
87 expect(response.statusCode).to.equal(403)
88 })
89
90 it('Should fail with bad keys', async function () {
48f07b4a
C
91 await setKeysOfServer(servers[0], servers[1], invalidKeys.publicKey, invalidKeys.privateKey)
92 await setKeysOfServer(servers[1], servers[1], invalidKeys.publicKey, invalidKeys.privateKey)
df66d815 93
48f07b4a 94 const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
df66d815
C
95 const headers = buildGlobalHeaders(body)
96
48f07b4a 97 const { response } = await makePOSTAPRequest(url, body, baseHttpSignature(), headers)
df66d815
C
98
99 expect(response.statusCode).to.equal(403)
100 })
101
102 it('Should succeed with a valid HTTP signature', async function () {
48f07b4a
C
103 await setKeysOfServer(servers[0], servers[1], keys.publicKey, keys.privateKey)
104 await setKeysOfServer(servers[1], servers[1], keys.publicKey, keys.privateKey)
df66d815 105
48f07b4a 106 const body = activityPubContextify(getAnnounceWithoutContext(servers[1]))
df66d815
C
107 const headers = buildGlobalHeaders(body)
108
48f07b4a 109 const { response } = await makePOSTAPRequest(url, body, baseHttpSignature(), headers)
df66d815
C
110
111 expect(response.statusCode).to.equal(204)
112 })
113 })
114
115 describe('When checking Linked Data Signature', function () {
116 before(async () => {
48f07b4a 117 await setKeysOfServer(servers[2], servers[2], keys.publicKey, keys.privateKey)
df66d815 118
48f07b4a
C
119 const to = { url: 'http://localhost:' + servers[0].port + '/accounts/peertube' }
120 const by = { url: 'http://localhost:' + servers[2].port + '/accounts/peertube', privateKey: keys.privateKey }
df66d815
C
121 await makeFollowRequest(to, by)
122 })
123
124 it('Should fail with bad keys', async function () {
125 this.timeout(10000)
126
48f07b4a
C
127 await setKeysOfServer(servers[0], servers[2], invalidKeys.publicKey, invalidKeys.privateKey)
128 await setKeysOfServer(servers[2], servers[2], invalidKeys.publicKey, invalidKeys.privateKey)
df66d815 129
48f07b4a
C
130 const body = getAnnounceWithoutContext(servers[1])
131 body.actor = 'http://localhost:' + servers[2].port + '/accounts/peertube'
df66d815 132
48f07b4a 133 const signer: any = { privateKey: invalidKeys.privateKey, url: 'http://localhost:' + servers[2].port + '/accounts/peertube' }
df66d815
C
134 const signedBody = await buildSignedActivity(signer, body)
135
136 const headers = buildGlobalHeaders(signedBody)
137
48f07b4a 138 const { response } = await makePOSTAPRequest(url, signedBody, baseHttpSignature(), headers)
df66d815
C
139
140 expect(response.statusCode).to.equal(403)
141 })
142
143 it('Should fail with an altered body', async function () {
144 this.timeout(10000)
145
48f07b4a
C
146 await setKeysOfServer(servers[0], servers[2], keys.publicKey, keys.privateKey)
147 await setKeysOfServer(servers[0], servers[2], keys.publicKey, keys.privateKey)
df66d815 148
48f07b4a
C
149 const body = getAnnounceWithoutContext(servers[1])
150 body.actor = 'http://localhost:' + servers[2].port + '/accounts/peertube'
df66d815 151
48f07b4a 152 const signer: any = { privateKey: keys.privateKey, url: 'http://localhost:' + servers[2].port + '/accounts/peertube' }
df66d815
C
153 const signedBody = await buildSignedActivity(signer, body)
154
48f07b4a 155 signedBody.actor = 'http://localhost:' + servers[2].port + '/account/peertube'
df66d815
C
156
157 const headers = buildGlobalHeaders(signedBody)
158
48f07b4a 159 const { response } = await makePOSTAPRequest(url, signedBody, baseHttpSignature(), headers)
df66d815
C
160
161 expect(response.statusCode).to.equal(403)
162 })
163
164 it('Should succeed with a valid signature', async function () {
165 this.timeout(10000)
166
48f07b4a
C
167 const body = getAnnounceWithoutContext(servers[1])
168 body.actor = 'http://localhost:' + servers[2].port + '/accounts/peertube'
df66d815 169
48f07b4a 170 const signer: any = { privateKey: keys.privateKey, url: 'http://localhost:' + servers[2].port + '/accounts/peertube' }
df66d815
C
171 const signedBody = await buildSignedActivity(signer, body)
172
173 const headers = buildGlobalHeaders(signedBody)
174
48f07b4a 175 const { response } = await makePOSTAPRequest(url, signedBody, baseHttpSignature(), headers)
df66d815
C
176
177 expect(response.statusCode).to.equal(204)
178 })
179 })
180
181 after(async function () {
48f07b4a
C
182 this.timeout(10000)
183
184 await cleanupTests(servers)
df66d815 185
c8000975 186 await closeAllSequelize(servers)
df66d815
C
187 })
188})