Description Forgot is a medium Hack The Box machine that features:
HTTP Host Header Injection to obtain a password recovery link Web Cache Deception vulnerability to read the administration dashboard and credentials Privilege Escalation via a TensorFlow script vulnerable to Command Injection Footprinting First, we are going to check with ping command if the machine is active and the system operating system. The target machine IP address is 10.10.11.188.
$ ping -c 3 10.10.11.188 PING 10.10.11.188 (10.10.11.188) 56(84) bytes of data. 64 bytes from 10.10.11.188: icmp_seq=1 ttl=63 time=43.5 ms 64 bytes from 10.10.11.188: icmp_seq=2 ttl=63 time=43.8 ms 64 bytes from 10.10.11.188: icmp_seq=3 ttl=63 time=44.2 ms --- 10.10.11.188 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2005ms rtt min/avg/max/mdev = 43.469/43.813/44.183/0.292 ms The machine is active and with the TTL that equals 63 (64 minus 1 jump) we can assure that it is an Unix machine. Now we are going to do a Nmap TCP SYN port scan to check all opened ports.
...