fix: harden application trust boundaries (#1317)

This commit is contained in:
ZacharyZcR
2026-08-24 07:55:17 +08:00
committed by GitHub
parent 30d72554fc
commit 2de9bb236b
31 changed files with 287 additions and 132 deletions
+1 -1
View File
@@ -318,7 +318,7 @@ app.delete("/activity/reset", async (req, res) => {
app.use("/service-links", dashboardServiceLinksRouter);
const PORT = 30006;
app.listen(PORT, async () => {
app.listen(PORT, "127.0.0.1", async () => {
try {
await authManager.initialize();
} catch (err) {