IT Infrastructure Specialist · Cloud & Azure Enter your company name to unlock the candidate CV.
☁ Cipher Challenge
Crack the Code
Decode the transmission below to unlock Ephraim's CV.
⚿ Caesar Cipher
Intercepted transmission
H Q T Z I
Encoding: Caesar cipher ·
Shift: ??? ·
Length: 5 chars
Python reference — decode it yourself:
# Caesar cipher decoderdef decode(text, shift):
result = ""for ch in text:
if ch.isalpha():
result += chr((ord(ch) - ord('A') - shift) % 26 + ord('A'))
return result
# Try: decode("HQTZI", ???)
The answer is something every cloud engineer works with daily — it's what Azure, AWS and GCP all have in common. It's also the keyword in Ephraim's own CV profile. Try shifting each letter backwards by 5 in the alphabet. H→C, Q→L, T→O...
Attempts: 0
☁ Access Granted
☁
Cipher cracked · Access granted
You decoded HQTZI → CLOUD
Ephraim's CV is downloading now.