Made app more modular.

Fixed some bugs.
Added some functionality.
This commit is contained in:
m0rph3us1987
2026-01-21 18:59:14 +01:00
parent 5802b80d61
commit 40f496c3f2
18 changed files with 1709 additions and 1535 deletions

View File

@@ -11,9 +11,10 @@ export const INITIAL_CHALLENGES: Challenge[] = [
category: 'REV',
difficulty: 'Low',
description: 'The sound of the future is encrypted. Can you find the melody?',
initialPoints: 100,
initialPoints: 500,
minimumPoints: 100,
decaySolves: 20,
flag: 'CTF{view_source_is_key}',
// Fix: Added missing 'files' property
files: [],
solves: []
},
@@ -23,9 +24,10 @@ export const INITIAL_CHALLENGES: Challenge[] = [
category: 'MSC',
difficulty: 'Medium',
description: 'Wait, this shellcode looks like a poem...',
initialPoints: 300,
initialPoints: 500,
minimumPoints: 100,
decaySolves: 20,
flag: 'CTF{xor_is_not_encryption}',
// Fix: Added missing 'files' property
files: [],
solves: []
},
@@ -36,8 +38,9 @@ export const INITIAL_CHALLENGES: Challenge[] = [
difficulty: 'High',
description: 'Anxious math leads to anxious flags.',
initialPoints: 500,
minimumPoints: 100,
decaySolves: 20,
flag: 'CTF{worrier_not_warrior}',
// Fix: Added missing 'files' property
files: [],
solves: []
}