✍️
CTFs
Home
  • CTF Writeups
  • Tools and Payloads
  • TryHackMe
    • TryHackMe Overview
      • Advent of Cyber 2
        • Day 01 - Christmas Crisis
        • Day 02 - The Elf Strikes Back!
        • Day 03 - Christmas Chaos
        • Day 04 - Santa's Watching
        • Day 05 - Someone stole Santa's gift list!
        • Day 06 - Be careful with what you wish on a Christmas night
        • Day 07 - The Grinch Really Did Steal Christmas
        • Day 08 - What's Under the Christmas Tree?
        • Day 09 - Anyone can be Santa!
        • Day 10 - Don't be sElfish!
        • Day 11 - The Rogue Gnome
        • Day 12 - Ready, set, elf
        • Day 13 - Coal for Christmas
        • Day 14 - Where's Rudolph?
        • Day 15 - There's a Python in my stocking!
        • Day 16 - Help! Where is Santa?
        • Day 17 - ReverseELFneering
        • Day 18 - The Bits of Christmas
        • Day 19 - The Naughty or Nice List
        • Day 20 - PowershELlF to the rescue
        • Day 21 - Time for some ELForensics
        • Day 22 - Elf McEager becomes CyberElf
        • Day 23 - The Grinch strikes again!
        • Day 24 - The Trial Before Christmas
      • Web Fundamentals
      • Anonymous
      • Printer Hacking 101
      • OWASP Top 10
        • Injection
        • Broken Authentication
        • Sensitive Data Exposure
        • XML External Entity
        • Broken Access Control
        • Security Misconfiguration
        • Cross-Site Scripting
        • Insecure Deserialization
        • Components with Known Vulnerabilities
        • Insufficent Logging & Monitoring
      • Vulnversity
      • Nmap
      • Google Dorking
      • Blog
      • Metasploit
      • OhSINT
      • Searchlight - IMINT
      • Basic Pentesting
      • Crack the Hash
      • Crack the Hash 2
      • Year of the Jellyfish
      • VulnNet - DotJar
      • Encryption - Crypto 101
      • CC: Pen Testing
      • Kenobi
      • Linux Backdoors
      • Root Me
      • DNS Manipulation
      • OWASP Juice Shop
      • Pickle Rick
      • CC: Steganography
      • OverPass
      • OverPass 2 - Hacked
      • OverPass 3 - Hosting
      • Mr Robot CTF
      • VulnNet
      • Linux PrivEsc
      • Git Happens
      • Buffer Overflow Prep
      • BrainPan
      • CC: Ghidra
      • Intro to x86-64
      • CC: Radare2
      • Linux Forensics
      • ReverseEngineering
      • Reversing ELF
      • Simple CTF
      • c4ptur3-th3-fl4g
      • Cat Pictures
      • Bounty Hacker
      • That's the Ticket
      • Brute It
      • Smag Grotto
      • Ignite
      • Ninja Skills
      • Break It
      • Mustacchio
      • Agent Sudo
      • Poster
      • Fowsniff CTF
      • Juicy Details
      • The Impossible Challenge
      • Golden Eye
      • Lian_Yu
      • Couch
      • GateKeeper
      • WebAppSec 101
      • Advent of Cyber 1
        • Day 01 - Inventory Management
        • Day 02 - Arctic Forum
        • Day 03 - Evil Elf
        • Day 04 - Training
        • Day 05 - Ho-Ho-Hosint
        • Day 06 - Data Elf-iltration
        • Day 07 - Skilling Up
        • Day 08 - SUID Shenanigans
        • Day 09 - Requests
        • Day 10 - Metasploit-a-ho-ho-ho
        • Day 11 - Elf Applications
        • Day 12 - Elfcryption
        • Day 13 - Accumulate
        • Day 14 - Unknown Storage
      • Hacker of the Hill
  • HackTheBox
    • HackTheBox Overview
      • Emdee five for life
      • Templated
      • Phonebook
  • HackTheBox Academy
    • HTB Academy Overview
  • PortSwigger Academy
    • PortSwigger Overview
      • Authenication bypass via OAuth implicit flow
      • Forced Oauth Profile Linking
      • OAuth account hijacking via redirect_uri
      • Stealing OAuth access tokens via an open redirect
      • Stealing OAuth access tokens via a proxy page
  • 2021 CTFs
    • Gurugram Cyber Heist CTF 2021
      • All About Web
      • Are You Web Expert
      • Mobile Phones are Bad
      • The Last Step
      • Social Media Havoc
    • ZH3R0 CTF 2.0 2021
      • Misc - Small Maniac's Game
      • Web - bxss
      • Web - Sparta
      • Web - Baby SSRF
      • Web - Original Store v1 and v2
      • Web - strpos and substr
    • NahamCon 2021
      • esab64
      • Bionic & Meet the Team
      • Gus & Hercules
      • Pollex
  • 2020 CTFs
    • VulnCon2020 Overview
      • Noob Bot Welcomes You!
      • Maze
      • Pcaped
Powered by GitBook
On this page
  • Solutions
  • What is the port number for the web server?
  • Without using enumerations tools such as Dirbuster, what is the directory for the API? (without the API key)
  • Find out the correct API key. Remember, this is an odd number between 0-100. After too many attempts, Santa's Sled will block you.
  • Where is Santa right now?
  1. TryHackMe
  2. TryHackMe Overview
  3. Advent of Cyber 2

Day 16 - Help! Where is Santa?

Date: 16, December, 2020

Author: Dhilip Sanjay S


Solutions

What is the port number for the web server?

  • Answer: 8000

  • Steps to Reproduce: Run Nmap, Rustscan, etc.

    root@kali:nmap MACHINE_IP
    
    Starting Nmap 7.91 ( https://nmap.org ) at 2020-12-17 22:08 IST
    Nmap scan report for MACHINE_IP
    Host is up (0.18s latency).
    Not shown: 999 closed ports
    PORT     STATE SERVICE
    8000/tcp open  http-alt
    
    Nmap done: 1 IP address (1 host up) scanned in 2.36 seconds

Without using enumerations tools such as Dirbuster, what is the directory for the API? (without the API key)

  • Answer: /api/

  • Steps to Reproduce: Write a simple python script Code:

    import requests
    from bs4 import BeautifulSoup as bs
    import sys
    
    if len(sys.argv) < 2:
            print("SYNTAX: \npython3 findLink.py <MACHINE_IP:PORT>")
            exit(0)
    
    r = requests.get("http://" + str(sys.argv[1]))
    # print(r.text)
    soup = bs(r.text, 'lxml')
    links = soup.find_all('a')
    #print(links)
    for link in links:
            if "href" in link.attrs and link["href"] != "#" :
                    print(link["href"])

    Output:

    root@kali:python3 findLink.py MACHINE_IP:8000 | uniq
    ../
    https://github.com/BulmaTemplates/bulma-templates/blob/master/templates/hero.html
    https://tryhackme.com
    http://machine_ip/api/api_key
    https://github.com/BulmaTemplates/bulma-templates    

Find out the correct API key. Remember, this is an odd number between 0-100. After too many attempts, Santa's Sled will block you.

  • Answer: 57

  • Steps to Reproduce: Code:

    import requests
    import sys
    
    if len(sys.argv) < 2:
            print("SYNTAX: \npython3 findApiKey.py <MACHINE_IP:PORT>")
            exit(0)
    
    url = "http://" + str(sys.argv[1]) + "/api/"
    for i in range(1, 100, 2):
            r = requests.get(url+str(i))
            print(r.text)

    Output:

    root@kali:python3 findApiKey.py MACHINE_IP:8000 > output.txt 

Where is Santa right now?

  • Answer: Winter Wonderland, Hyde Park, London

  • Steps to Reproduce:

    root@kali:cat output.txt | grep -v "Error"
    {"item_id":57,"q":"Winter Wonderland, Hyde Park, London."}

PreviousDay 15 - There's a Python in my stocking!NextDay 17 - ReverseELFneering

Last updated 1 year ago