일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- CodeEngn
- buffer over flow
- writeup
- requests
- 어셈블리어
- HackCTF
- webhacking
- 리눅스
- x64dbg
- reversing
- 뉴스클리핑
- 버퍼오버플로우
- 보안뉴스
- Nop Slide
- ctf
- Next.js
- 리버싱
- Linux
- termux
- RITSEC CTF 2019
- NewsClipping
- 웹해킹
- ftz
- Python
- SQL Injection
- PWN
- RITSEC
- Shadow 동아리
- BOF
- Hackerschool
- Today
- Total
목록Misc (2)
Jaeseo's Information Security Story

Onion Layer Encoding 문제구분 난이도 작성자 MISC 하 JaeSeoKim 문제 내용 문제 풀이 문제를 보면 base16,32,64으로 150번을 인코딩 했다고 알려주고 있습니다. 이 점을 이용해서 계속 반복적으로 디코딩하는 스크립트를 짜봅니다. import base64 flag = open("onionlayerencoding.txt","r").read() for i in range(150): try: flag = base64.b64decode(flag) except: try: flag = base64.b32decode(flag) except: try: flag = base64.b16decode(flag) except: print("error") exit(0) print(flag) 이제 ..

Crack me If You Can 문제구분 난이도 작성자 MISC 하 JaeSeoKim 문제 내용 문제 풀이 일단 제공하는 NC로 접속을 하면 아래와 같은 화면으로 입력값을 받습니다. root@kali:~# nc ctfchallenges.ritsec.club 8080 Some moron just breached Meme Corp and decided to dump their passwords... In the meantime, prepare your GPUs, and get Ready... Set.... and go CRACK! However... We have a theory that the passwords might come from darkweb2017-top10000.txt, xato-net-..