Skip to content

Instantly share code, notes, and snippets.

View Zwork101's full-sized avatar
💭
Not Much

Nathan Z Zwork101

💭
Not Much
View GitHub Profile
@Lydxn
Lydxn / pycomment_writeup.md
Created March 10, 2025 07:57
"Pycomment" from KalmarCTF 2025

Pycomment (misc, 2 solves)

In this writeup, I will share how I solved "Pycomment" from KalmarCTF 2025. It was one of the tougher pyjails this year and makes use of two really unique ideas.

Thanks for the challenge, @ChattyPlatinumCool 😛

Description

Can you please help us comment our code? And please don't attack us.

@Zwork101
Zwork101 / example.py
Created July 17, 2019 16:33
Another peels example
class EducationFlags(FlagConverter):
ELEMENTARY_COMPLETED = 1
MIDDLE_SCHOOL_COMPLETED = 2
HIGHSCHOOL_COMPLETED = 4
COLLEGE_COMPLETED = 8
BACHELOR = 16
MASTER = 32
DOCTOR = 64