mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-15 04:43:36 +00:00
fix: decode oidc client_secret before token exchange
This commit is contained in:
@@ -949,6 +949,18 @@ router.get("/oidc/callback", async (req, res) => {
|
|||||||
config = JSON.parse(
|
config = JSON.parse(
|
||||||
(configRow as Record<string, unknown>).value as string,
|
(configRow as Record<string, unknown>).value as string,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (config.client_secret?.startsWith("encrypted:")) {
|
||||||
|
config.client_secret = Buffer.from(
|
||||||
|
config.client_secret.substring(10),
|
||||||
|
"base64",
|
||||||
|
).toString("utf8");
|
||||||
|
} else if (config.client_secret?.startsWith("encoded:")) {
|
||||||
|
config.client_secret = Buffer.from(
|
||||||
|
config.client_secret.substring(8),
|
||||||
|
"base64",
|
||||||
|
).toString("utf8");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const tokenResponse = await fetch(config.token_url, {
|
const tokenResponse = await fetch(config.token_url, {
|
||||||
|
|||||||
Reference in New Issue
Block a user