gpnCTF 2023 Web Writeup
·
🚩 CTF/2023
[ Wanky mail ] 더보기 from flask import Flask, render_template_string, request, redirect, abort from aiosmtpd.controller import Controller from datetime import datetime from base58 import b58decode, b58encode import random import string import os from datetime import datetime import queue mails = {} active_addr = queue.Queue(1000) def format_email(sender, rcpt, body, timestamp, subject): return {"s..
[ justCTF2023 ] Aquatic_delights
·
🚩 CTF/2023
./challenge/ ├── challenge │ ├── app.py │ ├── poc.py │ ├── poc.sh │ ├── static │ └── templates │ └── index.html ├── docker-compose.yml └── Dockerfile version: '3' services: shop: build: . container_name: aquatic_delights ports: - "8080:8080" environment: - FLAG=justCTF{here_should_be_a_flag} restart: always You can see flag in docker-compose.yml. There are only few codes to check out. Let's see ..
Stack Pivoting
·
🖌️ Theory/PWN
보호되어 있는 글입니다.
[ justCTF 2023 ] eXtra-Safe-Security-layers
·
🚩 CTF/2023
This Chall is well-known type of XSS Challenge. ./web_extra-safe-security-layers/ ├── docker-compose.yml ├── Dockerfile └── src ├── app.js ├── bot.js ├── flag.txt ├── package.json ├── public │ ├── admin_background.png │ └── background.png └── templates └── index.ejs It gives that this chall has 5 safety layer through remark. These remarks confused me, even if this chall was not that hard. Just I..
Ubuntu 기초 셋팅 명령어 모음 ( 한 큐에 해결하기 )
·
Tips
매번 검색해서 치기 귀찮아서 이 참에 정리한다. 설치 프로그램 Ubuntu 필수 기초 프로그램들 Google Chrome Pwnable을 위한 셋팅 # /var/lib/dpkg/lock-frontend 에러 솔루션 $ sudo rm /var/lib/apt/lists/lock \ /var/cache/apt/archives/lock \ /var/lib/dpkg/lock* $ sudo dpkg --configure -a $ sudo apt-get update # ( open-vm-tools 설치 후, Reboot 필요 ) $ sudo apt-get install open-vm-tools-desktop # Chrome 설치 $ wget https://dl.google.com/linux/direct/google-..
(Cryptography) Python3 Sage 모듈 설치 & pwntools과 연동
·
Tips
이상하게 sagemath.org의 설치 가이드를 따라해도 제대로 구축이 안됐다. Sage 모듈 설치를 포함한 환경 구축에 너무 삽질을 많이해서 이 참에 정리했다. Sage 모듈 설치 방법 : https://sagemanifolds.obspm.fr/install_ubuntu.html ( make configure와 ./configure 명령어에서 꽤 오래 걸림 ) Sage - pwntools 연동 방법 : https://zhuanlan.zhihu.com/p/136276743
web-dreamshop
·
Dreamhack/WEB
보호되어 있는 글입니다.
Easyxss
·
Dreamhack/WEB
보호되어 있는 글입니다.
cURL-Based-Call
·
Dreamhack/WEB
보호되어 있는 글입니다.