HTB — Embee five for life

CrhystamiL
Dec 16, 2020

--

Un reto sencillo que pide enviar una cadena de texto en md5 en un tiempo determinado.

#!/usr/bin/env python3from bs4 import BeautifulSoup
import requests
import hashlib
r = requests.get("http://docker.hackthebox.eu:30323/")
html = r.text
cookie = r.cookies
soup = BeautifulSoup(html, 'html.parser')
string = soup.h3md5_text = hashlib.md5(string.get_text().encode('utf-8')).hexdigest()
print(md5_text)
data= {'hash':md5_text}
q = requests.post("http://docker.hackthebox.eu:30323/", data = data, cookies=cookie)
print(q.text)

Ahora solo toca ejecutarlo y poder ver el flag para este reto.

--

--

CrhystamiL

CEH, CyberSecurity Researcher,Ethical Hacker, GNU/Linux Lover.