SunshineCTF Writeups

Golly Gee Willikers

Sonar

Golly Gee Willikers (100)

Description:

Someone sent me this weird file and I don’t understand it. It’s freaking me out, this isn’t a game! Please help me figure out what’s in this file.

We’ve given a file golly_gee_willikers.txt. After a quick search of contents in the given file,I got to know it is a rle file (rule) used by Conway's Game of Life,What actually it does is,It will print the patterns.

So I searched for a simulator for the pattern generator,I found golly.It is a pretty good tool for Linux and it is so handy to use.Otherwise you can also try to simulate online
When I open the pattern file in I got Alphanumeric which doesn’t make any sense.

Intended One

Finally read the documentation of .rle file,There I’ve got to know that about the symbols and their purpose.

  • `x` Represents `Width`
  • `y` Represents `height`
  • `o` Represents the `off cells`
  • `b` Represents `on cells`
  • `$` Represents `End of line`
  • `!` Represents `End Of Pattern`

! Plays a major role in this challenge,If u can observe carefully you could file two ! symbols,that means two patterns.Then I quickly removed the first pattern and then loaded into golly.Got The Flag πŸ™‚

Actual One

Flag : sun{th1s_w0nt_last}

Sonar (250)

Description

We think a wrestler called Sonar wants to re brand and go to a competitor. We have to reason to believe that he was sending them his new wrestling name, lucky that our next-gen firewall was capturing the traffic during the time where he sent that info out. Unfortunately our staff cannot make heads or tails of it. Mind looking at it for us?

We’ve given a packet capture file(pcapng file).After wasting 2 hrs of time i got concentrated on ICMP packets(Found Suspicious because ping requests are in between other packets and it has data),then tried to analyse the ICMP data then finally as a guess tried to change the data bytes to its character value (i.e, chr(115)='s',chr(117)='u',chr(110)='n'….) So on continue to decode and get the flag πŸ™‚

Finally got the flag πŸ™‚

Flag: sun{7UcHa_L1Br3}

Leave a comment

Blog at WordPress.com.

Up ↑

Design a site like this with WordPress.com
Get started