ejnyebejnye
This commit is contained in:
parent
88e31ad704
commit
6f774f8468
2 changed files with 41 additions and 9 deletions
|
@ -2,23 +2,19 @@ import { json } from '@sveltejs/kit';
|
||||||
import fs from 'fs/promises';
|
import fs from 'fs/promises';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
const PLIST_PASSWORD = 'mivancicus';
|
const OLD_PLIST_PASSWORD = 'mivancicus';
|
||||||
|
const NEW_PLIST_PASSWORD = 'neleakeldnagyontitkosjelszo';
|
||||||
// Function to extract login pairs from the login handler code
|
|
||||||
async function getLoginPairs() {
|
async function getLoginPairs() {
|
||||||
try {
|
try {
|
||||||
// Read the login handler file
|
|
||||||
const loginHandlerPath = path.join(process.cwd(), 'src', 'routes', 'api', 'login', '+server.js');
|
const loginHandlerPath = path.join(process.cwd(), 'src', 'routes', 'api', 'login', '+server.js');
|
||||||
const content = await fs.readFile(loginHandlerPath, 'utf-8');
|
const content = await fs.readFile(loginHandlerPath, 'utf-8');
|
||||||
|
|
||||||
const pairs = [];
|
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);
|
const matches = content.matchAll(/if\s*\(username\s*===\s*['"]([^'"]+)['"]\s*&&\s*(?:password\s*===\s*['"]([^'"]+)['"]|hashedPassword\s*===\s*adminHash)/g);
|
||||||
|
|
||||||
for (const match of matches) {
|
for (const match of matches) {
|
||||||
const username = match[1];
|
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];
|
const password = username === 'admin' ? 'admin' : match[2];
|
||||||
|
|
||||||
if (username && password) {
|
if (username && password) {
|
||||||
|
@ -36,13 +32,25 @@ async function getLoginPairs() {
|
||||||
export async function POST({ request }) {
|
export async function POST({ request }) {
|
||||||
const { password } = await request.json();
|
const { password } = await request.json();
|
||||||
|
|
||||||
if (password === PLIST_PASSWORD) {
|
if (password === NEW_PLIST_PASSWORD) {
|
||||||
const pairs = await getLoginPairs();
|
const pairs = await getLoginPairs();
|
||||||
return json({
|
return json({
|
||||||
success: true,
|
success: true,
|
||||||
pairs
|
pairs
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
else if (password === OLD_PLIST_PASSWORD) {
|
||||||
|
const pairs = await getLoginPairs();
|
||||||
|
return json({
|
||||||
|
success: true,
|
||||||
|
html: `
|
||||||
|
<div style="display: flex; flex-direction: column; align-items: center; justify-content: center;">
|
||||||
|
<p style="color: #e74c3c; font-size: 1.5rem; margin-bottom: 0.5rem;">ejnyebejnye!</p>
|
||||||
|
<p style="color: #e74c3c;">ez a jelszó már korábban leakelve lett.</p>
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return json({
|
return json({
|
||||||
success: false,
|
success: false,
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
let password = '';
|
let password = '';
|
||||||
let loginPairs = [];
|
let loginPairs = [];
|
||||||
let error = '';
|
let error = '';
|
||||||
|
let htmlMessage = '';
|
||||||
|
|
||||||
async function authenticate() {
|
async function authenticate() {
|
||||||
try {
|
try {
|
||||||
|
@ -21,6 +22,13 @@
|
||||||
if (data.success) {
|
if (data.success) {
|
||||||
isAuthenticated = true;
|
isAuthenticated = true;
|
||||||
loginPairs = data.pairs;
|
loginPairs = data.pairs;
|
||||||
|
|
||||||
|
// Handle HTML message if present (for old password)
|
||||||
|
if (data.html) {
|
||||||
|
htmlMessage = data.html;
|
||||||
|
} else {
|
||||||
|
htmlMessage = '';
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
error = 'Incorrect password';
|
error = 'Incorrect password';
|
||||||
}
|
}
|
||||||
|
@ -74,6 +82,11 @@
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
<div class="login-form">
|
<div class="login-form">
|
||||||
|
{#if htmlMessage}
|
||||||
|
<div class="html-message">
|
||||||
|
{@html htmlMessage}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
<div class="pairs-list">
|
<div class="pairs-list">
|
||||||
{#each loginPairs as pair}
|
{#each loginPairs as pair}
|
||||||
<div class="pair-item">
|
<div class="pair-item">
|
||||||
|
@ -260,6 +273,17 @@
|
||||||
color: #e74c3c;
|
color: #e74c3c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.html-message {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
padding: 0.8rem;
|
||||||
|
background-color: #f8d7da;
|
||||||
|
border: 1px solid #f5c6cb;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: clamp(0.8rem, 3vw, 1rem);
|
padding: clamp(0.8rem, 3vw, 1rem);
|
||||||
|
|
Loading…
Add table
Reference in a new issue