Skip to content

Instantly share code, notes, and snippets.

View junorouse's full-sized avatar

Im, Juno junorouse

View GitHub Profile
@junorouse
junorouse / zergling.py
Created October 29, 2017 09:28
whitehat zergling
from pwn import *
from os import system
from time import sleep
context.terminal = ['tmux', 'splitw', '-h']
r = process("./zergling")
r = remote("1.224.175.13", 30007)
for i in xrange(3):
@junorouse
junorouse / voices.txt
Created March 7, 2018 17:05 — forked from mculp/voices.txt
List of voices available by the `say` command on OS X
Agnes en_US # Isn't it nice to have a computer that will talk to you?
Albert en_US # I have a frog in my throat. No, I mean a real frog!
Alex en_US # Most people recognize me by my voice.
Alice it_IT # Salve, mi chiamo Alice e sono una voce italiana.
Alva sv_SE # Hej, jag heter Alva. Jag är en svensk röst.
Amelie fr_CA # Bonjour, je m’appelle Amelie. Je suis une voix canadienne.
Anna de_DE # Hallo, ich heiße Anna und ich bin eine deutsche Stimme.
Bad News en_US # The light you see at the end of the tunnel is the headlamp of a fast approaching train.
Bahh en_US # Do not pull the wool over my eyes.
Bells en_US # Time flies when you are having fun.
@junorouse
junorouse / voices.txt
Created March 7, 2018 17:05 — forked from mculp/voices.txt
List of voices available by the `say` command on OS X
Agnes en_US # Isn't it nice to have a computer that will talk to you?
Albert en_US # I have a frog in my throat. No, I mean a real frog!
Alex en_US # Most people recognize me by my voice.
Alice it_IT # Salve, mi chiamo Alice e sono una voce italiana.
Alva sv_SE # Hej, jag heter Alva. Jag är en svensk röst.
Amelie fr_CA # Bonjour, je m’appelle Amelie. Je suis une voix canadienne.
Anna de_DE # Hallo, ich heiße Anna und ich bin eine deutsche Stimme.
Bad News en_US # The light you see at the end of the tunnel is the headlamp of a fast approaching train.
Bahh en_US # Do not pull the wool over my eyes.
Bells en_US # Time flies when you are having fun.
@junorouse
junorouse / zer0c4_sol.ipynb
Created April 5, 2018 02:08 — forked from szabolor/zer0c4_sol.ipynb
0CTF Quals 2018 - zer0C4 solution by szabolor (!SpamAndHex)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@junorouse
junorouse / zer0c4_sol.ipynb
Created April 5, 2018 02:08 — forked from szabolor/zer0c4_sol.ipynb
0CTF Quals 2018 - zer0C4 solution by szabolor (!SpamAndHex)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@junorouse
junorouse / kalzip
Created October 15, 2018 12:11 — forked from iamahuman/kalzip
Create and extract Zip archives with KS X 1001(euc-kr / MS949) encoded filenames
#!/usr/bin/env python
import zipfile
import os
import stat
import sys
import codecs
import time
import datetime
import unicodedata
import sys
@junorouse
junorouse / _readme.md
Last active November 2, 2018 18:40
CODEGRAY WRITEUP

헤드

베트남 화이트햇 하러 왔다가 메시지를 받고 짬짬이 푼 문제들 !

사실 대회보다 재밌었다 ㅜㅜ. 시간이 별로 없어 올클 하지 못한게 아쉽다 흑흑

obfuscator말고는 모든 문제를 열어보았다. 각 문제별 설명과 풀이는 아래에 있다.

한국가서 나머지 문제 풀어봐야겠다.

@junorouse
junorouse / symbols.py
Created November 17, 2018 20:03 — forked from luser/symbols.py
GDB Mozilla symbol server
# Any copyright is dedicated to the Public Domain.
# http://creativecommons.org/publicdomain/zero/1.0/
#
# A GDB Python script to fetch debug symbols from the Mozilla symbol server.
#
# To use, run `source /path/to/symbols.py` in GDB 7.9 or newer, or
# put that in your ~/.gdbinit.
from __future__ import print_function
@junorouse
junorouse / gist:ac0ec02f9e480cdf8b12c10abc457438
Created January 21, 2019 13:22 — forked from totherik/gist:3a4432f26eea1224ceeb
v8 --allow-natives-syntax RuntimeFunctions
Per https://code.google.com/p/v8/codesearch#v8/trunk/src/runtime.cc
%CreateSymbol
%CreatePrivateSymbol
%CreateGlobalPrivateSymbol
%NewSymbolWrapper
%SymbolDescription
%SymbolRegistry
%SymbolIsPrivate
@junorouse
junorouse / exploit.c
Created April 6, 2019 16:55
midnight-hfsipc
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdint.h>
#define HFS_CREATE 0xABCD0001
#define HFS_DESTROY 0xABCD0002
#define HFS_READ 0xABCD0003
#define HFS_WRITE 0xABCD0004