wind010.hashnode.devPathfinderI've been meaning to consolidate scripts I've been using to call various reconnaissance tools for Hack-the-Box and CTFs. The tools (first of each list) are usually the ones I use for pre-liminary scan4d ago·2 min read
wind010.hashnode.devDebugging Flakey TestsA co-worker reached out to me to help debug some test failures. These were actually integration tests that were run with in-memory webserver: Factory = ConfigureWebApplicationFactory(); HttpClient = Factory!.CreateClient(); ... private WebApplicati...Jan 28·5 min read
wind010.hashnode.devHack The Box - Season 9 - GachaSurprised that I didn’t fall much compared to Season 8, even though I had to travel for two weeks to Japan for a Kyokushin-kan World Tournament. Key vulnerabilities that were typically present were password reuse, weak passwords, Insecure Direct Obj...Jan 24·1 min read
wind010.hashnode.devHack The Box: PermXRecon We need to look around what is available at the target. Start off with an nmap scan. Nmap nmap -A -sV -T4 -vvv 10.10.11.23 -oN permX.txt -A: Enables OS detection, version detection, script scanning, and traceroute. -sV: Enables version detec...Jan 9·8 min read
wind010.hashnode.devPackage update helperIn my day job, we own several common libraries. The common libraries my contain additional dependencies that we own such as HTTP clients or other providers. It’s a pain when we have a chain of dependencies which all need to be updated. We use Central...Jan 9·1 min read