Skip to content

Instantly share code, notes, and snippets.

View Kyle-Kyle's full-sized avatar

Kyle Zeng Kyle-Kyle

  • Shellphish
View GitHub Profile
@Kyle-Kyle
Kyle-Kyle / libc.so.0
Last active June 21, 2022 06:39
angr mips display debug
@Kyle-Kyle
Kyle-Kyle / libc.so.0
Last active February 11, 2021 05:34
angr coredump debug
@Kyle-Kyle
Kyle-Kyle / assembly
Last active August 31, 2020 05:03
googlectf2020_sprint
---- 0 ----
A3 = 0x26
A9 = 0x7000
-------------
---- 1 ----
A3 = 0x4a
A7 = max(A8, A1)
-------------
@Kyle-Kyle
Kyle-Kyle / exp.c
Last active September 11, 2020 23:22
googlectf2020_echo_writeup
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <string.h>
#include <pthread.h>
#include <sched.h>
#include <unistd.h>
@Kyle-Kyle
Kyle-Kyle / script.py
Last active May 8, 2020 17:42
bug_report
import angr
proj = angr.Project('./vuln', auto_load_libs=True)
proj.analyses.CFGFast()
@Kyle-Kyle
Kyle-Kyle / Dockerfile
Last active June 5, 2019 04:28
pwn_env
from ubuntu:16.04
### SYSTEM SETUP ###
# system environment
#run sed -e 's/archive.ubuntu.com/old-releases.ubuntu.com/g' -i /etc/apt/sources.list
#run sed -e 's/security.ubuntu.com/old-releases.ubuntu.com/g' -i /etc/apt/sources.list
run apt-get update
run dpkg --add-architecture i386
run apt-get update
run apt-get install libc-dbg libc-dbg:i386 gcc g++ gdb python python-pip locales sudo rubygems xinetd ruby-dev -y
@Kyle-Kyle
Kyle-Kyle / dist
Last active February 4, 2019 20:10
This file has been truncated, but you can view the full file.
@Kyle-Kyle
Kyle-Kyle / CADET_00001
Last active January 9, 2019 23:25
angr bug report
@Kyle-Kyle
Kyle-Kyle / CROMU_00034
Last active November 22, 2018 00:06
angr report
@Kyle-Kyle
Kyle-Kyle / run.sh
Last active September 17, 2018 07:55
# prompt
echo "Your passwords will be:"
echo "shadowsock:$1"
echo "kcptun:$2"
read -p "Confirm?(y/n) " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
[[ "$0" = "$BASH_SOURCE" ]] && exit 1 || return 1
fi