This commit is contained in:
spitkov 2025-03-11 13:32:57 +01:00
commit 4cc17951fd
21 changed files with 3394 additions and 0 deletions

50
.gitignore vendored Normal file
View file

@ -0,0 +1,50 @@
node_modules
# SvelteKit build output
/build
/.svelte-kit
/package
# Environment files
.env
.env.*
!.env.example
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Testing
/coverage
/playwright-report
/test-results
# Production
/dist
/static/protected
# Debug
.pnpm-debug.log*
.npm
.eslintcache
# Misc
*.pem
.vercel
.netlify
.turbo

1
.npmrc Normal file
View file

@ -0,0 +1 @@
engine-strict=true

38
README.md Normal file
View file

@ -0,0 +1,38 @@
# sv
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
npx sv create
# create a new project in my-app
npx sv create my-app
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.

13
jsconfig.json Normal file
View file

@ -0,0 +1,13 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"moduleResolution": "bundler"
}
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}

1401
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

19
package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "ekretenhu",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"svelte": "^5.0.0",
"vite": "^6.0.0"
}
}

12
src/app.html Normal file
View file

@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

1
src/lib/index.js Normal file
View file

@ -0,0 +1 @@
// place files you want to import through the `$lib` alias in this folder.

BIN
src/lib/protected/klima.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

2
src/routes/+layout.js Normal file
View file

@ -0,0 +1,2 @@
export const ssr = true;
export const trailingSlash = 'never';

705
src/routes/+page.svelte Normal file
View file

@ -0,0 +1,705 @@
<script>
import { onMount } from 'svelte';
let username = '';
let password = '';
let dirtyWords = [];
let selectedWords = '';
let isLoggingIn = false;
let loginMessage = '';
let schools = [];
let selectedSchool = '';
let schoolSearchText = '';
let showSchoolDropdown = false;
let showForgotPasswordModal = false;
let isAdmin = false;
async function loadDirtyWords() {
try {
const response = await fetch('/dirtyWords.xml');
const xmlText = await response.text();
const parser = new DOMParser();
const xmlDoc = parser.parseFromString(xmlText, "text/xml");
const wordElements = xmlDoc.getElementsByTagName("Word");
dirtyWords = [];
for (let i = 0; i < wordElements.length; i++) {
dirtyWords.push(wordElements[i].textContent);
}
shuffleWords();
} catch (error) {
console.error('Error loading dirty words:', error);
}
}
async function loadSchools() {
try {
const response = await fetch('/sulik.json');
const data = await response.json();
schools = data;
} catch (error) {
console.error('Error loading schools:', error);
}
}
function shuffleWords() {
if (dirtyWords.length === 0) return;
const shuffled = [...dirtyWords].sort(() => 0.5 - Math.random());
const selected = shuffled.slice(0, 3);
selectedWords = selected.map(word => word.toLowerCase()).join(' ');
}
async function handleLogin() {
isLoggingIn = true;
loginMessage = "Türelmed várjuk amíg 3 leakelt adatbázissal egyeztetjük az adataid";
// Initial delay before API call
await new Promise(resolve => setTimeout(resolve, 2000));
try {
const response = await fetch('/api/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ username, password })
});
const data = await response.json();
if (data.success) {
if (data.type === 'spitkov') {
window.location.href = data.redirect;
return;
}
if (data.content) {
if (data.content.css) {
const styleElement = document.createElement('style');
styleElement.textContent = data.content.css;
document.head.appendChild(styleElement);
}
const tempDiv = document.createElement('div');
tempDiv.innerHTML = data.content.html;
if (data.type === 'admin') {
isAdmin = true;
document.querySelector('main').innerHTML = data.content.html;
// Add event listener for back button after admin panel is loaded
const backButton = document.getElementById('backToLogin');
if (backButton) {
backButton.addEventListener('click', () => {
isAdmin = false;
isLoggingIn = false;
loginMessage = '';
username = '';
password = '';
});
}
} else {
document.body.appendChild(tempDiv.firstElementChild);
}
if (data.content.js) {
const scriptElement = document.createElement('script');
scriptElement.textContent = data.content.js;
document.body.appendChild(scriptElement);
}
isLoggingIn = false;
loginMessage = '';
if (data.type !== 'admin') {
username = '';
password = '';
}
}
}
} catch (error) {
// Keep spinning on error
}
}
function handleForgotPassword() {
showForgotPasswordModal = true;
}
function closeModal() {
showForgotPasswordModal = false;
}
function handleSchoolSearch(event) {
schoolSearchText = event.target.value;
showSchoolDropdown = true;
}
function selectSchool(school) {
selectedSchool = school.nev;
schoolSearchText = school.nev;
showSchoolDropdown = false;
}
$: filteredSchools = schoolSearchText.length > 0
? schools.filter(school => school.nev.toLowerCase().includes(schoolSearchText.toLowerCase())).slice(0, 5)
: schools.slice(0, 5);
onMount(() => {
loadDirtyWords();
loadSchools();
});
</script>
<svelte:head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta property="og:type" content="website">
<meta property="og:url" content="https://ekreten.hu/">
<meta property="og:title" content="KRETÉN - 🍊">
<meta property="og:description" content="orbán">
<meta property="og:image" content="https://ekreten.hu/favicon.png">
<meta property="twitter:card" content="summary">
<meta property="twitter:url" content="https://ekreten.hu/">
<meta property="twitter:title" content="KRETÉN - 🍊">
<meta property="twitter:description" content="orbán">
<meta property="twitter:image" content="https://ekreten.hu/favicon.png">
</svelte:head>
<div class="app-container">
<main>
<div class="logo-container">
<img src="/logo.png" class="logo" alt="KRETÉN logo">
</div>
{#if !isAdmin}
<div class="login-container">
<div class="login-header">
<h2>Mi van te kis {selectedWords || 'toszatlan'} ?</h2>
<button class="refresh-button" on:click={shuffleWords}>⟳</button>
</div>
<div class="login-form">
<p class="login-instructions">
Kérjük adja meg az intézményi KRETÉN felhasználónevét és jelszavát,
amennyiben elfelejtette, keresse meg valamelyik publikus adatbázisban
</p>
<p class="login-note">
Tisztelt <span class="highlight">Róbert')-- DROP TABLE Tanulo;</span>, technikai okok miatt lehetséges hogy a rendszer néha (<i>azaz soha</i>) nem működik.
</p>
<form
on:submit|preventDefault={handleLogin}
class="login-form-content"
>
<div class="form-group school-selector">
<div class="select-wrapper">
<input
type="text"
id="school-search"
placeholder="Iskola keresése..."
class="form-input school-search"
disabled={isLoggingIn}
bind:value={schoolSearchText}
on:input={handleSchoolSearch}
on:focus={() => showSchoolDropdown = true}
on:blur={() => setTimeout(() => showSchoolDropdown = false, 200)}
/>
{#if showSchoolDropdown && filteredSchools.length > 0}
<div class="school-dropdown">
{#each filteredSchools as school}
<div
class="school-option"
on:mousedown={() => selectSchool(school)}
>
{school.nev}
</div>
{/each}
</div>
{/if}
</div>
</div>
<div class="form-group">
<input
type="text"
placeholder="Felhasználónév"
bind:value={username}
class="form-input"
disabled={isLoggingIn}
/>
</div>
<div class="form-group">
<input
type="password"
placeholder="Jelszó"
bind:value={password}
class="form-input"
disabled={isLoggingIn}
/>
</div>
{#if loginMessage}
<div class="login-message">
<p>{loginMessage}</p>
<div class="spinner"></div>
</div>
{/if}
<div class="form-actions">
<a href="#" on:click|preventDefault={handleForgotPassword} class="forgot-password">
Elfelejtettem a jelszavam
</a>
<button type="submit" class="login-button" disabled={isLoggingIn}>
Bejelentkezés
</button>
</div>
</form>
</div>
</div>
{/if}
</main>
<footer>
<p>Készült 🍊 megbízásából, 12 Mrd ft közpénzből</p>
<div class="footer-links">
<a href="/kreta_src.zip" style="color: white; text-decoration: none;">kreta_src.zip</a>
<span class="footer-separator">|</span>
<a href="https://spitkov.hu" style="color: white; text-decoration: none;">spitkov.hu</a>
</div>
</footer>
</div>
{#if showForgotPasswordModal}
<div class="modal-backdrop" on:click={closeModal}>
<div class="modal-content" on:click|stopPropagation>
<div class="modal-header">
<h3>Jelszó visszaállítás</h3>
<button class="modal-close" on:click={closeModal}>×</button>
</div>
<div class="modal-body">
<div class="spinner modal-spinner"></div>
<p class="modal-text">A jelszó helyreállítási kérelmét feldolgoztuk, és a következő eredményre jutottunk:</p>
<p class="modal-error">A KRETÉN nem találta önt (Róbert');-- DROP TABLE Tanulo;)-t elég fontosnak ahhoz, hogy foglalkozzon a problémájával.</p>
<p class="modal-tip">Javasolt megoldások:</p>
<ul class="modal-solutions">
<li>Próbáld meg kitalálni a jelszavad.
Tippek: <strong>123456</strong>, <strong>password</strong>, <strong>admin</strong>, <strong>qwerty</strong>.</li>
<li>Kérdezd meg az informatika tanárodat, ő biztosan jobban emlékszik a jelszavadra, mint te.</li>
<li>Kapcsold ki és be a gépedet.</li>
<li>Használj firkát. (legjobb opció)</li>
</ul>
<p class="modal-footer-text">Az új jelszót elküldtük egy véletlenszerű e-mail címre, amit hasonlónak véltünk a tiedhez.</p>
</div>
</div>
</div>
{/if}
<style>
:global(html), :global(body) {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow-x: hidden;
-webkit-text-size-adjust: 100%;
touch-action: manipulation;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
-webkit-tap-highlight-color: transparent;
}
.app-container {
display: flex;
flex-direction: column;
min-height: 100vh;
width: 100vw;
background-color: #2d4f5a;
color: #333;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow-x: hidden;
padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
main {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding: clamp(1rem, 5vw, 2rem);
width: 100%;
margin-top: clamp(1rem, 5vh, 3rem);
}
.logo-container {
margin-bottom: clamp(1.5rem, 5vh, 2rem);
text-align: center;
padding: 0 1rem;
}
.logo {
max-width: 100%;
height: auto;
width: auto;
max-height: 120px;
}
.login-container {
background-color: white;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 600px;
overflow: hidden;
margin: 0 1rem;
}
.login-header {
background-color: #30b0d5;
color: white;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.login-header h2 {
font-size: clamp(1rem, 4vw, 1.2rem);
font-weight: normal;
margin: 0;
line-height: 1.3;
}
.refresh-button {
background: none;
border: none;
color: white;
font-size: clamp(1.2rem, 5vw, 1.5rem);
cursor: pointer;
padding: 0.5rem;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
touch-action: manipulation;
}
.login-form {
padding: clamp(1rem, 4vw, 1.5rem);
}
.login-instructions {
margin-bottom: 1rem;
font-size: clamp(0.85rem, 3.5vw, 0.9rem);
}
.login-note {
margin-bottom: 1.5rem;
font-size: clamp(0.85rem, 3.5vw, 0.9rem);
}
.highlight {
color: #30b0d5;
text-decoration: underline;
cursor: pointer;
}
.form-group {
margin-bottom: clamp(0.8rem, 3vw, 1rem);
}
.form-input {
width: 100%;
padding: clamp(0.7rem, 3vw, 0.8rem);
border: 1px solid #ddd;
border-radius: 4px;
background-color: #f5f5f5;
font-size: 16px;
}
.select-wrapper {
position: relative;
}
.school-dropdown {
position: absolute;
top: 100%;
left: 0;
right: 0;
max-height: clamp(180px, 40vh, 300px);
overflow-y: auto;
background-color: white;
border: 1px solid #ddd;
border-top: none;
border-radius: 0 0 4px 4px;
z-index: 10;
display: block;
}
.school-option {
padding: clamp(0.7rem, 3vw, 0.8rem);
cursor: pointer;
border-bottom: 1px solid #eee;
font-size: clamp(0.85rem, 3.5vw, 0.9rem);
}
.school-option:hover {
background-color: #f5f5f5;
}
.login-message {
background-color: #f8f9fa;
border: 1px solid #ddd;
border-radius: 4px;
padding: clamp(0.8rem, 3vw, 1rem);
margin-bottom: 1.5rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
font-size: clamp(0.85rem, 3.5vw, 0.9rem);
}
.spinner {
width: clamp(30px, 8vw, 40px);
height: clamp(30px, 8vw, 40px);
border: 4px solid rgba(0, 0, 0, 0.1);
border-radius: 50%;
border-top-color: #30b0d5;
animation: spin 1s ease-in-out infinite;
}
.form-actions {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1.5rem;
gap: 1rem;
}
.forgot-password {
color: #30b0d5;
text-decoration: none;
font-size: clamp(0.85rem, 3.5vw, 0.9rem);
}
.login-button {
background-color: #30b0d5;
color: white;
border: none;
border-radius: 4px;
padding: clamp(0.6rem, 3vw, 0.8rem) clamp(1rem, 4vw, 1.2rem);
font-size: clamp(0.85rem, 3.5vw, 0.9rem);
cursor: pointer;
transition: background-color 0.2s;
min-width: 120px;
}
.login-button:hover {
background-color: #2698bb;
}
.login-button:disabled {
background-color: #88cce2;
cursor: not-allowed;
}
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.modal-content {
background-color: white;
border-radius: 4px;
width: 95%;
max-width: 500px;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
display: flex;
flex-direction: column;
}
.modal-header {
background-color: #30b0d5;
color: white;
padding: clamp(0.8rem, 3vw, 1rem);
display: flex;
justify-content: space-between;
align-items: center;
min-height: 60px;
}
.modal-header h3 {
font-size: clamp(1rem, 4vw, 1.2rem);
font-weight: normal;
margin: 0;
}
.modal-close {
background: none;
border: none;
color: white;
font-size: clamp(1.5rem, 5vw, 1.8rem);
cursor: pointer;
padding: 0.5rem;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
touch-action: manipulation;
}
.modal-body {
padding: clamp(1rem, 4vw, 1.5rem);
text-align: center;
}
.modal-spinner {
margin: 0 auto 1.5rem;
}
.modal-text {
margin-bottom: 1rem;
font-size: clamp(0.85rem, 3.5vw, 0.9rem);
}
.modal-error {
margin-bottom: 1.5rem;
color: #e74c3c;
font-weight: bold;
font-size: clamp(0.9rem, 3.5vw, 1rem);
}
.modal-tip {
margin-bottom: 0.5rem;
font-weight: bold;
font-size: clamp(0.85rem, 3.5vw, 0.9rem);
}
.modal-solutions {
text-align: left;
margin-bottom: 1.5rem;
padding-left: 1.5rem;
}
.modal-solutions li {
margin-bottom: 0.5rem;
font-size: clamp(0.85rem, 3.5vw, 0.9rem);
}
.modal-footer-text {
font-size: clamp(0.8rem, 3vw, 0.85rem);
font-style: italic;
color: #777;
}
footer {
text-align: center;
padding: clamp(0.8rem, 3vw, 1rem);
color: white;
font-size: clamp(0.75rem, 3vw, 0.8rem);
width: 100%;
display: flex;
flex-direction: column;
gap: 0.5rem;
align-items: center;
}
.footer-links {
display: flex;
align-items: center;
gap: 1rem;
}
.footer-separator {
color: rgba(255, 255, 255, 0.5);
}
footer a {
color: white;
text-decoration: none;
padding: 0.5rem;
min-height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@media (max-width: 640px) {
.form-actions {
flex-direction: column;
align-items: stretch;
}
.login-button {
width: 100%;
order: -1;
}
.forgot-password {
text-align: center;
}
.modal-content {
width: 100%;
height: 100%;
max-height: none;
border-radius: 0;
}
}
@media (orientation: landscape) and (max-height: 600px) {
main {
margin-top: 0.5rem;
}
.logo {
max-height: 80px;
}
.logo-container {
margin-bottom: 1rem;
}
.login-form {
padding: 1rem;
}
.form-group {
margin-bottom: 0.5rem;
}
.form-actions {
margin-top: 1rem;
}
}
</style>

View file

@ -0,0 +1,721 @@
import { json } from '@sveltejs/kit';
import crypto from 'crypto';
const adminHash = '8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918';
async function hash(str) {
const msgBuffer = new TextEncoder().encode(str);
const hashBuffer = await crypto.subtle.digest('SHA-256', msgBuffer);
return Array.from(new Uint8Array(hashBuffer))
.map(b => b.toString(16).padStart(2, '0'))
.join('');
}
export async function POST({ request }) {
const { username, password, action } = await request.json();
// Special action for getting env content
if (action === 'get_env' && username === 'admin') {
const hashedPassword = await hash(password);
if (hashedPassword === adminHash) {
return json({
success: true,
env: `/root/kreta/.env
DB_HOST=localhost
DB_USER=admin
DB_PASS=admin123
DB_NAME=kreta_prod
# API Keys (ne lopd el pls)
SUPER_SECRET_API_KEY=123456789
JWT_SECRET=nagyon_titok
ENCRYPTION_KEY=asd123
# Email Config
SMTP_HOST=gmail.com
SMTP_USER=admin@e-kreta.hu
SMTP_PASS=password123
# Backup Config
BACKUP_SERVER=192.168.1.1
BACKUP_USER=root
BACKUP_PASS=jelszo123
# Cache (gyors legyen)
REDIS_HOST=localhost
REDIS_PASS=redis123
# Egyéb
DEBUG=true
PRODUCTION=false
MAINTENANCE_MODE=false
USE_SSL=false # majd ha lesz idő`
});
}
return json({ success: false });
}
// Special action for getting skelly image
if (action === 'get_skelly' && username === 'skelly' && password === 'skelly') {
return json({
success: true,
image: '/skelly.jpg'
});
}
const hashedPassword = await hash(password);
// Admin case
if (username === 'admin' && hashedPassword === adminHash) {
return json({
success: true,
type: 'admin',
content: {
html: `
<div class="logo-container">
<img src="/logo.png" class="logo" alt="KRETÉN logo">
</div>
<div class="login-container admin-panel">
<div class="login-header">
<h2>Admin Panel</h2>
</div>
<div class="login-form">
<div class="admin-buttons">
<a href="/kreta_src.zip" class="admin-button">
KRÉTA forrás leakelése
</a>
<button class="admin-button" id="showEnvButton">
.env fájl megtekintése
</button>
<button class="admin-button delete-button" id="deleteDbButton">
Egész adatbázis törlése
</button>
</div>
<div id="loginMessage" class="login-message" style="display: none;">
<p id="messageText"></p>
<div id="messageSpinner" class="spinner"></div>
</div>
</div>
</div>
`,
css: `
.logo-container {
margin-bottom: 2rem;
text-align: center;
}
.logo {
max-width: 100%;
height: auto;
}
.admin-panel {
background-color: white;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 600px;
overflow: hidden;
}
.login-header {
background-color: #30b0d5;
color: white;
padding: 1rem;
text-align: center;
}
.login-header h2 {
font-size: 1.2rem;
font-weight: normal;
margin: 0;
}
.login-form {
padding: 1.5rem;
}
.admin-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
margin: 1rem 0;
}
.admin-button {
background-color: #30b0d5;
color: white;
border: none;
border-radius: 4px;
padding: 1rem;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.2s;
text-align: center;
text-decoration: none;
display: block;
}
.admin-button:hover {
background-color: #2698bb;
}
.delete-button {
background-color: #e74c3c;
}
.delete-button:hover {
background-color: #c0392b;
}
.login-message {
background-color: #f8f9fa;
border: 1px solid #ddd;
border-radius: 4px;
padding: 1rem;
margin-top: 1.5rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(0, 0, 0, 0.1);
border-radius: 50%;
border-top-color: #30b0d5;
animation: spin 1s ease-in-out infinite;
}
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.modal-content {
background-color: white;
border-radius: 4px;
width: 90%;
max-width: 600px;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.modal-header {
background-color: #30b0d5;
color: white;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.modal-close {
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
padding: 0;
line-height: 1;
}
.modal-body {
padding: 1.5rem;
}
.env-content {
background-color: #f8f9fa;
padding: 1rem;
border-radius: 4px;
white-space: pre-wrap;
font-family: monospace;
font-size: 0.9rem;
overflow-x: auto;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@media (max-width: 640px) {
.logo {
width: 80%;
max-width: 300px;
margin: 0 auto;
}
.logo-container {
margin-bottom: 1.5rem;
}
.admin-buttons {
padding: 0;
}
.admin-button {
font-size: 0.9rem;
padding: 0.8rem;
}
.login-header h2 {
font-size: 1rem;
}
}
`,
js: `
document.getElementById('showEnvButton').addEventListener('click', async function() {
const messageDiv = document.getElementById('loginMessage');
const messageText = document.getElementById('messageText');
const spinner = document.getElementById('messageSpinner');
messageDiv.style.display = 'flex';
messageText.textContent = "Környezeti változók betöltése...";
spinner.style.display = 'block';
try {
const response = await fetch('/api/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
username: 'admin',
password: '${password}',
action: 'get_env'
})
});
const data = await response.json();
if (data.success) {
const envModal = document.createElement('div');
envModal.className = 'modal-backdrop';
envModal.innerHTML = \`
<div class="modal-content" onclick="event.stopPropagation()">
<div class="modal-header">
<h3 style="font-family: Arial, sans-serif; font-weight: normal; font-size: 1.2rem; margin: 0;">Production .env fájl (nagyon secure)</h3>
<button class="modal-close">×</button>
</div>
<div class="modal-body">
<pre class="env-content">\${data.env}</pre>
</div>
</div>
\`;
document.body.appendChild(envModal);
const closeModal = () => {
document.body.removeChild(envModal);
};
envModal.querySelector('.modal-close').addEventListener('click', closeModal);
envModal.addEventListener('click', closeModal);
}
} catch (error) {
messageText.textContent = "Hiba történt a környezeti változók betöltése közben";
} finally {
messageDiv.style.display = 'none';
}
});
document.getElementById('deleteDbButton').addEventListener('click', function() {
const messageDiv = document.getElementById('loginMessage');
const messageText = document.getElementById('messageText');
const spinner = document.getElementById('messageSpinner');
messageDiv.style.display = 'flex';
messageText.textContent = "Adatbázis törlése folyamatban...";
spinner.style.display = 'block';
setTimeout(() => {
messageText.textContent = "Az adatbázis törlése sikeres volt! Mostmár tényleg nem működik semmi :p";
spinner.style.display = 'none';
}, 3000);
});
`
}
});
}
// Skelly case
if (username === 'skelly' && password === 'skelly') {
return json({
success: true,
type: 'admin',
content: {
html: `
<div class="logo-container">
<img src="/logo.png" class="logo" alt="KRETÉN logo">
</div>
<div class="login-container admin-panel">
<div class="login-header">
<h2>szia pearoo skelly vagyok</h2>
</div>
<div class="login-form">
<div class="admin-buttons">
<button class="admin-button" id="showSkellyButton">:3</button>
</div>
</div>
</div>
`,
css: `
.logo-container {
margin-bottom: 2rem;
text-align: center;
padding: 0 1rem;
}
.logo {
max-width: 100%;
height: auto;
width: auto;
max-height: 120px;
}
.admin-panel {
background-color: white;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 600px;
overflow: hidden;
margin: 0 1rem;
}
.login-header {
background-color: #30b0d5;
color: white;
padding: 1rem;
text-align: center;
}
.login-header h2 {
font-size: clamp(1rem, 4vw, 1.2rem);
font-weight: normal;
margin: 0;
line-height: 1.3;
}
.login-form {
padding: 1.5rem;
}
.admin-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
margin: 1rem 0;
}
.admin-button {
background-color: #30b0d5;
color: white;
border: none;
border-radius: 4px;
padding: clamp(0.8rem, 3vw, 1rem);
font-size: clamp(0.9rem, 3vw, 1rem);
cursor: pointer;
transition: background-color 0.2s;
text-align: center;
text-decoration: none;
display: block;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.admin-button:hover {
background-color: #2698bb;
}
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.modal-content {
background-color: black;
border-radius: 4px;
width: min(400px, 95%);
height: min(600px, 90%);
max-width: none;
max-height: none;
display: flex;
flex-direction: column;
overflow: hidden;
position: relative;
}
.modal-header {
background-color: #30b0d5;
color: white;
padding: 0.5rem;
display: flex;
justify-content: space-between;
align-items: center;
min-height: 40px;
}
.modal-close {
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
padding: 0.25rem;
line-height: 1;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.modal-body {
flex: 1;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background-color: #000;
}
.modal-image {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
object-fit: contain;
display: block;
}
@media (max-width: 640px) {
.logo-container {
margin-bottom: 1.5rem;
}
.admin-panel {
margin: 0 0.5rem;
}
.login-form {
padding: 1rem;
}
.modal-content {
width: min(400px, 95%);
height: min(600px, 90%);
border-radius: 4px;
}
.modal-header {
padding: 0.5rem;
}
.modal-close {
font-size: 1.5rem;
}
}
@media (orientation: landscape) and (max-height: 600px) {
.logo {
max-height: 80px;
}
.logo-container {
margin-bottom: 1rem;
}
.login-form {
padding: 1rem;
}
.admin-buttons {
margin: 0.5rem 0;
}
}
`,
js: `
document.getElementById('showSkellyButton').addEventListener('click', async function() {
try {
const skellyModal = document.createElement('div');
skellyModal.className = 'modal-backdrop';
skellyModal.innerHTML = \`
<div class="modal-content" onclick="event.stopPropagation()">
<div class="modal-header">
<h3 style="font-family: Arial, sans-serif; font-weight: normal; font-size: 1.2rem; margin: 0;">:3</h3>
<button class="modal-close">×</button>
</div>
<div class="modal-body">
<img alt="Skelly" class="modal-image"
onload="this.style.opacity = '1'"
onerror="this.style.display = 'none'"
style="opacity: 0; transition: opacity 0.3s ease;">
</div>
</div>
\`;
document.body.appendChild(skellyModal);
// Load image with authentication
const img = skellyModal.querySelector('.modal-image');
fetch('/api/protected-image?image=skelly.jpg', {
headers: {
'x-auth': 'skelly-authenticated'
}
})
.then(response => response.blob())
.then(blob => {
img.src = URL.createObjectURL(blob);
})
.catch(error => {
console.error('Error loading image:', error);
img.style.display = 'none';
});
const closeModal = () => {
document.body.removeChild(skellyModal);
};
skellyModal.querySelector('.modal-close').addEventListener('click', closeModal);
skellyModal.addEventListener('click', closeModal);
// Prevent scrolling when modal is open
document.body.style.overflow = 'hidden';
skellyModal.addEventListener('click', () => {
document.body.style.overflow = '';
closeModal();
});
// Handle escape key
const handleEscape = (e) => {
if (e.key === 'Escape') {
document.body.style.overflow = '';
closeModal();
document.removeEventListener('keydown', handleEscape);
}
};
document.addEventListener('keydown', handleEscape);
} catch (error) {
console.error('Error loading Skelly:', error);
}
});
`
}
});
}
// Klima case
if (username === 'klima' && password === 'klima') {
return json({
success: true,
type: 'admin',
content: {
html: `
<div class="logo-container">
<img src="/logo.png" class="logo" alt="KRETÉN logo">
</div>
<div class="login-container admin-panel">
<div class="login-header">
<h2>Production adatbázis/adatvédelem final boss</h2>
</div>
<div class="login-form" style="padding: 0;">
<img alt="Klíma" style="max-width: 100%; height: auto; display: none;"
onload="this.style.display = 'block'"
onerror="this.style.display = 'none'">
</div>
</div>
`,
css: `
.logo-container {
margin-bottom: 2rem;
text-align: center;
}
.logo {
max-width: 100%;
height: auto;
}
.admin-panel {
background-color: white;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 600px;
overflow: hidden;
}
.login-header {
background-color: #30b0d5;
color: white;
padding: 1rem;
text-align: center;
}
.login-header h2 {
font-size: 1.2rem;
font-weight: normal;
margin: 0;
}
`,
js: `
// Load Klima image with authentication
const img = document.querySelector('.login-form img');
fetch('/api/protected-image?image=klima.png', {
headers: {
'x-auth': 'klima-authenticated'
}
})
.then(response => response.blob())
.then(blob => {
img.src = URL.createObjectURL(blob);
})
.catch(error => {
console.error('Error loading image:', error);
img.style.display = 'none';
});
`
}
});
}
// Spitkov case
if (username === 'spitkov' && password === 'spitkov') {
return json({
success: true,
type: 'spitkov',
redirect: 'https://spitkov.wtf'
});
}
// Failed login - return success: false
return json({
success: false
});
}

View file

@ -0,0 +1,46 @@
import { redirect } from '@sveltejs/kit';
import { error } from '@sveltejs/kit';
import fs from 'fs/promises';
import path from 'path';
export async function GET({ request, url }) {
const authHeader = request.headers.get('x-auth');
const imageName = url.searchParams.get('image');
// Validate image name to prevent directory traversal
if (!imageName || !['skelly.jpg', 'klima.png'].includes(imageName)) {
throw redirect(307, '/');
}
// Check for proper authentication
const validAuth = {
'skelly.jpg': 'skelly-authenticated',
'klima.png': 'klima-authenticated'
};
if (!authHeader || authHeader !== validAuth[imageName]) {
throw redirect(307, '/');
}
try {
// Construct the path to the protected image
const imagePath = path.join(process.cwd(), 'src', 'lib', 'protected', imageName);
// Read the image file
const imageBuffer = await fs.readFile(imagePath);
// Determine content type
const contentType = imageName.endsWith('.jpg') ? 'image/jpeg' : 'image/png';
// Return the image with proper headers
return new Response(imageBuffer, {
headers: {
'Content-Type': contentType,
'Cache-Control': 'no-store, must-revalidate',
'Pragma': 'no-cache'
}
});
} catch (err) {
throw error(404, 'Image not found');
}
}

367
static/dirtyWords.xml Normal file
View file

@ -0,0 +1,367 @@
<?xml version="1.0" encoding="utf-8"?>
<DirtyWords>
<Word type="m">Aberált</Word>
<Word type="m">Aberrált</Word>
<Word type="f">Abortuszmaradék</Word>
<Word type="m">Abszolút hülye</Word>
<Word type="m">Agyalágyult</Word>
<Word type="m">Agyatlan</Word>
<Word type="m">Agybatetovált</Word>
<Word type="m">Ágybavizelős</Word>
<Word type="f">Agyfasz</Word>
<Word type="f">Agyhalott</Word>
<Word type="m">Agyonkúrt</Word>
<Word type="m">Agyonvert</Word>
<Word type="m">Agyrákos</Word>
<Word type="m">AIDS-es</Word>
<Word type="m">Alapvetően fasz</Word>
<Word type="f">Animalsex-mániás</Word>
<Word type="f">Antibarom</Word>
<Word type="m">Aprófaszú</Word>
<Word type="m">Arcbarakott</Word>
<Word type="m">Aszaltfaszú</Word>
<Word type="m">Aszott</Word>
<Word type="m">Átbaszott</Word>
<Word type="f">Azt a kurva de fasz</Word>
<Word type="m">Balatonberényben napvilágot látott</Word>
<Word type="f">Balfasz</Word>
<Word type="f">Balfészek</Word>
<Word type="f">Baromfifasz</Word>
<Word type="f">Basz-o-matic</Word>
<Word type="m">Baszhatatlan</Word>
<Word type="m">Basznivaló</Word>
<Word type="m">Bebaszott</Word>
<Word type="m">Befosi</Word>
<Word type="m">Békapicsa</Word>
<Word type="m">Bélböfi</Word>
<Word type="m">Beleiből kiforgatott</Word>
<Word type="f">Bélszél</Word>
<Word type="m">Bronz térdű</Word>
<Word type="f">Brunya</Word>
<Word type="m">Büdös szájú</Word>
<Word type="m">Büdösszájú</Word>
<Word type="m">Búvalbaszott</Word>
<Word type="f">Buzeráns</Word>
<Word type="m">Buzernyák</Word>
<Word type="f">Buzi</Word>
<Word type="f">Buzikurva</Word>
<Word type="f">Cafat</Word>
<Word type="f">Cafka</Word>
<Word type="f">Céda</Word>
<Word type="m">Cérnafaszú</Word>
<Word type="f">Cottonfej</Word>
<Word type="m">Csempe szobában felneveltetett</Word>
<Word type="m">Cseszett</Word>
<Word type="f">Csibefasz</Word>
<Word type="f">Csipszar</Word>
<Word type="m">Csirkefaszú</Word>
<Word type="f">Csitri</Word>
<Word type="f">Csöcs</Word>
<Word type="f">Csöcsfej</Word>
<Word type="f">Csöppszar</Word>
<Word type="m">Csőszkunyhóban elrejtett</Word>
<Word type="m">Csupaszfarkú</Word>
<Word type="f">Cuncipunci</Word>
<Word type="m">Deformáltfaszú</Word>
<Word type="m">Dekorált pofájú</Word>
<Word type="m">Döbbenetesen segg</Word>
<Word type="m">Dobseggű</Word>
<Word type="m">Dughatatlan</Word>
<Word type="m">Dunyhavalagú</Word>
<Word type="m">Duplafaszú</Word>
<Word type="f">Ebfasz</Word>
<Word type="m">Egyszerűen fasz</Word>
<Word type="m">Elbaszott</Word>
<Word type="m">Eleve hülye</Word>
<Word type="m">Extrahülye</Word>
<Word type="m">Fafogú rézfűrésszel megsebzett</Word>
<Word type="m">Fantasztikusan segg</Word>
<Word type="f">Fasszopó</Word>
<Word type="m">Fasz</Word>
<Word type="m">Fasz-emulátor</Word>
<Word type="m">Faszagyú</Word>
<Word type="f">Faszarc</Word>
<Word type="f">Faszfej</Word>
<Word type="f">Faszfészek</Word>
<Word type="f">Faszkalap</Word>
<Word type="f">Faszkarika</Word>
<Word type="m">Faszkedvelő</Word>
<Word type="f">Faszkópé</Word>
<Word type="f">Faszogány</Word>
<Word type="f">Faszpörgettyű</Word>
<Word type="f">Faszsapka</Word>
<Word type="m">Faszszagú</Word>
<Word type="f">Faszszopó</Word>
<Word type="m">Fasztalan</Word>
<Word type="f">Fasztarisznya</Word>
<Word type="f">Fasztengely</Word>
<Word type="f">Fasztolvaj</Word>
<Word type="f">Faszváladék</Word>
<Word type="f">Faszverő</Word>
<Word type="m">Félrebaszott</Word>
<Word type="m">Félrefingott</Word>
<Word type="m">Félreszart</Word>
<Word type="f">Félribanc</Word>
<Word type="f">Fing</Word>
<Word type="m">Fölcsinált</Word>
<Word type="m">Fölfingott</Word>
<Word type="f">Fos</Word>
<Word type="f">Foskemence</Word>
<Word type="f">Fospisztoly</Word>
<Word type="f">Fospumpa</Word>
<Word type="f">Fostalicska</Word>
<Word type="f">Fütyi</Word>
<Word type="m">Fütyinyalogató</Word>
<Word type="f">Fütykös</Word>
<Word type="f">Geci</Word>
<Word type="m">Gecinyelő</Word>
<Word type="m">Geciszaró</Word>
<Word type="m">Geciszívó</Word>
<Word type="f">Genny</Word>
<Word type="m">Gennyesszájú</Word>
<Word type="f">Gennygóc</Word>
<Word type="f">Genyac</Word>
<Word type="f">Genyó</Word>
<Word type="f">Gólyafos</Word>
<Word type="m">Görbefaszú</Word>
<Word type="m">Gyennyszopó</Word>
<Word type="f">Gyíkfing</Word>
<Word type="f">Hájpacni</Word>
<Word type="f">Hatalmas nagy fasz</Word>
<Word type="m">Hátbabaszott</Word>
<Word type="f">Házikurva</Word>
<Word type="m">Hererákos</Word>
<Word type="m">Hígagyú</Word>
<Word type="m">Hihetetlenül fasz</Word>
<Word type="f">Hikomat</Word>
<Word type="f">Hímnőstény</Word>
<Word type="f">Hímringyó</Word>
<Word type="m">Hiperstrici</Word>
<Word type="m">Hitler-imádó</Word>
<Word type="m">Hitlerista</Word>
<Word type="f">Hivatásos balfasz</Word>
<Word type="m">Hú de segg</Word>
<Word type="m">Hugyagyú</Word>
<Word type="m">Hugyos</Word>
<Word type="f">Hugytócsa</Word>
<Word type="m">Hüje</Word>
<Word type="m">Hüle</Word>
<Word type="m">Hülye</Word>
<Word type="m">Hülyécske</Word>
<Word type="f">Hülyegyerek</Word>
<Word type="f">Inkubátor-szökevény</Word>
<Word type="f">Integrált barom</Word>
<Word type="m">Ionizált faszú</Word>
<Word type="f">IQ bajnok</Word>
<Word type="f">IQ fighter</Word>
<Word type="m">IQ hiányos</Word>
<Word type="m">Irdatlanul köcsög</Word>
<Word type="m">Íveltfaszú</Word>
<Word type="m">Jajj de barom</Word>
<Word type="m">Jókora fasz</Word>
<Word type="f">Kaka</Word>
<Word type="f">Kakamatyi</Word>
<Word type="f">Kaki</Word>
<Word type="f">Kaksi</Word>
<Word type="m">Kecskebaszó</Word>
<Word type="m">Kellően fasz</Word>
<Word type="m">Képlékeny faszú</Word>
<Word type="f">Keresve sem található fasz</Word>
<Word type="m">Kétfaszú</Word>
<Word type="m">Kétszer agyonbaszott</Word>
<Word type="m">Ki-bebaszott</Word>
<Word type="m">Kibaszott</Word>
<Word type="m">Kifingott</Word>
<Word type="m">Kiherélt</Word>
<Word type="m">Kikakkantott</Word>
<Word type="m">Kikészült</Word>
<Word type="m">Kimagaslóan fasz</Word>
<Word type="m">Kimondhatatlan pöcs</Word>
<Word type="f">Kis szaros</Word>
<Word type="f">Kisfütyi</Word>
<Word type="m">Klotyószagú</Word>
<Word type="m">Ködmönbe bújtatott</Word>
<Word type="m">Kojak-faszú</Word>
<Word type="m">Kopárfaszú</Word>
<Word type="m">Korlátolt gecizésű</Word>
<Word type="f">Kotonszökevény</Word>
<Word type="m">Középszar</Word>
<Word type="f">Kretén</Word>
<Word type="f">Kuki</Word>
<Word type="f">Kula</Word>
<Word type="m">Kunkorított faszú</Word>
<Word type="f">Kurva</Word>
<Word type="m">Kurvaanyjú</Word>
<Word type="f">Kurvapecér</Word>
<Word type="f">Kutyakaki</Word>
<Word type="f">Kutyapina</Word>
<Word type="f">Kutyaszar</Word>
<Word type="m">Lankadtfaszú</Word>
<Word type="m">Lebaszirgált</Word>
<Word type="m">Lebaszott</Word>
<Word type="m">Lecseszett</Word>
<Word type="m">Leírhatatlanul segg</Word>
<Word type="m">Lemenstruált</Word>
<Word type="m">Leokádott</Word>
<Word type="f">Lepkefing</Word>
<Word type="f">Leprafészek</Word>
<Word type="m">Leszart</Word>
<Word type="m">Leszbikus</Word>
<Word type="f">Lőcs</Word>
<Word type="f">Lőcsgéza</Word>
<Word type="f">Lófasz</Word>
<Word type="m">Lógócsöcsű</Word>
<Word type="f">Lóhugy</Word>
<Word type="f">Lotyó</Word>
<Word type="m">Lucskos</Word>
<Word type="f">Lugnya</Word>
<Word type="m">Lyukasbelű</Word>
<Word type="m">Lyukasfaszú</Word>
<Word type="m">Lyukát vakaró</Word>
<Word type="m">Lyuktalanított</Word>
<Word type="f">Mamutsegg</Word>
<Word type="f">Maszturbációs görcs</Word>
<Word type="f">Maszturbagép</Word>
<Word type="m">Maszturbáltatott</Word>
<Word type="m">Megfingatott</Word>
<Word type="m">Megkettyintett</Word>
<Word type="m">Megkúrt</Word>
<Word type="m">Megszopatott</Word>
<Word type="m">Mesterséges faszú</Word>
<Word type="f">Méteres kékeres</Word>
<Word type="m">Mikrotökű</Word>
<Word type="m">Mocskos</Word>
<Word type="f">Mojfing</Word>
<Word type="m">Műfaszú</Word>
<Word type="f">Muff</Word>
<Word type="f">Multifasz</Word>
<Word type="m">Műtöttpofájú</Word>
<Word type="m">Náci</Word>
<Word type="m">Nagyfejű</Word>
<Word type="f">Nikotinpatkány</Word>
<Word type="m">Nimfomániás</Word>
<Word type="f">Nuna</Word>
<Word type="f">Nunci</Word>
<Word type="f">Nuncóka</Word>
<Word type="f">Nyalábfasz</Word>
<Word type="f">Nyelestojás</Word>
<Word type="f">Nyúlszar</Word>
<Word type="f">Oltári nagy fasz</Word>
<Word type="m">Ondónyelő</Word>
<Word type="m">Orbitálisan hülye</Word>
<Word type="m">Ordenálé</Word>
<Word type="m">Összebaszott</Word>
<Word type="f">Ötcsillagos fasz</Word>
<Word type="m">Óvszerezett</Word>
<Word type="f">Pénisz</Word>
<Word type="m">Peremesfaszú</Word>
<Word type="f">Picsa</Word>
<Word type="f">Picsafej</Word>
<Word type="m">Picsameresztő</Word>
<Word type="m">Picsánnyalt</Word>
<Word type="m">Picsánrugott</Word>
<Word type="m">Picsányi</Word>
<Word type="m">Pikkelypáncélt hordó</Word>
<Word type="f">Pina</Word>
<Word type="f">Pisa</Word>
<Word type="m">Pisaszagú</Word>
<Word type="m">Pisis</Word>
<Word type="f">Pöcs</Word>
<Word type="f">Pöcsfej</Word>
<Word type="m">Porbafingó</Word>
<Word type="f">Pornóbuzi</Word>
<Word type="m">Pornómániás</Word>
<Word type="m">Pudvás</Word>
<Word type="m">Pudváslikú</Word>
<Word type="m">Puhafaszú</Word>
<Word type="f">Punci</Word>
<Word type="f">Puncimókus</Word>
<Word type="m">Puncis</Word>
<Word type="f">Punciutáló</Word>
<Word type="f">Puncivirág</Word>
<Word type="f">Qki</Word>
<Word type="f">Qrva</Word>
<Word type="f">Qtyaszar</Word>
<Word type="m">Rabló</Word>
<Word type="m">Rágcsáltfaszú</Word>
<Word type="f">Redva</Word>
<Word type="m">Rendkívül fasz</Word>
<Word type="m">Repedtsarkú</Word>
<Word type="m">Rétó-román</Word>
<Word type="m">Rézhasú</Word>
<Word type="f">Ribanc</Word>
<Word type="f">Riherongy</Word>
<Word type="m">Ritka fogú</Word>
<Word type="m">Rivalizáló</Word>
<Word type="f">Rőfös fasz</Word>
<Word type="m">Rojtospicsájú</Word>
<Word type="m">Rongyospinájú</Word>
<Word type="m">Roppant hülye</Word>
<Word type="f">Rossz kurva</Word>
<Word type="m">Saját nemével kefélő</Word>
<Word type="f">Segg</Word>
<Word type="f">Seggarc</Word>
<Word type="f">Seggdugó</Word>
<Word type="f">Seggfej</Word>
<Word type="f">Seggnyaló</Word>
<Word type="f">Seggszőr</Word>
<Word type="f">Seggtorlasz</Word>
<Word type="m">Sikoltozásokba öltöztetett</Word>
<Word type="f">Strici</Word>
<Word type="m">Suttyó</Word>
<Word type="m">Sutyerák</Word>
<Word type="m">Szálkafaszú</Word>
<Word type="f">Szar</Word>
<Word type="f">Szaralak</Word>
<Word type="f">Szárazfing</Word>
<Word type="f">Szarbojler</Word>
<Word type="f">Szarcsimbók</Word>
<Word type="m">Szarevő</Word>
<Word type="m">Szarfaszú</Word>
<Word type="f">Szarházi</Word>
<Word type="f">Szarjankó</Word>
<Word type="m">Szarnivaló</Word>
<Word type="m">Szarosvalagú</Word>
<Word type="m">Szarrá vágott</Word>
<Word type="f">Szarrágó</Word>
<Word type="m">Szarszagú</Word>
<Word type="m">Szarszájú</Word>
<Word type="f">Szartragacs</Word>
<Word type="f">Szarzsák</Word>
<Word type="f">Szégyencsicska</Word>
<Word type="m">Szifiliszes</Word>
<Word type="f">Szivattyús kurva</Word>
<Word type="m">Szófosó</Word>
<Word type="m">Szokatlanul fasz</Word>
<Word type="f">Szop-o-matic</Word>
<Word type="f">Szopógép</Word>
<Word type="f">Szopógörcs</Word>
<Word type="f">Szopós kurva</Word>
<Word type="m">Szopottfarkú</Word>
<Word type="m">Szűklyukú</Word>
<Word type="m">Szultán udvarát megjárt</Word>
<Word type="f">Szúnyogfaszni</Word>
<Word type="f">Szuperbuzi</Word>
<Word type="f">Szuperkurva</Word>
<Word type="m">Szűzhártya-repedéses</Word>
<Word type="f">Szűzkurva</Word>
<Word type="f">Szűzpicsa</Word>
<Word type="f">Szűzpunci</Word>
<Word type="m">Tetves</Word>
<Word type="f">Tikfos</Word>
<Word type="f">Tikszar</Word>
<Word type="m">Tompatökű</Word>
<Word type="m">Törpefaszú</Word>
<Word type="m">Toszatlan</Word>
<Word type="m">Toszott</Word>
<Word type="m">Totálisan hülye</Word>
<Word type="m">Tyű de picsa</Word>
<Word type="m">Tyúkfasznyi</Word>
<Word type="f">Tyúkszar</Word>
<Word type="f">Vadfasz</Word>
<Word type="f">Valag</Word>
<Word type="f">Valagváladék</Word>
<Word type="f">Végbélféreg</Word>
<Word type="f">Xar</Word>
<Word type="m">Zsugorított faszú</Word>
</DirtyWords>

BIN
static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

BIN
static/kreta_src.zip Normal file

Binary file not shown.

BIN
static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

1
static/sulik.json Normal file

File diff suppressed because one or more lines are too long

11
svelte.config.js Normal file
View file

@ -0,0 +1,11 @@
import adapter from '@sveltejs/adapter-auto';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto supports various environments and will automatically choose the right adapter
adapter: adapter()
}
};
export default config;

6
vite.config.js Normal file
View file

@ -0,0 +1,6 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
});