fixup! implement CSP, remove commercial supporters from about section
Some checks failed
Lint / pnpm_install (pull_request) Successful in 1m28s
Lint / pnpm_install (push) Successful in 1m37s
Publish Docker image / Build (pull_request) Successful in 4m53s
Test (production install and build) / production (20.16.0) (pull_request) Successful in 1m8s
Test (backend) / unit (20.16.0) (pull_request) Successful in 6m54s
Test (backend) / e2e (20.16.0) (pull_request) Successful in 10m7s
Test (backend) / unit (20.16.0) (push) Successful in 6m38s
Test (production install and build) / production (20.16.0) (push) Successful in 1m28s
Publish Docker image / Build (push) Has been cancelled
Lint / lint (backend) (pull_request) Successful in 2m29s
Lint / lint (frontend) (pull_request) Successful in 2m30s
Test (backend) / e2e (20.16.0) (push) Successful in 11m22s
Lint / lint (frontend-embed) (pull_request) Successful in 2m26s
Lint / lint (frontend-shared) (pull_request) Successful in 2m24s
Lint / lint (misskey-bubble-game) (pull_request) Successful in 2m30s
Lint / lint (misskey-js) (pull_request) Successful in 2m37s
Lint / lint (misskey-reversi) (pull_request) Successful in 2m31s
Lint / typecheck (backend) (pull_request) Failing after 52s
Lint / typecheck (misskey-js) (pull_request) Successful in 1m43s
Lint / lint (sw) (pull_request) Successful in 3m21s
Lint / typecheck (sw) (pull_request) Successful in 2m3s
Lint / lint (backend) (push) Successful in 2m31s
Lint / lint (frontend-embed) (push) Successful in 2m32s
Lint / lint (frontend) (push) Successful in 2m46s
Lint / lint (frontend-shared) (push) Successful in 2m10s
Lint / lint (misskey-bubble-game) (push) Successful in 2m25s
Lint / lint (misskey-js) (push) Successful in 2m27s
Lint / lint (misskey-reversi) (push) Successful in 2m21s
Lint / lint (sw) (push) Successful in 2m28s
Lint / typecheck (backend) (push) Successful in 2m27s
Lint / typecheck (misskey-js) (push) Successful in 1m36s
Lint / typecheck (sw) (push) Successful in 1m46s

Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
This commit is contained in:
ゆめ 2024-11-11 20:12:44 -06:00
parent 3fcea3eeb6
commit 2b236b2919
No known key found for this signature in database
4 changed files with 23 additions and 17 deletions

View file

@ -24,9 +24,9 @@ export function generateCSP(hashedMap: Map<string, CSPHashed>, options: {
return ([
['default-src', ['\'self\'']],
['img-src',
[
'\'self\'',
['img-src',
[
'\'self\'',
'data:',
// 'https://avatars.githubusercontent.com', // uncomment this for contributor avatars to work
options.mediaProxy
@ -41,7 +41,7 @@ export function generateCSP(hashedMap: Map<string, CSPHashed>, options: {
// Since you can not write CSS selectors or cascading rules in the inline style attributes.
//
// ref: https://github.com/shikijs/shiki/issues/671
['style-src-attr', ['\'self\'', '\'unsafe-inline\'']],
['style-src-attr', ['\'self\'', '\'unsafe-inline\'']],
['script-src', ['\'self\'', '\'wasm-unsafe-eval\'', ...scripts]],
['object-src', ['\'none\'']],
['frame-src', ['\'none\'']],

View file

@ -34,6 +34,7 @@ import Logger from '@/logger.js';
import { StatusError } from '@/misc/status-error.js';
import type { ServerResponse } from 'node:http';
import type { FastifyInstance } from 'fastify';
import { commonPugFilters } from '../pug-filters.js';
// TODO: Consider migrating to @node-oauth/oauth2-server once
// https://github.com/node-oauth/node-oauth2-server/issues/180 is figured out.
@ -391,6 +392,9 @@ export class OAuth2ProviderService {
version: this.config.version,
config: this.config,
},
options: {
filters: commonPugFilters,
},
});
await fastify.register(fastifyExpress);

View file

@ -0,0 +1,12 @@
export const commonPugFilters = {
dataTag: (data: string, options: { tagName: string, mimeType: string }) => {
if (!/^[a-z]+$/.test(options.tagName)) {
throw new Error('Invalid tagName');
}
if (/[;'"]/.test(options.mimeType)) {
throw new Error('Invalid mimeType');
}
const dataURI = `data:${options.mimeType};base64,${Buffer.from(data).toString('base64')}`;
return `<${options.tagName} data="${dataURI}"></${options.tagName}>`;
}
} as const;

View file

@ -69,6 +69,7 @@ import type { FastifyInstance, FastifyPluginOptions, FastifyReply } from 'fastif
import { makeHstsHook } from '../hsts.js';
import { generateCSP } from '../csp.js';
import { appendQuery, query } from '@/misc/prelude/url.js';
import { commonPugFilters } from '../pug-filters.js';
const _filename = fileURLToPath(import.meta.url);
const _dirname = dirname(_filename);
@ -322,19 +323,8 @@ export class ClientServerService {
config: this.config,
},
options: {
filters: {
dataTag: (data: string, options: { tagName: string, mimeType: string }) => {
if (!/^[a-z]+$/.test(options.tagName)) {
throw new Error('Invalid tagName');
}
if (/[;'"]/.test(options.mimeType)) {
throw new Error('Invalid mimeType');
}
const dataURI = `data:${options.mimeType};base64,${Buffer.from(data).toString('base64')}`;
return `<${options.tagName} data="${dataURI}"></${options.tagName}>`;
}
}
}
filters: commonPugFilters,
},
});
fastify.addHook('onRequest', (request, reply, done) => {