Is this a good csrf token? Does it have enough entropy, or are there parts that are easily guessable and could reduce the entropy, like the time of the request?
An example python implementation would b
token = hashlib.sha256(str(uuid.uuid4())).hexdigest()