Programming Level 3 80 points

Python Automation - Custom Cipher Decryption

Mission

cipher.txt holds the flag encrypted with a custom cipher (hex). Encryption applies per byte: add (key), xor (position-dependent), rotl (bit rotation). Implement the inverse in Python to recover the flag (run python3 challenge.py for the full spec).

#programming#python#crypto#bitwise

Clear it in 3 steps

Not started
  1. Start the environment

  2. Investigate the target

  3. Submit the flag