Cronus
I love contributing to a safer Cyber Security Ecosystem
through
Offensive Security Research

My Github





damCTF 2024 Web Writeup
·
🚩 CTF
My team was too good for me to help, but here's a writeup I did on my own for studying purposes. Flower Power # app.py ... @dataclass class Flower: name: str flower_url: str description: str id: str = "-1" database: dict[str, Flower] = dict() def add_flower(flower: Flower): flower.id = generate_id() database[flower.id] = flower return flower add_flower(Flower( "Rose", "https://i0.wp.com/pikespea..
$ Whoami
·
AboutMe
[ Contact ]Email : rudrnr0324@gmail.comBlog : https://cronuse.tistory.comGithub : https://github.com/Cr0nu3[ Team ]TOOR (Team Of Offensive Research)TeamH4C[ Competitions ]The 6th TS “Find the Security Vulnerability” Competition, 2nd place ( Team_ TS(TypeScript) 큭큭.. ) | 제6회_TS_보안_허점을_찾아라 우수상Chungcheong Region Cybersecurity Competition, Winner 5th place( Team_ 염승빈여친아랴짱 ) | 충청권 사이버보안 경진대회 장려상HackT..
BuckeyeCTF 2022
·
Former Doc
● buckeyenotes The word "=" is filtered. Bypass it. Payload : ' or username like 'brutusB3stNut9999' and password like '%a%'-- Flag : buckeye{wr1t3_ur_0wn_0p3n_2_pwn} ● pong I can't find any flag in this service. I guessed if I win this game, I can get a flag. There are no given source code. So I just looked up devtools, then I could find below code. const socket = io(); const canvas = document...