fix: add anti-csrf token for /revoke-session

This commit is contained in:
KernelDeimos 2024-08-18 01:06:47 -04:00
parent 9fa12d43fc
commit b6b64d3bcc
4 changed files with 34 additions and 0 deletions

View File

@ -36,6 +36,11 @@ module.exports = eggspress('/auth/revoke-session', {
throw APIError.create('forbidden');
}
const svc_antiCSRF = req.services.get('anti-csrf');
if ( ! svc_antiCSRF.consume_token(actor.type.user.uuid, req.body.anti_csrf) ) {
return res.status(400).json({ message: 'incorrect anti-CSRF token' });
}
// Ensure valid UUID
if ( ! req.body.uuid || typeof req.body.uuid !== 'string' ) {
throw APIError.create('field_invalid', null, {

View File

@ -105,6 +105,9 @@ const UIWindowManageSessions = async function UIWindowManageSessions (options) {
if ( alert_resp !== 'yes' ) {
return;
}
const anti_csrf = await services.get('anti-csrf').token();
const resp = await fetch(`${window.api_origin}/auth/revoke-session`, {
method: 'POST',
@ -114,6 +117,7 @@ const UIWindowManageSessions = async function UIWindowManageSessions (options) {
},
body: JSON.stringify({
uuid: session.uuid,
anti_csrf,
}),
});
if ( resp.ok ) {

View File

@ -45,6 +45,7 @@ import UIComponentWindow from './UI/UIComponentWindow.js';
import update_mouse_position from './helpers/update_mouse_position.js';
import { LaunchOnInitService } from './services/LaunchOnInitService.js';
import item_icon from './helpers/item_icon.js';
import { AntiCSRFService } from './services/AntiCSRFService.js';
const launch_services = async function (options) {
// === Services Data Structures ===
@ -79,6 +80,7 @@ const launch_services = async function (options) {
register('process', new ProcessService());
register('locale', new LocaleService());
register('settings', new SettingsService());
register('anti-csrf', new AntiCSRFService());
register('__launch-on-init', new LaunchOnInitService());
// === Service-Script Services ===

View File

@ -0,0 +1,23 @@
import { Service } from "../definitions.js";
export class AntiCSRFService extends Service {
/**
* Request an anti-csrf token from the server
* @return anti_csrf: string
*/
async token () {
const anti_csrf = await (async () => {
const resp = await fetch(
`${window.gui_origin}/get-anticsrf-token`,{
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + window.auth_token,
}
},)
const { token } = await resp.json();
return token;
})();
return anti_csrf;
}
}