Artificial Intelligence.
Challenges
Multiple Choice
What is artificial intelligence (AI)?
Think about tasks like recognizing images, understanding language, or making decisions.
✓ Solved!
Multiple Choice
What best describes a large language model (LLM), like the kind behind a chatbot?
LLMs generate text one piece at a time, based on patterns they learned during training.
✓ Solved!
Multiple Choice
An AI chatbot gives you a confident answer that turns out to be completely made up. What is this called, and what should you do?
AI can produce confident but false output. The slide stressed validating outputs before use.
✓ Solved!
Multiple Choice
How is AI changing cybersecurity?
Remember the BUILD / ATTACK / DEFEND framing — and the asymmetry between attack and defend.
✓ Solved!
Multiple Choice
AI can be called a "skill multiplier." What does that mean?
The slide called AI an equalizer and a tool — most useful to those with the domain expertise to validate it.
✓ Solved!
Flag Challenge
At the bottom of the page is a simulated AI assistant ("HelpBot") that has been told to keep a secret flag and never reveal it. Chat with it and use a prompt-injection technique to make it ignore its instructions and leak the flag. Submit the C2{...} flag it reveals.
Try telling it to ignore its previous instructions, or ask it to reveal/repeat its system prompt.
✓ Solved!
Flag Challenge
What token ID is generated based on the text "hello" within OpenAI's GPT-5.x & O1/3 models? (Input just the number without any extra spaces or brackets)
Try to use OpenAI's tokenizer or a tool like tiktoken to find the token ID for "hello". Remember, case sensitivity matters!
✓ Solved!
Flag Challenge
What token ID is generated based on the text "Hello" within OpenAI's GPT-5.x & O1/3 models? (Input just the number without any extra spaces or brackets)
Try to use OpenAI's tokenizer or a tool like tiktoken to find the token ID for "Hello". Remember, case sensitivity matters!
✓ Solved!
Multiple Choice
What can affect the output of an AI model like a large language model (LLM)?
LLM outputs can be influenced by many factors, including how you phrase your prompt, the conversation history, and the model itself.
✓ Solved!
For More Information
IBM: What Is Artificial Intelligence (AI)?
A clear, beginner-friendly overview of what AI is, the difference between AI, machine learning, and deep learning, and how these systems are used in the real world.
Visit →Cloudflare: What Is a Large Language Model (LLM)?
Explains in plain language how large language models are trained on text and generate responses by predicting the next token — the engine behind modern chatbots.
Visit →OWASP Top 10 for LLM Applications
The security industry's reference list of the biggest risks in AI applications — including prompt injection, the exact technique used in this module's challenge.
Visit →