Troubleshooting Python Socket Timing - Toby [HackTheBox]

Опубликовано: 29 Май 2026
на канале: 0xdf
882
42

In Toby from HackTheBox, I've got a backdoor in a website that I trigger with a POST request, and it connects back to me. I want to automate getting a shell from here, so that involves both sending that POST and catching the connection with socket. A quick troubleshooting video.

Full blog post: https://0xdf.gitlab.io/2022/04/16/htb...

[00:00] 2022 Introduction
[00:38] Original introduction
[01:30] First failed attempt - not listening in time
[02:43] Second attempt - works, but have to wait way too long for timeout
[05:20] Third failed attempt - timeout on requests without try/except
[06:30] Success - handling exception