diff --git a/src/routes/api/plist/+server.js b/src/routes/api/plist/+server.js index be13ba6..d1ce545 100644 --- a/src/routes/api/plist/+server.js +++ b/src/routes/api/plist/+server.js @@ -2,23 +2,19 @@ import { json } from '@sveltejs/kit'; import fs from 'fs/promises'; import path from 'path'; -const PLIST_PASSWORD = 'mivancicus'; - -// Function to extract login pairs from the login handler code +const OLD_PLIST_PASSWORD = 'mivancicus'; +const NEW_PLIST_PASSWORD = 'neleakeldnagyontitkosjelszo'; async function getLoginPairs() { try { - // Read the login handler file const loginHandlerPath = path.join(process.cwd(), 'src', 'routes', 'api', 'login', '+server.js'); const content = await fs.readFile(loginHandlerPath, 'utf-8'); const pairs = []; - // Extract username/password pairs using regex const matches = content.matchAll(/if\s*\(username\s*===\s*['"]([^'"]+)['"]\s*&&\s*(?:password\s*===\s*['"]([^'"]+)['"]|hashedPassword\s*===\s*adminHash)/g); for (const match of matches) { const username = match[1]; - // For admin, we use 'admin' as password since it's hashed in the code const password = username === 'admin' ? 'admin' : match[2]; if (username && password) { @@ -36,16 +32,28 @@ async function getLoginPairs() { export async function POST({ request }) { const { password } = await request.json(); - if (password === PLIST_PASSWORD) { + if (password === NEW_PLIST_PASSWORD) { const pairs = await getLoginPairs(); return json({ success: true, pairs }); } + else if (password === OLD_PLIST_PASSWORD) { + const pairs = await getLoginPairs(); + return json({ + success: true, + html: ` +
ejnyebejnye!
+ez a jelszó már korábban leakelve lett.
+