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