📋 Mission Briefing
A suspicious actor has been detected with access to NexaCorp's internal MySQL database server. Your assignment: connect to the live database as a limited-privilege analyst account and locate all 14 hidden flags embedded throughout the data.
Each flag follows the format: FLAG{...}
You will need SELECT queries, JOINs, aggregation, schema inspection, stored procedures, and data decoding techniques. This is a real MySQL server — your queries run live against actual data.
🔌 Connection Parameters
Host173.255.198.113
Port3306
Usernamectf_student
PasswordCyberPath2025!
Databasectf_corp
Connect from your Kali VM:
mysql -h 173.255.198.113 -u ctf_student -p --skip-ssl ctf_corp
Overall Progress
0 / 14 flags captured
Rules of Engagement
| Rule | Details |
|---|---|
| Account Access | Use only the ctf_student account provided. Do not attempt to escalate privileges on the server itself. |
| Allowed Operations | SELECT queries, CALL (stored procedures), SHOW, DESCRIBE, and INFORMATION_SCHEMA queries only. |
| Flag Format | All flags follow the pattern FLAG{...}. Copy the exact string from your query result and paste it into the flag submission box. |
| Hints | Each challenge has a hint button. Use hints if you are stuck — there is no penalty. |
| Submission | When all 14 flags are captured, take a screenshot of this page and submit it to the LMS as your lab deliverable. |