├── 9774-ctf └── polydata │ ├── check_win.py │ ├── test_tsp.py │ └── win.py ├── README.md ├── campctf-2015 └── bitterman-pwn-400 │ ├── .gdb_history │ ├── README.md │ ├── bitterman │ ├── libc.so.6 │ └── win.py ├── cmu-binary-bomb ├── .envrc ├── bomb ├── flag2.py ├── flake.lock └── flake.nix ├── csaw-2016 └── pwn500 │ ├── moms_spaghetti │ ├── win.py │ ├── writeup0.py │ ├── writeup1.py │ ├── writeup2.py │ └── writeup3.py ├── defcon-openctf-2015 ├── runic │ ├── README.md │ ├── runic │ ├── runic.png │ └── win.py └── sigil │ ├── .gdb_history │ ├── README.md │ ├── sigil │ ├── sigil.png │ └── win.py ├── flareon-2018 ├── level5 │ ├── README.md │ ├── index.html │ ├── log-all.js │ ├── main.js │ ├── test.wasabi.js │ └── test.wasm └── level6 │ ├── README.md │ ├── magic000 │ ├── magic001 │ ├── magic002 │ ├── magic003 │ ├── magic004 │ ├── magic005 │ ├── magic006 │ ├── magic007 │ ├── magic008 │ ├── magic009 │ ├── reconstruct.py │ ├── small_win.py │ ├── small_win2.py │ ├── small_win3.py │ ├── small_win4.py │ └── small_win5.py ├── holidayhack-2015 ├── .DS_Store ├── firmware.bin ├── gnomes │ ├── 1_52.2.229.189 │ │ ├── .DS_Store │ │ ├── 20141226101055_1.pcap │ │ ├── 52.2.229.189_out.gnmap │ │ ├── 52.2.229.189_out.nmap │ │ ├── 52.2.229.189_out.xml │ │ ├── camera_feed.png │ │ ├── camera_feed_overlap_error.png │ │ ├── factory_cam_1.png │ │ ├── from_pcap │ │ ├── from_pcap.raw │ │ ├── gnome.conf │ │ ├── sgnet │ │ │ ├── sgnet.c │ │ │ ├── sgnet.h │ │ │ ├── sgstatd.c │ │ │ └── sgstatd.h │ │ ├── stream_1_picture │ │ └── xored.png │ ├── 2_52.34.3.80 │ │ ├── 20150225093040_2.pcap │ │ ├── 52.34.3.80_out.gnmap │ │ ├── 52.34.3.80_out.nmap │ │ ├── 52.34.3.80_out.xml │ │ ├── factory_cam_2.png │ │ ├── from_pcap │ │ ├── from_pcap.raw │ │ ├── gnome.conf │ │ ├── gnome_release_notes.txt │ │ ├── m977tny_3.jpg │ │ ├── notes │ │ ├── sgnet.c │ │ ├── sgnet.h │ │ ├── sgstatd.c │ │ ├── sgstatd.h │ │ ├── sniffer_hit_list.txt │ │ └── win.py │ ├── 3_52.64.191.71 │ │ ├── 20151201113358_3.pcap │ │ ├── factory_cam_3.png │ │ ├── from_pcap │ │ ├── from_pcap.raw │ │ ├── gnome.conf │ │ ├── portscan.gnmap │ │ ├── portscan.nmap │ │ └── portscan.xml │ ├── 4_52.192.152.132 │ │ ├── 20151203133818_4.pcap │ │ ├── factory_cam_4.png │ │ ├── files │ │ ├── from_pcap │ │ ├── from_pcap.raw │ │ ├── gnome.conf │ │ ├── portscan.gnmap │ │ ├── portscan.nmap │ │ └── portscan.xml │ ├── 5_54.233.105.81 │ │ ├── 20151215161015_5.pcap │ │ ├── factory_cam_5.png │ │ ├── from_pcap │ │ ├── from_pcap.raw │ │ ├── gnome.conf │ │ ├── portscan.gnmap │ │ ├── portscan.nmap │ │ ├── portscan.xml │ │ ├── win-findpeersh.py │ │ └── win.py │ ├── camera_feed.png │ ├── factory_cam_1.png │ ├── factory_cam_2.png │ ├── factory_cam_3.png │ ├── factory_cam_4.png │ ├── factory_cam_5.png │ ├── xor_images.py │ └── xored.png ├── notes ├── part1 │ ├── base64.png │ ├── gnome.pcap │ ├── output │ ├── output2 │ ├── parse_pcap.py │ ├── picture.jpg │ ├── response_1337.png │ └── test.py └── response ├── houseccon-2015-august ├── README.md ├── dial │ ├── check.py │ ├── dialer.cs │ └── make-prefixes.py └── pics │ ├── admin-panel.png │ ├── cap.png │ └── xss-1.png ├── mmactf-2015 ├── moneygame │ ├── README.md │ ├── libc-2.19.so │ ├── moneygame │ ├── moneygame-patched │ ├── patch.py │ ├── srand.png │ └── win.py └── rps │ ├── rps │ ├── test.py │ └── win.py ├── pico-ctf-2014 ├── README.md ├── hlextend.py ├── hlextend.pyc ├── phpscript.php ├── steves_list_backup.zip ├── steves_list_backup │ ├── Steve.png │ ├── cookies.php │ ├── includes │ │ └── classes.php │ ├── index.php │ ├── posts │ │ └── steve.txt │ ├── root_data.php │ └── templates │ │ ├── footer.php │ │ ├── header.php │ │ └── view_posts.php └── win.py ├── polictf-2015 ├── johns-library │ ├── README.md │ ├── johns-library │ └── win.py └── johns-shuffle │ ├── .gdb_history │ ├── README.md │ ├── johns-shuffle │ └── win.py ├── saintcon-pre-4 ├── README.md ├── cryptex.jpg ├── hc4.pdf ├── tumblers.png └── win.py ├── seccon-ctf-2014 └── lets-disassemble │ ├── README.md │ ├── find_language.py │ └── win.py ├── vulnhub └── brainpan3 │ ├── README.md │ ├── cryptor-buff1.png │ ├── cryptor-buff2.png │ ├── make-pwnmsg.py │ ├── msg_admin_gadgets │ ├── repo-directory.png │ └── win.py └── whitehat-2016 └── pwn3 ├── libc-2.19.so ├── readfile ├── win_1.py ├── win_2.py ├── win_3.py ├── win_4.py └── win_5.py /9774-ctf/polydata/check_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/9774-ctf/polydata/check_win.py -------------------------------------------------------------------------------- /9774-ctf/polydata/test_tsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/9774-ctf/polydata/test_tsp.py -------------------------------------------------------------------------------- /9774-ctf/polydata/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/9774-ctf/polydata/win.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/README.md -------------------------------------------------------------------------------- /campctf-2015/bitterman-pwn-400/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/campctf-2015/bitterman-pwn-400/.gdb_history -------------------------------------------------------------------------------- /campctf-2015/bitterman-pwn-400/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/campctf-2015/bitterman-pwn-400/README.md -------------------------------------------------------------------------------- /campctf-2015/bitterman-pwn-400/bitterman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/campctf-2015/bitterman-pwn-400/bitterman -------------------------------------------------------------------------------- /campctf-2015/bitterman-pwn-400/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/campctf-2015/bitterman-pwn-400/libc.so.6 -------------------------------------------------------------------------------- /campctf-2015/bitterman-pwn-400/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/campctf-2015/bitterman-pwn-400/win.py -------------------------------------------------------------------------------- /cmu-binary-bomb/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /cmu-binary-bomb/bomb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/cmu-binary-bomb/bomb -------------------------------------------------------------------------------- /cmu-binary-bomb/flag2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/cmu-binary-bomb/flag2.py -------------------------------------------------------------------------------- /cmu-binary-bomb/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/cmu-binary-bomb/flake.lock -------------------------------------------------------------------------------- /cmu-binary-bomb/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/cmu-binary-bomb/flake.nix -------------------------------------------------------------------------------- /csaw-2016/pwn500/moms_spaghetti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/csaw-2016/pwn500/moms_spaghetti -------------------------------------------------------------------------------- /csaw-2016/pwn500/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/csaw-2016/pwn500/win.py -------------------------------------------------------------------------------- /csaw-2016/pwn500/writeup0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/csaw-2016/pwn500/writeup0.py -------------------------------------------------------------------------------- /csaw-2016/pwn500/writeup1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/csaw-2016/pwn500/writeup1.py -------------------------------------------------------------------------------- /csaw-2016/pwn500/writeup2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/csaw-2016/pwn500/writeup2.py -------------------------------------------------------------------------------- /csaw-2016/pwn500/writeup3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/csaw-2016/pwn500/writeup3.py -------------------------------------------------------------------------------- /defcon-openctf-2015/runic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/defcon-openctf-2015/runic/README.md -------------------------------------------------------------------------------- /defcon-openctf-2015/runic/runic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/defcon-openctf-2015/runic/runic -------------------------------------------------------------------------------- /defcon-openctf-2015/runic/runic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/defcon-openctf-2015/runic/runic.png -------------------------------------------------------------------------------- /defcon-openctf-2015/runic/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/defcon-openctf-2015/runic/win.py -------------------------------------------------------------------------------- /defcon-openctf-2015/sigil/.gdb_history: -------------------------------------------------------------------------------- 1 | r 2 | vmmap 3 | q 4 | -------------------------------------------------------------------------------- /defcon-openctf-2015/sigil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/defcon-openctf-2015/sigil/README.md -------------------------------------------------------------------------------- /defcon-openctf-2015/sigil/sigil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/defcon-openctf-2015/sigil/sigil -------------------------------------------------------------------------------- /defcon-openctf-2015/sigil/sigil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/defcon-openctf-2015/sigil/sigil.png -------------------------------------------------------------------------------- /defcon-openctf-2015/sigil/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/defcon-openctf-2015/sigil/win.py -------------------------------------------------------------------------------- /flareon-2018/level5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level5/README.md -------------------------------------------------------------------------------- /flareon-2018/level5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level5/index.html -------------------------------------------------------------------------------- /flareon-2018/level5/log-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level5/log-all.js -------------------------------------------------------------------------------- /flareon-2018/level5/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level5/main.js -------------------------------------------------------------------------------- /flareon-2018/level5/test.wasabi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level5/test.wasabi.js -------------------------------------------------------------------------------- /flareon-2018/level5/test.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level5/test.wasm -------------------------------------------------------------------------------- /flareon-2018/level6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/README.md -------------------------------------------------------------------------------- /flareon-2018/level6/magic000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic000 -------------------------------------------------------------------------------- /flareon-2018/level6/magic001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic001 -------------------------------------------------------------------------------- /flareon-2018/level6/magic002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic002 -------------------------------------------------------------------------------- /flareon-2018/level6/magic003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic003 -------------------------------------------------------------------------------- /flareon-2018/level6/magic004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic004 -------------------------------------------------------------------------------- /flareon-2018/level6/magic005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic005 -------------------------------------------------------------------------------- /flareon-2018/level6/magic006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic006 -------------------------------------------------------------------------------- /flareon-2018/level6/magic007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic007 -------------------------------------------------------------------------------- /flareon-2018/level6/magic008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic008 -------------------------------------------------------------------------------- /flareon-2018/level6/magic009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/magic009 -------------------------------------------------------------------------------- /flareon-2018/level6/reconstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/reconstruct.py -------------------------------------------------------------------------------- /flareon-2018/level6/small_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/small_win.py -------------------------------------------------------------------------------- /flareon-2018/level6/small_win2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/small_win2.py -------------------------------------------------------------------------------- /flareon-2018/level6/small_win3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/small_win3.py -------------------------------------------------------------------------------- /flareon-2018/level6/small_win4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/small_win4.py -------------------------------------------------------------------------------- /flareon-2018/level6/small_win5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/flareon-2018/level6/small_win5.py -------------------------------------------------------------------------------- /holidayhack-2015/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/.DS_Store -------------------------------------------------------------------------------- /holidayhack-2015/firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/firmware.bin -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/.DS_Store -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/20141226101055_1.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/20141226101055_1.pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/52.2.229.189_out.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/52.2.229.189_out.gnmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/52.2.229.189_out.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/52.2.229.189_out.nmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/52.2.229.189_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/52.2.229.189_out.xml -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/camera_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/camera_feed.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/camera_feed_overlap_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/camera_feed_overlap_error.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/factory_cam_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/factory_cam_1.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/from_pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/from_pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/from_pcap.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/from_pcap.raw -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/gnome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/gnome.conf -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/sgnet/sgnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/sgnet/sgnet.c -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/sgnet/sgnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/sgnet/sgnet.h -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/sgnet/sgstatd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/sgnet/sgstatd.c -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/sgnet/sgstatd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/sgnet/sgstatd.h -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/stream_1_picture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/stream_1_picture -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/1_52.2.229.189/xored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/1_52.2.229.189/xored.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/20150225093040_2.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/20150225093040_2.pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/52.34.3.80_out.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/52.34.3.80_out.gnmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/52.34.3.80_out.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/52.34.3.80_out.nmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/52.34.3.80_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/52.34.3.80_out.xml -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/factory_cam_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/factory_cam_2.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/from_pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/from_pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/from_pcap.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/from_pcap.raw -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/gnome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/gnome.conf -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/gnome_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/gnome_release_notes.txt -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/m977tny_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/m977tny_3.jpg -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/notes -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/sgnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/sgnet.c -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/sgnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/sgnet.h -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/sgstatd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/sgstatd.c -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/sgstatd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/sgstatd.h -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/sniffer_hit_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/2_52.34.3.80/sniffer_hit_list.txt -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/2_52.34.3.80/win.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/3_52.64.191.71/20151201113358_3.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/3_52.64.191.71/20151201113358_3.pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/3_52.64.191.71/factory_cam_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/3_52.64.191.71/factory_cam_3.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/3_52.64.191.71/from_pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/3_52.64.191.71/from_pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/3_52.64.191.71/from_pcap.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/3_52.64.191.71/from_pcap.raw -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/3_52.64.191.71/gnome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/3_52.64.191.71/gnome.conf -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/3_52.64.191.71/portscan.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/3_52.64.191.71/portscan.gnmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/3_52.64.191.71/portscan.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/3_52.64.191.71/portscan.nmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/3_52.64.191.71/portscan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/3_52.64.191.71/portscan.xml -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/4_52.192.152.132/20151203133818_4.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/4_52.192.152.132/20151203133818_4.pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/4_52.192.152.132/factory_cam_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/4_52.192.152.132/factory_cam_4.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/4_52.192.152.132/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/4_52.192.152.132/files -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/4_52.192.152.132/from_pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/4_52.192.152.132/from_pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/4_52.192.152.132/from_pcap.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/4_52.192.152.132/from_pcap.raw -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/4_52.192.152.132/gnome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/4_52.192.152.132/gnome.conf -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/4_52.192.152.132/portscan.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/4_52.192.152.132/portscan.gnmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/4_52.192.152.132/portscan.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/4_52.192.152.132/portscan.nmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/4_52.192.152.132/portscan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/4_52.192.152.132/portscan.xml -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/20151215161015_5.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/20151215161015_5.pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/factory_cam_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/factory_cam_5.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/from_pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/from_pcap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/from_pcap.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/from_pcap.raw -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/gnome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/gnome.conf -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/portscan.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/portscan.gnmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/portscan.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/portscan.nmap -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/portscan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/portscan.xml -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/win-findpeersh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/win-findpeersh.py -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/5_54.233.105.81/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/5_54.233.105.81/win.py -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/camera_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/camera_feed.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/factory_cam_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/factory_cam_1.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/factory_cam_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/factory_cam_2.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/factory_cam_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/factory_cam_3.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/factory_cam_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/factory_cam_4.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/factory_cam_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/factory_cam_5.png -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/xor_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/xor_images.py -------------------------------------------------------------------------------- /holidayhack-2015/gnomes/xored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/gnomes/xored.png -------------------------------------------------------------------------------- /holidayhack-2015/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/notes -------------------------------------------------------------------------------- /holidayhack-2015/part1/base64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/part1/base64.png -------------------------------------------------------------------------------- /holidayhack-2015/part1/gnome.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/part1/gnome.pcap -------------------------------------------------------------------------------- /holidayhack-2015/part1/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/part1/output -------------------------------------------------------------------------------- /holidayhack-2015/part1/output2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/part1/output2 -------------------------------------------------------------------------------- /holidayhack-2015/part1/parse_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/part1/parse_pcap.py -------------------------------------------------------------------------------- /holidayhack-2015/part1/picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/part1/picture.jpg -------------------------------------------------------------------------------- /holidayhack-2015/part1/response_1337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/part1/response_1337.png -------------------------------------------------------------------------------- /holidayhack-2015/part1/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/part1/test.py -------------------------------------------------------------------------------- /holidayhack-2015/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/holidayhack-2015/response -------------------------------------------------------------------------------- /houseccon-2015-august/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/houseccon-2015-august/README.md -------------------------------------------------------------------------------- /houseccon-2015-august/dial/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/houseccon-2015-august/dial/check.py -------------------------------------------------------------------------------- /houseccon-2015-august/dial/dialer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/houseccon-2015-august/dial/dialer.cs -------------------------------------------------------------------------------- /houseccon-2015-august/dial/make-prefixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/houseccon-2015-august/dial/make-prefixes.py -------------------------------------------------------------------------------- /houseccon-2015-august/pics/admin-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/houseccon-2015-august/pics/admin-panel.png -------------------------------------------------------------------------------- /houseccon-2015-august/pics/cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/houseccon-2015-august/pics/cap.png -------------------------------------------------------------------------------- /houseccon-2015-august/pics/xss-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/houseccon-2015-august/pics/xss-1.png -------------------------------------------------------------------------------- /mmactf-2015/moneygame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/moneygame/README.md -------------------------------------------------------------------------------- /mmactf-2015/moneygame/libc-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/moneygame/libc-2.19.so -------------------------------------------------------------------------------- /mmactf-2015/moneygame/moneygame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/moneygame/moneygame -------------------------------------------------------------------------------- /mmactf-2015/moneygame/moneygame-patched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/moneygame/moneygame-patched -------------------------------------------------------------------------------- /mmactf-2015/moneygame/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/moneygame/patch.py -------------------------------------------------------------------------------- /mmactf-2015/moneygame/srand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/moneygame/srand.png -------------------------------------------------------------------------------- /mmactf-2015/moneygame/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/moneygame/win.py -------------------------------------------------------------------------------- /mmactf-2015/rps/rps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/rps/rps -------------------------------------------------------------------------------- /mmactf-2015/rps/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/rps/test.py -------------------------------------------------------------------------------- /mmactf-2015/rps/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/mmactf-2015/rps/win.py -------------------------------------------------------------------------------- /pico-ctf-2014/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/README.md -------------------------------------------------------------------------------- /pico-ctf-2014/hlextend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/hlextend.py -------------------------------------------------------------------------------- /pico-ctf-2014/hlextend.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/hlextend.pyc -------------------------------------------------------------------------------- /pico-ctf-2014/phpscript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/phpscript.php -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup.zip -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup/Steve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup/Steve.png -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup/cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup/cookies.php -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup/includes/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup/includes/classes.php -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup/index.php -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup/posts/steve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup/posts/steve.txt -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup/root_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup/root_data.php -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup/templates/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup/templates/footer.php -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup/templates/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup/templates/header.php -------------------------------------------------------------------------------- /pico-ctf-2014/steves_list_backup/templates/view_posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/steves_list_backup/templates/view_posts.php -------------------------------------------------------------------------------- /pico-ctf-2014/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/pico-ctf-2014/win.py -------------------------------------------------------------------------------- /polictf-2015/johns-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/polictf-2015/johns-library/README.md -------------------------------------------------------------------------------- /polictf-2015/johns-library/johns-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/polictf-2015/johns-library/johns-library -------------------------------------------------------------------------------- /polictf-2015/johns-library/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/polictf-2015/johns-library/win.py -------------------------------------------------------------------------------- /polictf-2015/johns-shuffle/.gdb_history: -------------------------------------------------------------------------------- 1 | q 2 | q 3 | exit 4 | q 5 | -------------------------------------------------------------------------------- /polictf-2015/johns-shuffle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/polictf-2015/johns-shuffle/README.md -------------------------------------------------------------------------------- /polictf-2015/johns-shuffle/johns-shuffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/polictf-2015/johns-shuffle/johns-shuffle -------------------------------------------------------------------------------- /polictf-2015/johns-shuffle/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/polictf-2015/johns-shuffle/win.py -------------------------------------------------------------------------------- /saintcon-pre-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/saintcon-pre-4/README.md -------------------------------------------------------------------------------- /saintcon-pre-4/cryptex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/saintcon-pre-4/cryptex.jpg -------------------------------------------------------------------------------- /saintcon-pre-4/hc4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/saintcon-pre-4/hc4.pdf -------------------------------------------------------------------------------- /saintcon-pre-4/tumblers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/saintcon-pre-4/tumblers.png -------------------------------------------------------------------------------- /saintcon-pre-4/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/saintcon-pre-4/win.py -------------------------------------------------------------------------------- /seccon-ctf-2014/lets-disassemble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/seccon-ctf-2014/lets-disassemble/README.md -------------------------------------------------------------------------------- /seccon-ctf-2014/lets-disassemble/find_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/seccon-ctf-2014/lets-disassemble/find_language.py -------------------------------------------------------------------------------- /seccon-ctf-2014/lets-disassemble/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/seccon-ctf-2014/lets-disassemble/win.py -------------------------------------------------------------------------------- /vulnhub/brainpan3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/vulnhub/brainpan3/README.md -------------------------------------------------------------------------------- /vulnhub/brainpan3/cryptor-buff1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/vulnhub/brainpan3/cryptor-buff1.png -------------------------------------------------------------------------------- /vulnhub/brainpan3/cryptor-buff2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/vulnhub/brainpan3/cryptor-buff2.png -------------------------------------------------------------------------------- /vulnhub/brainpan3/make-pwnmsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/vulnhub/brainpan3/make-pwnmsg.py -------------------------------------------------------------------------------- /vulnhub/brainpan3/msg_admin_gadgets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/vulnhub/brainpan3/msg_admin_gadgets -------------------------------------------------------------------------------- /vulnhub/brainpan3/repo-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/vulnhub/brainpan3/repo-directory.png -------------------------------------------------------------------------------- /vulnhub/brainpan3/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/vulnhub/brainpan3/win.py -------------------------------------------------------------------------------- /whitehat-2016/pwn3/libc-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/whitehat-2016/pwn3/libc-2.19.so -------------------------------------------------------------------------------- /whitehat-2016/pwn3/readfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/whitehat-2016/pwn3/readfile -------------------------------------------------------------------------------- /whitehat-2016/pwn3/win_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/whitehat-2016/pwn3/win_1.py -------------------------------------------------------------------------------- /whitehat-2016/pwn3/win_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/whitehat-2016/pwn3/win_2.py -------------------------------------------------------------------------------- /whitehat-2016/pwn3/win_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/whitehat-2016/pwn3/win_3.py -------------------------------------------------------------------------------- /whitehat-2016/pwn3/win_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/whitehat-2016/pwn3/win_4.py -------------------------------------------------------------------------------- /whitehat-2016/pwn3/win_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctfhacker/ctf-writeups/HEAD/whitehat-2016/pwn3/win_5.py --------------------------------------------------------------------------------