Skip to content

About Me

I’m currently studying at Korea University and recently completed the Best of the Best (BoB) 12th vulnerability analysis track in 2024. My main interest lies in VR Automation, and I’m also in CyKor, participating as a web player. I spend most of my free time playing wargame sites like Dreamhack and pwn.college. You can view my profiles here: Dreamhack and WeChall.

Besides coding, my hobbies include rhythm games, digital art, experimenting with LLMs, math, reading, and listening to breakcore & hardtekk. I’m multilingual, speaking Korean natively and English fluently, with conversational abilities in Japanese and Mandarin(trust me, I read code better). Recently, I began learning German. I do translations, check it out below.

My previous majors, psychology and neuroscience, remain my favorite reading topics.

This blog serves as both a personal diary and a source of information. While some posts aim to educate, others track my learning journey. Content is primarily in English, though some posts are in Korean.


Odyssey with computers

DateAchievement
2020.3Made my first static website with custom CSS/HTML/JS.
2020.7Began learning my first language (C) with a focus on problem-solving (PS).
2020.12Solved 150 challenges on solved.ac.
2021.6Learned my second and third languages (Python, JS).
2021.7Made a game with Pygame and got first place at my university contest(KUCC 해커톤).
2021.8Made my first-ever Discord bot.
2022.6Continued to play around with stuff, made several Discord bots and simple games. Also, did PS and learned Java, SQL, PHP, etc.
2022.7Interned at KU Wisdom Science Center (심리학부 지혜과학연구센터).
Made a website that automatically preprocesses data with PHP and JS, uses the jsPsych library.
TA’d several programming lectures targeting psychology majors.
2022.8Began solving CTF challenges, got into cybersecurity and hacking with web.
Attended POC security HACKINGCAMP, got 6 solves in my first-ever CTF.
2022.9Reported a URL scheme SSRF vulnerability in APOLLO CTF playground.
2022.11Made a small CTF team called Cat2Flag (captain, was mostly a web player).
2022.12Solved about 200 CTF/wargame challenges (2022.9~), playing about 4 beginner-friendly CTFs per month.
2023.3Assisted in writing an academic paper on SQL injection, did a lot of stuff experimenting with SQL and Docker.
2023.4Ran a small RPG Discord server with a custom Discord bot.
2023.7Got into KITRI BoB vulnerability analysis track.
2023.8Began studying pwn & Linux kernel.
2023.9Did a project with my teammates on hacking the Linux kernel (Detecting data-races leading to memory corruption with custom fuzzing framework).
2023.11Found 14 vulnerabilities (exploitable vulnerabilities included). Also did speaker for CISC-W’23 한국정보보호학회 동계학술대회 (academic conference from KOREA INSTITUTE OF INFORMATION SECURITY).
2023.12Solved about 600 CTF/wargame challenges.
2024.1Got out of my comfort zone with web and began solving level 7-8 challenges on Dreamhack, now recording rank #74.
2024.3Transferred from Psychology major to Cybersecurity (고려대학교 심리학부 -> 스마트보안학부)
2024.3Intern at COMPUTER SYSTEMS SECURITY LAB in Korea University
2024.3Web player at CyKor
2024.3Completed KITRI BoB 12th vulnerability analysis track
2024.6Did a paper on Windows Drivers, accepted by CISC-S’24 한국정보보호학회 동계학술대회 (academic conference from KOREA INSTITUTE OF INFORMATION SECURITY).

Translation

토익 985, 토플 103, JLPT N3, HSK 5급 국제중, 외고 졸, 고려대학교 스마트보안학부 재학중

“이 좋은 것 나만 볼 수 없다” 라는 마음가짐으로, 중학생 때부터 번역을 해왔습니다. 게임, 웹소설, 자막 작업, 기술 아티클, 매거진, 강의 자료 / 영상, 비영리단체에 자원봉사해 주로 영한 번역 + 검수를 하는 아마추어 번역가입니다.

날짜활동 내용
2016 ~ 2017Khan Academy 수학 강의 영한 자막 작업
2017 ~ 2018유테카 청소년 자원봉사단 영한번역 감수
2017 ~ 2018충효단 한국 전래동화 한영번역
2018 ~ 2021외국 비영리단체 OTW(변형적 작품 단체) 공식 번역가, 문서 영한/한영번역
2019국제아동기구 의료기사 영한번역
2020 ~ 2022그 외의 웹소설 영한/한영번역 - 워드 250페이지 이상 참가, 개인 사이트 연재
2021비주얼 노벨 게임 영한 번역
2023 ~Blackhat 등 컨퍼런스 발표자료, 기술 아티클 비공식 번역 - 블로그 기재
2024 ~tmpout.sh 영한 번역 자원봉사

아래는 번역 예시입니다.

영 -> 한 번역 예시 (비문학)

Namespaces serve as fundamental building blocks for containers, utilized by platforms like Docker and LXC. They provide a mechanism to alter a process’ perspective of the system. The true power of namespaces lies in their ability to function independently.

For instance, if we want to restrict an application’s network access to a specific network, we can easily create a new network namespace, bind a (SOCKS) socket as the sole interface to the external world, create firewall rules for redirection, and move the process into the network namespace. In this scenario, if the (SOCKS) socket stops working, the application will be unable to access any other network (I highly recommend this approach for enforcing VPN traffic). 출처

네임스페이스는 컨테이너의 구현에도 근본적으로 관여합니다. 예를 들어, 도커와 LXC와 같은 서비스들 또한 네임스페이스에 기반해 작동합니다. 네임스페이스를 활용해, 프로세스가 시스템과 소통하는 방식을 바꿀 수 있습니다. 이와 같이 독립적으로 작동할 수 있다는 것은 네임스페이스가 가진 가장 강력한 힘입니다.

예시를 들어보겠습니다. 한 애플리케이션의 네트워크 접근을 특정 네트워크에만 제한하고 싶다면, 새로운 네트워크 네임스페이스를 만든 뒤 (SOCKS) 소켓을 바인딩할 수 있습니다. 이는 즉 바깥과의 유일한 소통 창구입니다. 소켓을 바인딩한 뒤, 리다이렉션을 위해 방화벽 규칙을 세우고, 네트워크 네임스페이스 내부로 프로세스를 옮기면 됩니다. 이 상황에서 만약 (SOCKS) 소켓이 작동하지 않게 된다면, 애플리케이션은 명시된 네트워크 외의 다른 네트워크에 접근할 수 없을 것입니다 (VPN 트래픽을 통제할 때 이 접근을 추천해 드립니다).

영 -> 한 번역 예시 (문학)

space is vast. everyone knows it, but most sentient beings in their many universes never have any way or reason to experience it first hand. even in societies advanced enough for space flight, most people will never leave their atmosphere. when they scoff at my tautology ‘space is vast’, what do they really know? nothing. as far as any of them have experienced, space does not exist.

very few have stood and looked into the abyss, the true gulf of nothingness that spreads out around the single point of consciousness adrift in a constellation. all the combined weight of sentient would quail underneath that sheer, irresistible truth. the realization that they are so small, that the universe cares about their puny lives so very little. sitting in the glowing light of the stars this becomes even more apparent. 출처

우주는 방대하다. 모두가 그 사실을 알지만, 수많은 우주의 가장 지각 있는 존재들조차 우주를 직접 경험할 방법 또는 이유가 없다. 우주 비행이 가능할 정도로 발달한 사회에서도 사람들은 자신이 태어난 행성의 대기권을 떠나지 않을 것이다. “우주는 방대하다.” 동의어 반복인 나의 문장을 비웃어도, 그들이 아는 것이 하나라도 있겠는가? 그들의 경험에 의하면, 우주는 존재하지 않는다.

별자리에서 표류하는 한 점의 의식을 중심으로 퍼져나가는 진정한 무(無)의 만(灣). 이 심연 속을 바라본 이들은 몇 존재하지 않는다. 거부할 수 없는 진실 아래에서, 지각 있는 몸부림의 무게는 결국 위축된다. 존재는 작다는 깨달음. 우주는 그들의 하찮은 인생을 한치도 고려하지 않는다는 깨달음. 별들의 은은한 불빛 아래에서 앉아 있다 보면, 이 사실은 더더욱 자명해진다.


You can always contact me via discord @qwertek, or with email qwertek7@gmail.com.

My old blog is here.