├── AIS3-2017-final ├── README.md ├── pwn1 │ ├── exploit.py │ └── pwn1 └── pwn3 │ ├── exploit.py │ ├── libc.so.6 │ ├── xorstr │ └── xorstr.c ├── AIS3-2017-pre-exam ├── README.md ├── exploit1.py ├── exploit2.py ├── exploit3.py └── exploit4.py ├── AIS3-EOF-final └── overflow │ ├── README.md │ ├── exploit.py │ ├── overflow │ └── overflow-libc-2.23.so ├── AIS3-EOF-qual ├── Bingo │ ├── Bingo │ ├── README.md │ └── exploit.py ├── README.md ├── dragon-slayer │ ├── README.md │ ├── dragon_slayer │ ├── dragon_slayer.c │ ├── exploit.py │ └── libc.so.6-14c22be9aa11316f89909e4237314e009da38883 ├── magicheap2 │ ├── README.md │ ├── exploit.py │ ├── libc.so.6-14c22be9aa11316f89909e4237314e009da38883 │ └── magicheap └── writeme │ ├── README.md │ ├── exploit.py │ ├── libc.so │ └── writeme ├── AIS3_2016_finalCTF ├── README.md ├── Remote1 │ ├── README.md │ └── exploit.py └── Remote2 │ ├── README.md │ └── exploit.py ├── ASIS-2017-final └── Greg-Lestrade │ ├── README.md │ ├── exploit.py │ └── greg_lestrade ├── AceBear-Security-Contest └── arm-exploit │ ├── README.md │ ├── arm-exploit │ ├── exploit.py │ └── libc-2.19.so ├── BCTF-2016 └── Ruin │ ├── README.md │ ├── exploit.py │ └── ruin ├── Boston-Key-Party-2017 └── hiddensc │ ├── README.md │ ├── exploit.py │ ├── hiddensc │ └── poop.sc ├── CSAW-2016-qual ├── README.md └── tutorial │ ├── README.md │ └── exploit.py ├── CSAW-2017-qual ├── Auir │ ├── README.md │ ├── auir │ ├── exploit.py │ └── libc-2.23.so ├── Pilot │ ├── README.md │ ├── exploit.py │ └── pilot ├── README.md ├── SCV │ ├── README.md │ ├── exploit.py │ ├── libc-2.23.so │ └── scv └── Zone │ ├── README.md │ ├── exploit.py │ ├── libc-2.23.so │ └── zone ├── Codegate-CTF-2017-prequalification └── BabyPwn │ ├── README.md │ ├── babypwn │ ├── exploit.py │ └── libc-2.19_16.so ├── HITB-GSEC-CTF-2017 └── SENTOSA │ ├── README.md │ ├── exploit.py │ ├── libc.so.6 │ └── sentosa ├── HITCON-2017-qual └── Impeccable-Artifact │ ├── README.md │ ├── artifact │ ├── exploit.py │ ├── libc.so.6 │ └── seccomp.png ├── HITCONCTF_2016_qual ├── README.md └── SecretHolder │ ├── README.md │ ├── exploit.py │ ├── mmap_test.md │ └── test.c ├── MMACTF_2nd_2016 ├── README.md └── greeting │ ├── README.md │ └── exploit.py ├── MeePwn-CTF-2017 └── bs │ ├── README.md │ ├── bit │ ├── exploit.py │ └── libc6_2.24-3ubuntu2.2_i386.so ├── README.md ├── SECCON-2016-online-CTF ├── README.md ├── checker │ ├── README.md │ ├── checker │ └── exploit.py └── cheer_msg │ ├── README.md │ ├── cheer_msg │ ├── exploit.py │ └── libc-2.19.so-c4dc1270c1449536ab2efbbe7053231f1a776368 ├── SECCON-2017-online-CTF └── Election │ ├── README.md │ ├── election-9724a8d0a6c9ccb131200ec96752c61c0e6734cd9e1bb7b1958f8c88c0bd78fa.zip │ └── exploit.py └── hackluCTF_2016 ├── README.md └── simplepdf ├── README.md ├── extractor.sh └── simplepdf_f8004a3ad0acde31c40267b9856e63fc.pdf /AIS3-2017-final/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-final/README.md -------------------------------------------------------------------------------- /AIS3-2017-final/pwn1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-final/pwn1/exploit.py -------------------------------------------------------------------------------- /AIS3-2017-final/pwn1/pwn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-final/pwn1/pwn1 -------------------------------------------------------------------------------- /AIS3-2017-final/pwn3/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-final/pwn3/exploit.py -------------------------------------------------------------------------------- /AIS3-2017-final/pwn3/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-final/pwn3/libc.so.6 -------------------------------------------------------------------------------- /AIS3-2017-final/pwn3/xorstr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-final/pwn3/xorstr -------------------------------------------------------------------------------- /AIS3-2017-final/pwn3/xorstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-final/pwn3/xorstr.c -------------------------------------------------------------------------------- /AIS3-2017-pre-exam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-pre-exam/README.md -------------------------------------------------------------------------------- /AIS3-2017-pre-exam/exploit1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-pre-exam/exploit1.py -------------------------------------------------------------------------------- /AIS3-2017-pre-exam/exploit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-pre-exam/exploit2.py -------------------------------------------------------------------------------- /AIS3-2017-pre-exam/exploit3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-pre-exam/exploit3.py -------------------------------------------------------------------------------- /AIS3-2017-pre-exam/exploit4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-2017-pre-exam/exploit4.py -------------------------------------------------------------------------------- /AIS3-EOF-final/overflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-final/overflow/README.md -------------------------------------------------------------------------------- /AIS3-EOF-final/overflow/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-final/overflow/exploit.py -------------------------------------------------------------------------------- /AIS3-EOF-final/overflow/overflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-final/overflow/overflow -------------------------------------------------------------------------------- /AIS3-EOF-final/overflow/overflow-libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-final/overflow/overflow-libc-2.23.so -------------------------------------------------------------------------------- /AIS3-EOF-qual/Bingo/Bingo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/Bingo/Bingo -------------------------------------------------------------------------------- /AIS3-EOF-qual/Bingo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/Bingo/README.md -------------------------------------------------------------------------------- /AIS3-EOF-qual/Bingo/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/Bingo/exploit.py -------------------------------------------------------------------------------- /AIS3-EOF-qual/README.md: -------------------------------------------------------------------------------- 1 | # AIS3-EOF-qual 2 | 3 | 第一次在比賽中解出 500 分的 pwn,太感動了XD 4 | -------------------------------------------------------------------------------- /AIS3-EOF-qual/dragon-slayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/dragon-slayer/README.md -------------------------------------------------------------------------------- /AIS3-EOF-qual/dragon-slayer/dragon_slayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/dragon-slayer/dragon_slayer -------------------------------------------------------------------------------- /AIS3-EOF-qual/dragon-slayer/dragon_slayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/dragon-slayer/dragon_slayer.c -------------------------------------------------------------------------------- /AIS3-EOF-qual/dragon-slayer/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/dragon-slayer/exploit.py -------------------------------------------------------------------------------- /AIS3-EOF-qual/dragon-slayer/libc.so.6-14c22be9aa11316f89909e4237314e009da38883: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/dragon-slayer/libc.so.6-14c22be9aa11316f89909e4237314e009da38883 -------------------------------------------------------------------------------- /AIS3-EOF-qual/magicheap2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/magicheap2/README.md -------------------------------------------------------------------------------- /AIS3-EOF-qual/magicheap2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/magicheap2/exploit.py -------------------------------------------------------------------------------- /AIS3-EOF-qual/magicheap2/libc.so.6-14c22be9aa11316f89909e4237314e009da38883: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/magicheap2/libc.so.6-14c22be9aa11316f89909e4237314e009da38883 -------------------------------------------------------------------------------- /AIS3-EOF-qual/magicheap2/magicheap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/magicheap2/magicheap -------------------------------------------------------------------------------- /AIS3-EOF-qual/writeme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/writeme/README.md -------------------------------------------------------------------------------- /AIS3-EOF-qual/writeme/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/writeme/exploit.py -------------------------------------------------------------------------------- /AIS3-EOF-qual/writeme/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/writeme/libc.so -------------------------------------------------------------------------------- /AIS3-EOF-qual/writeme/writeme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3-EOF-qual/writeme/writeme -------------------------------------------------------------------------------- /AIS3_2016_finalCTF/README.md: -------------------------------------------------------------------------------- 1 | # AIS3_2016_finalCTF 2 | -------------------------------------------------------------------------------- /AIS3_2016_finalCTF/Remote1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3_2016_finalCTF/Remote1/README.md -------------------------------------------------------------------------------- /AIS3_2016_finalCTF/Remote1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3_2016_finalCTF/Remote1/exploit.py -------------------------------------------------------------------------------- /AIS3_2016_finalCTF/Remote2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3_2016_finalCTF/Remote2/README.md -------------------------------------------------------------------------------- /AIS3_2016_finalCTF/Remote2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AIS3_2016_finalCTF/Remote2/exploit.py -------------------------------------------------------------------------------- /ASIS-2017-final/Greg-Lestrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/ASIS-2017-final/Greg-Lestrade/README.md -------------------------------------------------------------------------------- /ASIS-2017-final/Greg-Lestrade/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/ASIS-2017-final/Greg-Lestrade/exploit.py -------------------------------------------------------------------------------- /ASIS-2017-final/Greg-Lestrade/greg_lestrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/ASIS-2017-final/Greg-Lestrade/greg_lestrade -------------------------------------------------------------------------------- /AceBear-Security-Contest/arm-exploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AceBear-Security-Contest/arm-exploit/README.md -------------------------------------------------------------------------------- /AceBear-Security-Contest/arm-exploit/arm-exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AceBear-Security-Contest/arm-exploit/arm-exploit -------------------------------------------------------------------------------- /AceBear-Security-Contest/arm-exploit/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AceBear-Security-Contest/arm-exploit/exploit.py -------------------------------------------------------------------------------- /AceBear-Security-Contest/arm-exploit/libc-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/AceBear-Security-Contest/arm-exploit/libc-2.19.so -------------------------------------------------------------------------------- /BCTF-2016/Ruin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/BCTF-2016/Ruin/README.md -------------------------------------------------------------------------------- /BCTF-2016/Ruin/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/BCTF-2016/Ruin/exploit.py -------------------------------------------------------------------------------- /BCTF-2016/Ruin/ruin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/BCTF-2016/Ruin/ruin -------------------------------------------------------------------------------- /Boston-Key-Party-2017/hiddensc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/Boston-Key-Party-2017/hiddensc/README.md -------------------------------------------------------------------------------- /Boston-Key-Party-2017/hiddensc/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/Boston-Key-Party-2017/hiddensc/exploit.py -------------------------------------------------------------------------------- /Boston-Key-Party-2017/hiddensc/hiddensc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/Boston-Key-Party-2017/hiddensc/hiddensc -------------------------------------------------------------------------------- /Boston-Key-Party-2017/hiddensc/poop.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/Boston-Key-Party-2017/hiddensc/poop.sc -------------------------------------------------------------------------------- /CSAW-2016-qual/README.md: -------------------------------------------------------------------------------- 1 | # CSAW_2016 2 | -------------------------------------------------------------------------------- /CSAW-2016-qual/tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2016-qual/tutorial/README.md -------------------------------------------------------------------------------- /CSAW-2016-qual/tutorial/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2016-qual/tutorial/exploit.py -------------------------------------------------------------------------------- /CSAW-2017-qual/Auir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Auir/README.md -------------------------------------------------------------------------------- /CSAW-2017-qual/Auir/auir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Auir/auir -------------------------------------------------------------------------------- /CSAW-2017-qual/Auir/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Auir/exploit.py -------------------------------------------------------------------------------- /CSAW-2017-qual/Auir/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Auir/libc-2.23.so -------------------------------------------------------------------------------- /CSAW-2017-qual/Pilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Pilot/README.md -------------------------------------------------------------------------------- /CSAW-2017-qual/Pilot/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Pilot/exploit.py -------------------------------------------------------------------------------- /CSAW-2017-qual/Pilot/pilot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Pilot/pilot -------------------------------------------------------------------------------- /CSAW-2017-qual/README.md: -------------------------------------------------------------------------------- 1 | # CSAW-2017-qual 2 | 3 | This is the first CTF where I solved 4 PWN challenges :D 4 | -------------------------------------------------------------------------------- /CSAW-2017-qual/SCV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/SCV/README.md -------------------------------------------------------------------------------- /CSAW-2017-qual/SCV/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/SCV/exploit.py -------------------------------------------------------------------------------- /CSAW-2017-qual/SCV/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/SCV/libc-2.23.so -------------------------------------------------------------------------------- /CSAW-2017-qual/SCV/scv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/SCV/scv -------------------------------------------------------------------------------- /CSAW-2017-qual/Zone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Zone/README.md -------------------------------------------------------------------------------- /CSAW-2017-qual/Zone/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Zone/exploit.py -------------------------------------------------------------------------------- /CSAW-2017-qual/Zone/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Zone/libc-2.23.so -------------------------------------------------------------------------------- /CSAW-2017-qual/Zone/zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/CSAW-2017-qual/Zone/zone -------------------------------------------------------------------------------- /Codegate-CTF-2017-prequalification/BabyPwn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/Codegate-CTF-2017-prequalification/BabyPwn/README.md -------------------------------------------------------------------------------- /Codegate-CTF-2017-prequalification/BabyPwn/babypwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/Codegate-CTF-2017-prequalification/BabyPwn/babypwn -------------------------------------------------------------------------------- /Codegate-CTF-2017-prequalification/BabyPwn/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/Codegate-CTF-2017-prequalification/BabyPwn/exploit.py -------------------------------------------------------------------------------- /Codegate-CTF-2017-prequalification/BabyPwn/libc-2.19_16.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/Codegate-CTF-2017-prequalification/BabyPwn/libc-2.19_16.so -------------------------------------------------------------------------------- /HITB-GSEC-CTF-2017/SENTOSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITB-GSEC-CTF-2017/SENTOSA/README.md -------------------------------------------------------------------------------- /HITB-GSEC-CTF-2017/SENTOSA/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITB-GSEC-CTF-2017/SENTOSA/exploit.py -------------------------------------------------------------------------------- /HITB-GSEC-CTF-2017/SENTOSA/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITB-GSEC-CTF-2017/SENTOSA/libc.so.6 -------------------------------------------------------------------------------- /HITB-GSEC-CTF-2017/SENTOSA/sentosa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITB-GSEC-CTF-2017/SENTOSA/sentosa -------------------------------------------------------------------------------- /HITCON-2017-qual/Impeccable-Artifact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITCON-2017-qual/Impeccable-Artifact/README.md -------------------------------------------------------------------------------- /HITCON-2017-qual/Impeccable-Artifact/artifact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITCON-2017-qual/Impeccable-Artifact/artifact -------------------------------------------------------------------------------- /HITCON-2017-qual/Impeccable-Artifact/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITCON-2017-qual/Impeccable-Artifact/exploit.py -------------------------------------------------------------------------------- /HITCON-2017-qual/Impeccable-Artifact/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITCON-2017-qual/Impeccable-Artifact/libc.so.6 -------------------------------------------------------------------------------- /HITCON-2017-qual/Impeccable-Artifact/seccomp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITCON-2017-qual/Impeccable-Artifact/seccomp.png -------------------------------------------------------------------------------- /HITCONCTF_2016_qual/README.md: -------------------------------------------------------------------------------- 1 | # HITCONCTF_2016_qual 2 | -------------------------------------------------------------------------------- /HITCONCTF_2016_qual/SecretHolder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITCONCTF_2016_qual/SecretHolder/README.md -------------------------------------------------------------------------------- /HITCONCTF_2016_qual/SecretHolder/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITCONCTF_2016_qual/SecretHolder/exploit.py -------------------------------------------------------------------------------- /HITCONCTF_2016_qual/SecretHolder/mmap_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITCONCTF_2016_qual/SecretHolder/mmap_test.md -------------------------------------------------------------------------------- /HITCONCTF_2016_qual/SecretHolder/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/HITCONCTF_2016_qual/SecretHolder/test.c -------------------------------------------------------------------------------- /MMACTF_2nd_2016/README.md: -------------------------------------------------------------------------------- 1 | # MMACTF_2nd_2016 2 | -------------------------------------------------------------------------------- /MMACTF_2nd_2016/greeting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/MMACTF_2nd_2016/greeting/README.md -------------------------------------------------------------------------------- /MMACTF_2nd_2016/greeting/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/MMACTF_2nd_2016/greeting/exploit.py -------------------------------------------------------------------------------- /MeePwn-CTF-2017/bs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/MeePwn-CTF-2017/bs/README.md -------------------------------------------------------------------------------- /MeePwn-CTF-2017/bs/bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/MeePwn-CTF-2017/bs/bit -------------------------------------------------------------------------------- /MeePwn-CTF-2017/bs/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/MeePwn-CTF-2017/bs/exploit.py -------------------------------------------------------------------------------- /MeePwn-CTF-2017/bs/libc6_2.24-3ubuntu2.2_i386.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/MeePwn-CTF-2017/bs/libc6_2.24-3ubuntu2.2_i386.so -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/README.md -------------------------------------------------------------------------------- /SECCON-2016-online-CTF/README.md: -------------------------------------------------------------------------------- 1 | # SECCON-2016-online-CTF 2 | -------------------------------------------------------------------------------- /SECCON-2016-online-CTF/checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2016-online-CTF/checker/README.md -------------------------------------------------------------------------------- /SECCON-2016-online-CTF/checker/checker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2016-online-CTF/checker/checker -------------------------------------------------------------------------------- /SECCON-2016-online-CTF/checker/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2016-online-CTF/checker/exploit.py -------------------------------------------------------------------------------- /SECCON-2016-online-CTF/cheer_msg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2016-online-CTF/cheer_msg/README.md -------------------------------------------------------------------------------- /SECCON-2016-online-CTF/cheer_msg/cheer_msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2016-online-CTF/cheer_msg/cheer_msg -------------------------------------------------------------------------------- /SECCON-2016-online-CTF/cheer_msg/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2016-online-CTF/cheer_msg/exploit.py -------------------------------------------------------------------------------- /SECCON-2016-online-CTF/cheer_msg/libc-2.19.so-c4dc1270c1449536ab2efbbe7053231f1a776368: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2016-online-CTF/cheer_msg/libc-2.19.so-c4dc1270c1449536ab2efbbe7053231f1a776368 -------------------------------------------------------------------------------- /SECCON-2017-online-CTF/Election/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2017-online-CTF/Election/README.md -------------------------------------------------------------------------------- /SECCON-2017-online-CTF/Election/election-9724a8d0a6c9ccb131200ec96752c61c0e6734cd9e1bb7b1958f8c88c0bd78fa.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2017-online-CTF/Election/election-9724a8d0a6c9ccb131200ec96752c61c0e6734cd9e1bb7b1958f8c88c0bd78fa.zip -------------------------------------------------------------------------------- /SECCON-2017-online-CTF/Election/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/SECCON-2017-online-CTF/Election/exploit.py -------------------------------------------------------------------------------- /hackluCTF_2016/README.md: -------------------------------------------------------------------------------- 1 | # hackluCTF_2016 2 | -------------------------------------------------------------------------------- /hackluCTF_2016/simplepdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/hackluCTF_2016/simplepdf/README.md -------------------------------------------------------------------------------- /hackluCTF_2016/simplepdf/extractor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/hackluCTF_2016/simplepdf/extractor.sh -------------------------------------------------------------------------------- /hackluCTF_2016/simplepdf/simplepdf_f8004a3ad0acde31c40267b9856e63fc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briansp8210/CTF-writeup/HEAD/hackluCTF_2016/simplepdf/simplepdf_f8004a3ad0acde31c40267b9856e63fc.pdf --------------------------------------------------------------------------------