Trying to solve Question 2: Create the XOR ciphertext of the password ‘opens3same’ using the key ‘academy’. (Answer format: \x00\x00\x00.…)
Step 1: python3
Step 2: from pwn import xor
Error1: Traceback (most recent call last):
File “”, line 1, in
ModuleNotFoundError: No module named ‘pwn’
Another Solution: Create Virtual Enviroment
Step 1: python3 -m venv myenv
Step 2: (Activate) source myenv/bin/activate
Step 3: (Upgrade pip) pip install --upgrade pip
Step 4: python3
Step 5: from pwn import xor
Error: Traceback (most recent call last):
File “”, line 1, in
ModuleNotFoundError: No module named ‘pwn’