KickAss101

Writeups/Walkthroughs for n00bs by a n00b :)

Source Code
11 November 2022

Bug Trails CTF 23

Bug Trails 23 Write-up

This is my first CTF where I actually made it to the top. I had a chance to try my bug hunting skills that I’ve been learning for a while now.

Overview of the Bug Trails 23

There were four challenges:


BugFile

Can you view the flag” - caption.

Here we see classic “Hello, World!” message.

So, when you see such pages the first two things you need to do is:

Port Scanning

Content Discovery

ffuf -u http://3.110.186.17/FUZZ -w /usr/share/seclists/Discovery/Web-Content/common.txt

The endpoints we’ve found are:

/console

/message

/download

/console

Key Takeaways

Admin Panel

can you login?” - caption

Content Discovery

 ffuf -u http://13.127.95.30/FUZZ -w /usr/share/seclists/Discovery/Web-Content/common.txt

Port Scanning

rustscan -a 13.127.95.30 --ulimit 5000 -r 1-65535 -- nmap -A

/passwordreset.php

curl http://13.127.95.30/passwordreset.php


An open port

ps. this port is open 4.224.22.66 2222” - caption

Port Scanning

wait-port 4.224.22.66:2222 && curl 4.224.22.66:2222

Key Takeways


Bibliosmia

https://hastebin.com/mihuhabila - c, d, u

Key Takeaways

Happy hacking :)
tags: ctf - writeup - bugbase