DarkCorp Hack the Box Season 7 (Windows Insane)
by RedBlock - Saturday February 8, 2025 at 03:32 PM
>>> " maybe try rusthound? never had luck with bloodhound-python Undecided"

I can uncover all your mysteries behind  proxychains + bloodhound-python (or impackets tooling)..
It's actually pretty simple shit...
There's a file  responsible for DNS resolution & LD_PRELOAD for proxychains :

cat /usr/lib/proxychains3/proxyresolv
#!/bin/sh
# This script is called by proxychains to resolve DNS names

# DNS server used to resolve names
DNS_SERVER=${PROXYRESOLV_DNS:-4.2.2.2}


if [ $# = 0 ] ; then
        echo "  usage:"
        echo "          proxyresolv <hostname> "
        exit
fi


export LD_PRELOAD=libproxychains.so.3
dig $1 @$DNS_SERVER +tcp | awk '/A.+[0-9]+\.[0-9]+\.[0-9]/{print $5;}'

You need to modify only one line in order to adapt to this local environment & local DNS resolutions:
# DNS server used to resolve names
DNS_SERVER=${PROXYRESOLV_DNS:-172.16.20.1}

No need to spread pain & all this fuckery with dnschief and another unnecessary complications.

I've seen even some well-renown "Gurus" is suffering with this & spread shit on their YouTube channels about fixes.
Always laughs when i see this again Big Grin
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  HTB Eloquia User and Root Flags - Insane Box 69646B 13 358 03-27-2026, 06:14 PM
Last Post: vlxw
  Hack the box Pro Labs, VIP, VIP+ 1 month free Method RedBlock 21 2,045 02-10-2026, 12:28 PM
Last Post: mohammadAktham
  HTB - VOLEUR.HTB - MEDIUM WINDOWS chain 1 123 02-09-2026, 07:07 PM
Last Post: 403Forbidden
  HTB - CERTIFICATE.HTB - HARD WINDOWS chain 0 116 02-09-2026, 04:49 PM
Last Post: chain
  Hack the Box FullHouse all 7 flags RedBlock 13 1,982 01-27-2026, 08:30 PM
Last Post: 00xx00



 Users browsing this thread: