fix: strengthen live recovery and support diagnostics

Apply account and key changes to active queues without a restart and isolate provider attempt cancellation so fallback accounts remain usable. Preserve pause ownership, bound persisted HTTP 416 recovery, reconcile resets with authoritative state, and stabilize package ordering and live update cadence. Correlate rotation, conversion, resume, disk, queue-control, clipboard, and support-export events while redacting sensitive data at every persistent boundary and again in generated bundles. Release as v2.0.31 with updated English documentation and regression coverage.
This commit is contained in:
Sucukdeluxe
2026-08-13 11:36:51 +02:00
parent 88399c5dd0
commit 25ebc55f4f
44 changed files with 5223 additions and 959 deletions
+42 -5
View File
@@ -30,7 +30,7 @@ describe("audit-log", () => {
expect(content).toContain("changedKeys");
});
it("rotates oversized audit logs on startup", () => {
it("rotates oversized audit logs on startup", () => {
const baseDir = fs.mkdtempSync(path.join(os.tmpdir(), "rd-alog-rotate-"));
tempDirs.push(baseDir);
@@ -42,7 +42,44 @@ describe("audit-log", () => {
expect(fs.existsSync(oversizedPath)).toBe(true);
expect(fs.existsSync(`${oversizedPath}.old`)).toBe(true);
const content = fs.readFileSync(oversizedPath, "utf8");
expect(content).toContain("Audit-Log Start");
});
});
const content = fs.readFileSync(oversizedPath, "utf8");
expect(content).toContain("Audit-Log Start");
});
it("redacts secrets, identities, direct links and local paths from audit logs", () => {
const baseDir = fs.mkdtempSync(path.join(os.tmpdir(), "rd-alog-sensitive-"));
tempDirs.push(baseDir);
initAuditLog(baseDir);
logAuditEvent(
"ERROR",
"Abruf https://rapidgator.net/file/private-id/archive.rar?token=url-secret für audit@example.com in C:\\Users\\Administrator\\Downloads\\archive.rar fehlgeschlagen",
{
directUrl: "https://rapidgator.net/file/private-id/archive.rar?token=url-secret",
authorization: "Bearer authorization-secret-value",
details: {
password: "password-secret-value",
cookie: "sid=cookie-secret-value",
email: "audit@example.com",
extractPath: "/var/lib/downloader/archive.rar"
}
}
);
const logPath = getAuditLogPath();
expect(logPath).not.toBeNull();
const content = fs.readFileSync(logPath!, "utf8");
expect(content).toMatch(/rapidgator\.net#[a-f0-9]{10}/);
expect(content).toContain("<redacted>");
expect(content).toContain("<redacted-account>");
expect(content).toContain("<redacted-path>");
expect(content).not.toContain("private-id");
expect(content).not.toContain("url-secret");
expect(content).not.toContain("authorization-secret-value");
expect(content).not.toContain("password-secret-value");
expect(content).not.toContain("cookie-secret-value");
expect(content).not.toContain("audit@example.com");
expect(content).not.toContain("C:\\Users\\Administrator");
expect(content).not.toContain("/var/lib/downloader");
});
});