rgbCTF-2020

CTF Writeup - https://ctf.rgbsec.xyz/

Home Other writeups of rgbCTF-2020
14 July 2020

A Basic Challenge

by anishbadhri

This is a nice and basic challenge

Files:

Solution

The text file contains space separated binary numbers. When converted to ascii, this yields a string of space separated hex values. On converting these hex values to ascii, a base64 encoded string is obtained. On decoding the base64 string, a set of numbers are obtained. On close observation, it is seen that each digit is less than 8 and hence the numbers are octal. When converted to decimal and then ascii, the flag is obtained.

Program

Flag

rgbCTF{c0ngr4ts_0n_b3ing_B4SIC}
tags: Beginner