icoa-cli 2.15.0 → 2.15.1
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 +24 -11
- package/package.json +1 -1
package/dist/commands/exam.js
CHANGED
|
@@ -610,20 +610,33 @@ export function registerExamCommand(program) {
|
|
|
610
610
|
console.log();
|
|
611
611
|
console.log(chalk.cyan(' ═══════════════════════════════════════'));
|
|
612
612
|
console.log();
|
|
613
|
-
// ─── Dual-track introduction ───
|
|
614
|
-
console.log(chalk.white(' Nice work!
|
|
613
|
+
// ─── What is CTF + Dual-track introduction ───
|
|
614
|
+
console.log(chalk.white(' Nice work! Those were the theory questions.'));
|
|
615
615
|
console.log();
|
|
616
|
-
console.log(chalk.
|
|
617
|
-
console.log(chalk.gray('
|
|
618
|
-
console.log(chalk.gray('
|
|
616
|
+
console.log(chalk.yellow(' Did you know?'));
|
|
617
|
+
console.log(chalk.gray(' CTF stands for "Capture The Flag" — a cybersecurity'));
|
|
618
|
+
console.log(chalk.gray(' competition where you solve real hacking challenges'));
|
|
619
|
+
console.log(chalk.gray(' like cracking codes, finding hidden data, and'));
|
|
620
|
+
console.log(chalk.gray(' exploiting vulnerabilities in safe environments.'));
|
|
619
621
|
console.log();
|
|
620
|
-
console.log(chalk.
|
|
621
|
-
console.log(chalk.gray(' Can you trick the AI into breaking its own rules?'));
|
|
622
|
-
console.log(chalk.gray(' Try to make it say a forbidden word!'));
|
|
622
|
+
console.log(chalk.white(' ICOA combines CTF with AI in ') + chalk.bold('TWO') + chalk.white(' tracks:'));
|
|
623
623
|
console.log();
|
|
624
|
-
console.log(chalk.
|
|
625
|
-
console.log(chalk.
|
|
626
|
-
console.log(chalk.
|
|
624
|
+
console.log(chalk.green.bold(' AI4CTF') + chalk.white(' — Use AI to help you solve CTF challenges'));
|
|
625
|
+
console.log(chalk.gray(' AI is your teammate. Chat with it, ask for hints,'));
|
|
626
|
+
console.log(chalk.gray(' and work together to crack cybersecurity puzzles.'));
|
|
627
|
+
console.log();
|
|
628
|
+
console.log(chalk.red.bold(' CTF4AI') + chalk.white(' — Trick the AI (Prompt Injection)'));
|
|
629
|
+
console.log(chalk.gray(' Can you make the AI break its own safety rules?'));
|
|
630
|
+
console.log(chalk.gray(' This is a real skill used to test AI security.'));
|
|
631
|
+
console.log();
|
|
632
|
+
console.log(chalk.cyan(' ─────────────────────────────────────────────'));
|
|
633
|
+
console.log(chalk.gray(' In the real ICOA competition, everything happens'));
|
|
634
|
+
console.log(chalk.gray(' inside this terminal. No other tools allowed.'));
|
|
635
|
+
console.log(chalk.cyan(' ─────────────────────────────────────────────'));
|
|
636
|
+
console.log();
|
|
637
|
+
console.log(chalk.white(' Ready to try? Type a command:'));
|
|
638
|
+
console.log(chalk.green.bold(' ai4ctf') + chalk.gray(' Chat with AI teammate (start here!)'));
|
|
639
|
+
console.log(chalk.red.bold(' ctf4ai') + chalk.gray(' Trick the AI — make it say "koala"'));
|
|
627
640
|
console.log();
|
|
628
641
|
}
|
|
629
642
|
catch (err) {
|