CU46KprqwPnVQ980ufJ5를 md5로 암호화해서 보내보면
Too slow란다.
그냥 requests모듈로 개빠르게 보내면 될꺼같아서 파이썬으로 짰다.
import requests, hashlib
from bs4 import BeautifulSoup
url = "http://167.99.88.212:31375/"
s = requests.session()
a = s.get(url)
soup = BeautifulSoup(a.content, "lxml")
string = soup.h3.string
md5 = hashlib.md5(string.encode()).hexdigest()
data = {"hash":md5}
b = s.post(url, data=data)
print(b.text)
원래 세션을 안열고 쓰는데 세션을 안여니까 속도가 계속 Too Slow!!가 나와서 찾아보다가 이렇게 해봤더니 됬다.
이러면
flag가 뽑힌다.
'Hacking > HTB' 카테고리의 다른 글
Mobile - Cat (0) | 2021.05.30 |
---|---|
Misc - misDIRection (0) | 2021.05.30 |
WEB - Templated (0) | 2021.05.30 |
WEB - Phonebook (0) | 2021.05.30 |