Challenge #5 Solution - FireEye

aggregate the POST requests but also decode and decrypt the secret key. For that we will have to implement a base64 decoder which uses a custom alphabet and reverse the modifications performed by the encryption routine by subtracting the key bytes instead of adding them: import sys import base64 from scapy.all import * ................
................