this post was submitted on 04 Oct 2023
56 points (98.3% liked)
Programming
17351 readers
245 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
What I've been trying lately is hacking. I'm on www.hackthebox.com, they offer over 200 machines for you to hack. Each machine offers a service, usually a website, but last week I had a grpc machine, which has some kind of vulnerability you need to find and exploit.
A free account doesn't give acces to all machines, only +- 20 active machines. A payed account also gives you acces to all retired machines.
You do need a "starterpack" to begin with this hobby, a vm with Kali Linux is the main component, the ability to connect to a vpn is another, because the htb machines all run on vpn's.
As a programmer, you have the basic knowledge about enumeration and webservices and such, to solve easy boxes (which can still take days to hack). You'll only need to learn about tools like nmap and burpsuite, but you'll surely find some tutorials online.
The goal is to get user acces and eventually root acces (they've placed a user flag in the user home directory and a root flag in the root directory which you can submit on the htb website and gain points)
It's really fun and challenging and even educational to search for weakness on various webservices, like apache or wordpress. It can be frustrating at times, but as a programmer you know that those challenges can be the most rewarding.