Made app more modular.
Fixed some bugs. Added some functionality.
This commit is contained in:
13
constants.ts
13
constants.ts
@@ -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: []
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user