🟒Web: emdee five for life

Description

"Can you encrypt fast enough?"

the site has a field that asks for an encrypted text in md5:

imagearrow-up-right

but when we encrypt and put it manually, it says we are too slow, and gives another text

imagearrow-up-right

we deduce that we have to automate to make it fast

for this I used python3, with the libs : requests, hashlib and bs4

requests to make the connection to the site; hashlib to encrypt the text in md5; bs4 to get the text that will be encrypted;

so I wrote the code:

it connects to the site, finds the h3 tag, takes what it contains, encrypts and sends it as data

this give us the flag

Last updated