Skip to main content
  1. CTF Writeups/
  2. KOSS CTF 2025/

QueeR Numbers

·
cry 500pt qr
subzcuber
Author
subzcuber
i like to imagine i’m funny

Flag: koss{i_love_cats_nyan}

Author: subzcuber

Description:

Convert the numbers to binary to form a ___ (hint in title)

Flag format is koss{…}


solve video

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
with open("numbers.txt", "r") as numbers:
    input = []
    for i in numbers:
        input.append(int(i))

    max_length = 0
    for i in input:
        max_length = max(max_length, len(bin(i)[2:]))

    for i in input:
        print(bin(i)[2:].zfill(max_length))
Reply by Email

Related

Brainfuck
cry 440pt brainfuck
binary -> brainfuck -> flag
Vegetable Market
cry 210pt cyberchef
an introduction to cyberchef
I Like McDonalds
cry 100pt hash
hash collision