OFFENSIVE SECURITY:
Offensive security, in simple terms, is like being a digital detective with a mission to find and fix weaknesses in computer systems before the bad guys do. It involves learning how hackers think and operate so that you can defend against their tactics. In this exciting field, you’ll dive into things like hacking simulations, penetration testing, and Capture the Flag challenges to sharpen your skills and help make the digital world a safer place.
HACKING MY FIRST SITE :
With the help of tryhackme I was able to attack the website with the help of tool called Gobuster , which is used to find the hidden paths of the site .
gobuster -u http://fakebank.com -w wordlist.txt dir
-u
: Specifies the target URL, in this case, "http://fakebank.com."-w
: Points to the wordlist file, "wordlist.txt," containing potential directory or file names.dir
: Sets the mode for directory discovery.
With the help of this tool found a hidden /bank transfer page and being able to transfer money.