Spaces:
Sleeping
Sleeping
File size: 1,184 Bytes
80a4a65 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | {
"team_role": "red",
"module": "encryption-basics",
"title": "Caesar Cipher — CloudWave intercepted message",
"story": "موظف في CloudWave تلقى رسالة مشفرة بـ Caesar Cipher على قناة غير آمنة. مهمتك فك التشفير باستخدام مفتاح ROT-13 المخفي في الـ metadata.",
"task_outline": "افتح الملف cipher.txt ثم فك التشفير باستخدام المفتاح ROT-13 واحصل على العلم.",
"files": {
"cipher.txt": "BASE64_ENCODED_FILE_CONTENT_HERE"
},
"file_metadata": {
"cipher.txt": {"hint": "ROT-13", "size_bytes": 256}
},
"command_outputs": {
"cat cipher.txt": "Pnerqnaqn Pbrssra"
},
"hints": [
"ROT-13 يستخدم نفس الأسلوب بالإنجليزية والعربية (الحرف 13).",
"جرب الأمر: cat cipher.txt | tr 'A-Za-z' 'N-ZA-Mn-za-m'",
"العلم سيظهر بعد تطبيق الأمر الصحيح."
],
"tools_whitelist": ["python", "python3", "tr", "cat", "openssl"],
"flag_hash": "SHA256_OF_CyberArena{...}",
"flag_preview": "CyberArena{abc123def456}",
"difficulty": "متوسط",
"xp_reward": 150
}
|