Prerequisite
Some things that need to be prepared to play Hack The Box machines.
Last updated
Was this helpful?
Some things that need to be prepared to play Hack The Box machines.
Last updated
Was this helpful?
Before starting the work on HTB machines, always add the IP address to /etc/hosts on our machine. Example:
Here are some commonly used tools for working on HackTheBox machines.
- for port scanning
- directory scanning & vhost discovery
can be used for performing directory scanning as well as vhost bruteforce (subdomain enumeration). That's why I prefer using Ffuf over other tools because this single tool can be used for multiple purposes.
- Wordlist
Seclists is a collection of wordlists that will be very useful when performing fuzzing.
"Magic trick" for achieving a stable Full TTY shell (works on bash):
Then press CTRL+Z to pause the shell process. Next, execute the following command to disable input buffering and echo, making the reverse shell more responsive.
After that, run the following command to bring the shell process to the foreground.
Lastly, execute the following command to set the TERM environment variable to xterm, ensuring smooth operation of the interactive shell.
Alright, that's it for this update. I'll provide more updates later.