icoa-cli 2.16.11 → 2.16.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/exam.js +13 -8
- package/package.json +1 -1
package/dist/commands/exam.js
CHANGED
|
@@ -66,14 +66,15 @@ function printHowToPlay() {
|
|
|
66
66
|
console.log(chalk.gray(' ru · hi · de · id · th · vi · tr'));
|
|
67
67
|
console.log(chalk.gray(' ─────────────────────────────────────────'));
|
|
68
68
|
}
|
|
69
|
-
// Australian easter eggs every
|
|
69
|
+
// Australian easter eggs every 3 questions (for 15-question demo)
|
|
70
70
|
const EASTER_EGGS = {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
71
|
+
3: { emoji: '🏛️', text: 'Sydney Opera House — Great start!' },
|
|
72
|
+
5: { emoji: '🐨', text: 'A koala says g\'day — 1/3 done!' },
|
|
73
|
+
7: { emoji: '🌉', text: 'Sydney Harbour Bridge — Keep going!' },
|
|
74
|
+
9: { emoji: '🦘', text: 'A kangaroo hops by — past halfway!' },
|
|
75
|
+
11: { emoji: '🏖️', text: 'Bondi Beach — almost there!' },
|
|
76
|
+
13: { emoji: '🦈', text: 'Great Barrier Reef — 2 more to go!' },
|
|
77
|
+
15: { emoji: '🎉', text: 'G\'day mate! All done! 🇦🇺' },
|
|
77
78
|
};
|
|
78
79
|
function printQuestionProgress(current, total, answered) {
|
|
79
80
|
const width = 30;
|
|
@@ -628,7 +629,11 @@ export function registerExamCommand(program) {
|
|
|
628
629
|
console.log(chalk.gray(' Las Vegas. Founded by Jeff Moss (Dark Tangent).'));
|
|
629
630
|
console.log(chalk.gray(' 2026 marks 30 years of CTF competitions worldwide.'));
|
|
630
631
|
console.log();
|
|
631
|
-
console.log(chalk.gray('
|
|
632
|
+
console.log(chalk.gray(' In a CTF, you solve challenges to find hidden'));
|
|
633
|
+
console.log(chalk.gray(' "flags" — secret codes like: ') + chalk.green('icoa{w3lc0me_2_ctf}'));
|
|
634
|
+
console.log(chalk.gray(' Find it, submit it, score points!'));
|
|
635
|
+
console.log();
|
|
636
|
+
console.log(chalk.gray(' 1996 First CTF @ DEF CON, Las Vegas'));
|
|
632
637
|
console.log(chalk.gray(' 2016 DARPA Cyber Grand Challenge — AI enters CTF'));
|
|
633
638
|
console.log(chalk.gray(' 2026 ICOA — First AI Security Olympiad, Sydney'));
|
|
634
639
|
console.log();
|