WRITEUPS
  • BURPSUITE
    • BURP_SUITE : REPEATER
    • BURPSUITE : BASICS
    • SSRF ATTACK : WALKTHROUGH
  • Page
  • TRY HACK ME : Writeups
    • THM : Intro to Docker
    • THM: Researching — Tools and Commands
    • THM: OpenVPN Connection Guide
    • THM : Enumeration & Brute Force
    • TRY_HACK_ME : NMAP
    • TRY_HACK_ME : WEB APPLICATION SECURITY
    • TRYHACKME: INTRODUCTION TO CYBERSECURITY
    • HTTP: IN DETAIL
    • TRY_HACK_ME : DNS
Powered by GitBook
On this page
  1. TRY HACK ME : Writeups

TRYHACKME: INTRODUCTION TO CYBERSECURITY

PreviousTRY_HACK_ME : WEB APPLICATION SECURITYNextHTTP: IN DETAIL

Last updated 1 year ago

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

  • -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.

-u: Specifies the target URL, in this case, "."

http://fakebank.com