LUCENT GRID
SQL Lab ยท Database Forensics (Hard)
Initialising...
๐Ÿ–ฅ๏ธ
SQL Terminal
๐Ÿ“š
Reference
๐Ÿ“Œ OBJECTIVES โ€” NO HINTS
โ—‹Parse audit log for suspicious time window
โ—‹Identify all DML in the 02:00-04:00 window
โ—‹Use binlog to reconstruct deleted rows
โ—‹Trace user session to specific account
โ—‹Quantify data exfiltration scope
โ—‹Recover deleted transaction records
โ—‹Produce timestamped forensic timeline
0 / 7 complete
SQL TERMINAL โ€” DATABASE FORENSICS (HARD)
MySQL 8.0 โ€” Lab environment loaded Database Forensics (Hard) โ€” Hard tier ยท No syntax hints provided โš  This lab tests independent problem-solving. Reference window available. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
mysql>
COMMAND REFERENCE
AVAILABLE COMMANDS
  • SELECT * FROM mysql.general_log WHERE event_time BETWEEN '2024-01-16 02:00:00' AND '2024-01-16 04:00:00';
  • SELECT * FROM audit_log WHERE user_host LIKE 'app_user%' AND command_type='Query' ORDER BY event_time;
  • mysqlbinlog --start-datetime='2024-01-16 02:00:00' --stop-datetime='2024-01-16 04:00:00' binlog.000012
  • SELECT * FROM information_schema.PROCESSLIST WHERE USER='app_user';
  • SELECT COUNT(*), SUM(amount) FROM transactions WHERE created_at BETWEEN '2024-01-16 02:00' AND '2024-01-16 04:00';
  • INSERT INTO transactions_recovery SELECT * FROM transactions_binlog_restore WHERE deleted_at IS NOT NULL;
Type keywords from the command list. The terminal will recognise your intent even if the exact syntax differs.
โ˜ฐ BRIEF
๐Ÿ–ฅ Terminal
๐Ÿ“š Reference
MISSION BRIEF

MISSION BRIEFING

DB FORENSICS โ€” IRONGATE FINANCIAL ยท HARD โญโญโญ

SCENARIO

A fraud investigation team suspects an insider threat at IronGate Financial. Database audit logs and binlogs show suspicious activity between 02:00 and 04:00 last Tuesday. You must parse the logs, reconstruct the exact SQL statements executed, identify which rows were modified, recover deleted records from the binlog, and produce a forensic timeline report.

OBJECTIVES

  • Parse audit log for suspicious time window
  • Identify all DML in the 02:00-04:00 window
  • Use binlog to reconstruct deleted rows
  • Trace user session to specific account
  • Quantify data exfiltration scope
  • Recover deleted transaction records
  • Produce timestamped forensic timeline

HARD MODE RULES

No step-by-step guidance. Use the Reference window for command syntax only. You must determine the approach, the correct columns and order, and verify your own results.

Display Mode
LAB COMPLETE
๐Ÿ†
MISSION ACCOMPLISHED
Database Forensics (Hard)
โšก
+175 XP
EXPERIENCE EARNED
โฌ† LEVEL UP โ€” Level
โ†’ Return to Labs