├── README.md ├── asis-quals-2015 └── simple-algorithm │ ├── README.md │ ├── enc.txt │ ├── simple_algorithm.py │ └── solve.py ├── asis-quals-2020 ├── mask-store │ ├── README.md │ ├── app.py │ └── img │ │ └── maskstore.png └── secure-secrets │ ├── README.md │ ├── configs.zip │ ├── convert.py │ ├── img │ └── less-secure-secrets.png │ └── solve.py ├── cybercamp-final-2017 ├── README.md └── img │ ├── A01-flag.png │ ├── A01-source.png │ ├── A03-flag.png │ ├── A03-hydra.png │ ├── A04-flag.png │ ├── A05-flag.png │ ├── A05-shell.png │ ├── B01-abcd.png │ ├── B01-flag.png │ ├── B01-source.png │ ├── B01-web.png │ ├── B05-flag.png │ ├── X01-dirty-shell.png │ ├── X01-flag.png │ ├── X01-shadow.png │ ├── X01-upload-shell.png │ ├── X02-flag.png │ ├── X03-decoded.png │ ├── X03-file.png │ ├── retos1.png │ ├── retos2.png │ └── retos3.png ├── cybercamp-final-2018 ├── README.md └── img │ ├── 01-flag.png │ ├── 02-flag.png │ ├── 04-apimonitor-user.png │ ├── 05-x64dbg.png │ ├── 06-elevate.png │ ├── 06-file-exfilt.png │ ├── 06-listing.png │ ├── 06-nmap.png │ ├── 06-shell.png │ ├── 07-pass.png │ ├── 07-script.png │ ├── 08-exif1.png │ ├── 08-exif2.png │ ├── 09-level0.png │ ├── 17-blog.png │ ├── 17-flag.png │ ├── 17-interactive-reverse-shell.png │ ├── 17-mysql-service.png │ ├── 17-patatablog.png │ ├── 17-upload-image.png │ ├── 17-wordpress-install.png │ ├── 17-wordpress-plugin.png │ ├── 17-wpconfig-deleted.png │ ├── 18-nikto.png │ ├── 18-nmap.png │ ├── email-exfilt.png │ ├── network.png │ ├── retos1.png │ ├── retos2.png │ └── retos3.png ├── cybercamp-quals-2016 └── web4-patataprinting │ ├── README.md │ └── img │ ├── 01-index.png │ ├── 02-token403.png │ ├── 03-phpmyadmin-login.png │ ├── 04-phpmyadmin-version.png │ ├── 05-phpmyadmin-nodisp.png │ ├── 06-phpmyadmin-versiones.png │ ├── 07-dirsearch.png │ ├── 08-md5-upgrade.png │ ├── 09-translators.png │ ├── 10-solucion.png │ └── 11-phpmyadmin.png ├── cybercamp-quals-2018 ├── 01-toxinas-aereas │ ├── README.md │ └── img │ │ └── wireshark.png ├── 02-vivan-las-vegas │ ├── 1.b64 │ ├── 1.bin │ ├── 1.hash │ ├── 2.b64 │ ├── 2.bin │ ├── README.md │ └── img │ │ └── pgp.png ├── 07-vacaciones │ └── README.md ├── 09-monkey-island │ ├── README.md │ ├── bandera.png │ ├── bandera64.txt │ └── img │ │ ├── piet-execute.png │ │ └── piet.png ├── 11-la-orden-del-temple │ ├── 11.png │ └── README.md ├── 12-seguridad-nacional │ └── README.md ├── 14-rick-hacksley │ ├── README.md │ └── img │ │ └── morse.png └── 15-hack-or-escape │ ├── README.md │ └── img │ ├── BackupProtector.png │ ├── dnspy.png │ ├── evalb.png │ ├── snow.png │ └── vs.png ├── ecsc-2016 └── optimus-prime │ ├── README.md │ ├── README2.md │ ├── files │ ├── key.parts │ ├── my.pub │ └── secret │ └── img │ └── logo.png ├── ecsc-2018 ├── aes1 │ ├── README.md │ ├── crypto-bruteforce.c │ └── files │ │ ├── cipher │ │ ├── crypto │ │ └── crypto.c └── aes2 │ ├── README.md │ ├── crypto-bruteforce.c │ ├── files │ ├── cipher │ └── crypto │ └── img │ └── keygen.jpg ├── fwhibbit-2017 ├── impossible-is-nothing │ ├── README.md │ └── img │ │ ├── 1.png │ │ ├── 10-class.png │ │ ├── 11-ajax.png │ │ ├── 12-wrappers-fail.png │ │ ├── 13-tmpfile-fail.png │ │ ├── 14-symlink-phpinfo.png │ │ ├── 15-wrappers-enabled.png │ │ ├── 16-shell.png │ │ ├── 17-ajax-code.png │ │ ├── 2-system-disabled.png │ │ ├── 3-wrapper-disabled.png │ │ ├── 4-phpinfo.png │ │ ├── 6-socket.jpg │ │ ├── 7-ruby-script.png │ │ ├── 8-flag.png │ │ ├── disable-functions.png │ │ ├── portscan.png │ │ ├── scandir-html.png │ │ └── scandir.png └── wash-your-money │ ├── README.md │ └── img │ ├── 01-web.png │ ├── 02-contact.png │ ├── 03-upload.png │ ├── 04-upload-no-valido.png │ ├── 05-upload-docx.png │ ├── 06-upload-ok.png │ ├── 07-rewrite.png │ ├── 08-fuzzing-parameter.png │ ├── 09-montar-zip.png │ ├── 10-shell.png │ └── 14-flag.png ├── google-ctf-2019 └── gLotto │ ├── README.md │ ├── gLotto-solve.py │ ├── gLotto.php │ ├── gLotto.sql │ └── img │ ├── gLotto-001.png │ └── gLotto-002.png ├── hacker101 ├── README.md ├── img │ ├── hacker101.png │ ├── level00.png │ ├── level01-edit.png │ ├── level01-xss.png │ ├── level01.png │ ├── level02-page3.png │ ├── level02.png │ ├── level03-cbc.png │ ├── level03-cbc2.png │ ├── level03-error.png │ ├── level03-paddingoracle.png │ ├── level03.png │ ├── level05-env.png │ ├── level05.png │ ├── level06-admin.png │ ├── level06-php.png │ ├── level06.png │ ├── level07.png │ ├── level08-badlink.png │ ├── level08-newuser.png │ ├── level08-password.png │ ├── level08-post.png │ ├── level08-posturl.png │ └── level08.png ├── level01.md ├── level02-03-micro-cms.md ├── level04-encrypted-pastebin.md ├── level05-photo-gallery.md ├── level06-blog.md ├── level07-postbook.md ├── level08-ticketastic.md ├── scripts │ ├── level04-encrypted-pastebin │ │ ├── exploit.py │ │ ├── exploit2.py │ │ ├── padding_oracle.py │ │ └── padding_oracle_threads.py │ └── level05-photo-gallery │ │ └── sqli.py └── sources │ ├── level05-photo-gallery │ └── main.py │ └── level06-blog │ ├── 000-default.conf │ ├── Dockerfile │ ├── admin.inc.auth.php │ ├── admin.inc.php │ ├── index.php │ ├── php.ini │ └── setup.sh ├── hackplayers-2018 ├── cisco │ ├── README.md │ └── img │ │ ├── cisco-b374k.png │ │ ├── cisco-cadaver.png │ │ ├── cisco-ssh.png │ │ ├── cisco-web1.png │ │ └── cisco-web2.png ├── jax │ ├── README.md │ └── img │ │ ├── jax-browserexploit.png │ │ ├── jax-dhcpv6.png │ │ ├── jax-elevate.png │ │ ├── jax-firefox.png │ │ ├── jax-nmap2.png │ │ ├── jax-responder-hash.png │ │ ├── jax-responder1.png │ │ ├── jax-winexe.png │ │ └── jax-wireshark-cepheus.png ├── josie │ ├── README.md │ └── img │ │ ├── josie-hnb.png │ │ ├── josie-upload.png │ │ └── josie-web1.png └── sammy │ ├── README.md │ └── img │ ├── sammy-root.png │ └── sammy-shell.png ├── hackplayers-2020 ├── dream-agenda │ ├── README.md │ └── solve.py ├── kojo-no-mai │ └── README.md └── move-the-flag │ ├── README.md │ └── solve.py ├── honeycon-2018 └── rev4 │ ├── README.md │ ├── img │ ├── angr.png │ ├── r2-VV-main.png │ ├── r2-VV.png │ └── solve.png │ ├── rev4 │ └── solve.py ├── huawei-2018 ├── 01-abandoned-silo │ ├── README.md │ ├── img │ │ ├── flag.png │ │ └── web.png │ └── source.php ├── 02-paranormalglitch │ ├── README.md │ └── img │ │ ├── gatos-flag.png │ │ ├── gatos.png │ │ └── png-hex.png ├── 03-backdoors_01 │ ├── README.md │ └── img │ │ ├── vm-error.png │ │ └── vm-flag.png ├── 04-backdoors_02 │ ├── README.md │ └── img │ │ ├── vm-autosolver.png │ │ ├── vm-ls.png │ │ └── vm-ps.png ├── 05-cybercrime101 │ ├── README.md │ └── img │ │ └── malwarecode.png ├── 06-armoured-kitten │ ├── README.md │ ├── img │ │ ├── angr-solve.png │ │ ├── flag.png │ │ ├── flag2.png │ │ ├── reversing-arm.png │ │ └── xrays.png │ ├── re1 │ └── solve.py ├── 07-cryptokenita │ ├── README.md │ ├── huawei-crypto.js │ └── img │ │ ├── flag.png │ │ ├── flag2.png │ │ └── utf.png └── 08-login-denoid │ ├── README.md │ ├── img │ ├── admin-panel.png │ ├── flag.png │ ├── hash-cracking.png │ ├── login-getter.png │ ├── login.png │ ├── loginadmin.png │ ├── sqli-adminpassword.png │ └── sqli-glob-size.png │ └── sqli-boolean-huawei.py ├── hxp-2020 └── heiko │ ├── README.md │ ├── heiko-16fc430532ab60cc.tar.xz │ ├── img │ └── heiko.png │ └── index.php ├── isitdtu-2019 └── EasyPHP │ ├── README.md │ └── img │ ├── phpinfo.jpg │ ├── readfile.jpg │ └── scandir.jpg ├── kernel-2015 ├── crypto300 │ └── README.md └── networking │ ├── README.md │ ├── img │ ├── capturas-teclado.png │ └── usb-cap.png │ └── network300.cap ├── navajanegra-2016 ├── web1-mongojojo │ ├── MongoJojo-threads-bit.py │ ├── MongoJojo-threads.py │ ├── MongoJojo.py │ ├── README.md │ └── img │ │ └── mongojojo.png └── web2-javascript │ ├── README.md │ └── img │ ├── mojojojo-execute.png │ ├── mojojojo-login.png │ ├── mojojojo-solucion.png │ └── mojojojo-terminal.png ├── navajanegra-2019 ├── Gamma-GPS │ ├── README.md │ ├── gamma-gps-source.php │ └── img │ │ ├── gammagps-01.png │ │ ├── gammagps-02.png │ │ ├── gammagps-03.png │ │ ├── gammagps-devel-debug.png │ │ ├── gammagps-flag.png │ │ ├── gammagps-sql.png │ │ └── gammagps-users.png ├── MoonCasino │ ├── README.md │ ├── img │ │ ├── mooncasino-01.png │ │ ├── mooncasino-02-source.png │ │ └── mooncasino-03-flag.png │ └── mooncasino-source.php └── Oracle │ ├── README.md │ ├── app.js │ ├── img │ └── oracle-v1-flag.png │ └── source.js ├── nullcon-2018 └── exploiting1 │ ├── README.md │ ├── img │ ├── exp1-001.png │ ├── exp1-002.png │ ├── exp1-003.png │ ├── exp1-004.png │ └── exp1-source.png │ └── nullcon2018-exp1.py ├── secadmin-2017 └── reversing-angr │ ├── README.md │ ├── ctf.hex │ ├── img │ ├── 01-usage.png │ ├── 02-ctf-hex.png │ ├── 03-fail.png │ ├── angr1.png │ ├── hash-code.png │ ├── hash-modified.png │ ├── hash.png │ ├── print-gdb.png │ ├── print.png │ └── solution1.png │ ├── secadmin │ ├── secadmin-angr.py │ ├── secadmin-bruteforce-6+3.py │ ├── secadmin-bruteforce-recursive.py │ └── secadmin-bruteforce.py ├── seccon-2018 └── GhostKingdom │ ├── README.md │ ├── img │ ├── ghostkingdom-001.png │ ├── ghostkingdom-002.png │ ├── ghostkingdom-003.png │ ├── ghostkingdom-004.png │ ├── ghostkingdom-005.png │ ├── ghostkingdom-006.png │ ├── ghostkingdom-007.png │ ├── ghostkingdom-008.png │ ├── ghostkingdom-009.png │ ├── ghostkingdom-010.png │ ├── ghostkingdom-011.png │ ├── ghostkingdom-012.png │ └── ghostkingdom-flag.png │ ├── seccon-ghostkingdom.py │ └── solve.py └── swamp-ctf-2019 └── cartographers-capture ├── README.md ├── flag.bmp ├── img ├── flag-flip.png ├── flag.png ├── flag0.png └── fuk.jpg ├── ip_addresses.txt ├── paint-decimal.py └── paint-ip.py /README.md: -------------------------------------------------------------------------------- 1 | # CTF Writeups -------------------------------------------------------------------------------- /asis-quals-2015/simple-algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2015/simple-algorithm/README.md -------------------------------------------------------------------------------- /asis-quals-2015/simple-algorithm/enc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2015/simple-algorithm/enc.txt -------------------------------------------------------------------------------- /asis-quals-2015/simple-algorithm/simple_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2015/simple-algorithm/simple_algorithm.py -------------------------------------------------------------------------------- /asis-quals-2015/simple-algorithm/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2015/simple-algorithm/solve.py -------------------------------------------------------------------------------- /asis-quals-2020/mask-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2020/mask-store/README.md -------------------------------------------------------------------------------- /asis-quals-2020/mask-store/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2020/mask-store/app.py -------------------------------------------------------------------------------- /asis-quals-2020/mask-store/img/maskstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2020/mask-store/img/maskstore.png -------------------------------------------------------------------------------- /asis-quals-2020/secure-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2020/secure-secrets/README.md -------------------------------------------------------------------------------- /asis-quals-2020/secure-secrets/configs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2020/secure-secrets/configs.zip -------------------------------------------------------------------------------- /asis-quals-2020/secure-secrets/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2020/secure-secrets/convert.py -------------------------------------------------------------------------------- /asis-quals-2020/secure-secrets/img/less-secure-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2020/secure-secrets/img/less-secure-secrets.png -------------------------------------------------------------------------------- /asis-quals-2020/secure-secrets/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/asis-quals-2020/secure-secrets/solve.py -------------------------------------------------------------------------------- /cybercamp-final-2017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/README.md -------------------------------------------------------------------------------- /cybercamp-final-2017/img/A01-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/A01-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/A01-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/A01-source.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/A03-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/A03-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/A03-hydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/A03-hydra.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/A04-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/A04-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/A05-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/A05-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/A05-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/A05-shell.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/B01-abcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/B01-abcd.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/B01-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/B01-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/B01-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/B01-source.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/B01-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/B01-web.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/B05-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/B05-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/X01-dirty-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/X01-dirty-shell.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/X01-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/X01-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/X01-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/X01-shadow.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/X01-upload-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/X01-upload-shell.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/X02-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/X02-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/X03-decoded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/X03-decoded.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/X03-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/X03-file.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/retos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/retos1.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/retos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/retos2.png -------------------------------------------------------------------------------- /cybercamp-final-2017/img/retos3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2017/img/retos3.png -------------------------------------------------------------------------------- /cybercamp-final-2018/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/README.md -------------------------------------------------------------------------------- /cybercamp-final-2018/img/01-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/01-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/02-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/02-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/04-apimonitor-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/04-apimonitor-user.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/05-x64dbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/05-x64dbg.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/06-elevate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/06-elevate.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/06-file-exfilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/06-file-exfilt.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/06-listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/06-listing.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/06-nmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/06-nmap.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/06-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/06-shell.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/07-pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/07-pass.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/07-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/07-script.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/08-exif1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/08-exif1.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/08-exif2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/08-exif2.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/09-level0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/09-level0.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/17-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/17-blog.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/17-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/17-flag.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/17-interactive-reverse-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/17-interactive-reverse-shell.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/17-mysql-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/17-mysql-service.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/17-patatablog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/17-patatablog.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/17-upload-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/17-upload-image.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/17-wordpress-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/17-wordpress-install.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/17-wordpress-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/17-wordpress-plugin.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/17-wpconfig-deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/17-wpconfig-deleted.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/18-nikto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/18-nikto.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/18-nmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/18-nmap.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/email-exfilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/email-exfilt.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/network.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/retos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/retos1.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/retos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/retos2.png -------------------------------------------------------------------------------- /cybercamp-final-2018/img/retos3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-final-2018/img/retos3.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/README.md -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/01-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/01-index.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/02-token403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/02-token403.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/03-phpmyadmin-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/03-phpmyadmin-login.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/04-phpmyadmin-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/04-phpmyadmin-version.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/05-phpmyadmin-nodisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/05-phpmyadmin-nodisp.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/06-phpmyadmin-versiones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/06-phpmyadmin-versiones.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/07-dirsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/07-dirsearch.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/08-md5-upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/08-md5-upgrade.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/09-translators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/09-translators.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/10-solucion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/10-solucion.png -------------------------------------------------------------------------------- /cybercamp-quals-2016/web4-patataprinting/img/11-phpmyadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2016/web4-patataprinting/img/11-phpmyadmin.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/01-toxinas-aereas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/01-toxinas-aereas/README.md -------------------------------------------------------------------------------- /cybercamp-quals-2018/01-toxinas-aereas/img/wireshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/01-toxinas-aereas/img/wireshark.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/02-vivan-las-vegas/1.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/02-vivan-las-vegas/1.b64 -------------------------------------------------------------------------------- /cybercamp-quals-2018/02-vivan-las-vegas/1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/02-vivan-las-vegas/1.bin -------------------------------------------------------------------------------- /cybercamp-quals-2018/02-vivan-las-vegas/1.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/02-vivan-las-vegas/1.hash -------------------------------------------------------------------------------- /cybercamp-quals-2018/02-vivan-las-vegas/2.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/02-vivan-las-vegas/2.b64 -------------------------------------------------------------------------------- /cybercamp-quals-2018/02-vivan-las-vegas/2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/02-vivan-las-vegas/2.bin -------------------------------------------------------------------------------- /cybercamp-quals-2018/02-vivan-las-vegas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/02-vivan-las-vegas/README.md -------------------------------------------------------------------------------- /cybercamp-quals-2018/02-vivan-las-vegas/img/pgp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/02-vivan-las-vegas/img/pgp.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/07-vacaciones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/07-vacaciones/README.md -------------------------------------------------------------------------------- /cybercamp-quals-2018/09-monkey-island/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/09-monkey-island/README.md -------------------------------------------------------------------------------- /cybercamp-quals-2018/09-monkey-island/bandera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/09-monkey-island/bandera.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/09-monkey-island/bandera64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/09-monkey-island/bandera64.txt -------------------------------------------------------------------------------- /cybercamp-quals-2018/09-monkey-island/img/piet-execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/09-monkey-island/img/piet-execute.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/09-monkey-island/img/piet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/09-monkey-island/img/piet.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/11-la-orden-del-temple/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/11-la-orden-del-temple/11.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/11-la-orden-del-temple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/11-la-orden-del-temple/README.md -------------------------------------------------------------------------------- /cybercamp-quals-2018/12-seguridad-nacional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/12-seguridad-nacional/README.md -------------------------------------------------------------------------------- /cybercamp-quals-2018/14-rick-hacksley/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/14-rick-hacksley/README.md -------------------------------------------------------------------------------- /cybercamp-quals-2018/14-rick-hacksley/img/morse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/14-rick-hacksley/img/morse.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/15-hack-or-escape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/15-hack-or-escape/README.md -------------------------------------------------------------------------------- /cybercamp-quals-2018/15-hack-or-escape/img/BackupProtector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/15-hack-or-escape/img/BackupProtector.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/15-hack-or-escape/img/dnspy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/15-hack-or-escape/img/dnspy.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/15-hack-or-escape/img/evalb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/15-hack-or-escape/img/evalb.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/15-hack-or-escape/img/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/15-hack-or-escape/img/snow.png -------------------------------------------------------------------------------- /cybercamp-quals-2018/15-hack-or-escape/img/vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/cybercamp-quals-2018/15-hack-or-escape/img/vs.png -------------------------------------------------------------------------------- /ecsc-2016/optimus-prime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2016/optimus-prime/README.md -------------------------------------------------------------------------------- /ecsc-2016/optimus-prime/README2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2016/optimus-prime/README2.md -------------------------------------------------------------------------------- /ecsc-2016/optimus-prime/files/key.parts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2016/optimus-prime/files/key.parts -------------------------------------------------------------------------------- /ecsc-2016/optimus-prime/files/my.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2016/optimus-prime/files/my.pub -------------------------------------------------------------------------------- /ecsc-2016/optimus-prime/files/secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2016/optimus-prime/files/secret -------------------------------------------------------------------------------- /ecsc-2016/optimus-prime/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2016/optimus-prime/img/logo.png -------------------------------------------------------------------------------- /ecsc-2018/aes1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes1/README.md -------------------------------------------------------------------------------- /ecsc-2018/aes1/crypto-bruteforce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes1/crypto-bruteforce.c -------------------------------------------------------------------------------- /ecsc-2018/aes1/files/cipher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes1/files/cipher -------------------------------------------------------------------------------- /ecsc-2018/aes1/files/crypto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes1/files/crypto -------------------------------------------------------------------------------- /ecsc-2018/aes1/files/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes1/files/crypto.c -------------------------------------------------------------------------------- /ecsc-2018/aes2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes2/README.md -------------------------------------------------------------------------------- /ecsc-2018/aes2/crypto-bruteforce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes2/crypto-bruteforce.c -------------------------------------------------------------------------------- /ecsc-2018/aes2/files/cipher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes2/files/cipher -------------------------------------------------------------------------------- /ecsc-2018/aes2/files/crypto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes2/files/crypto -------------------------------------------------------------------------------- /ecsc-2018/aes2/img/keygen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/ecsc-2018/aes2/img/keygen.jpg -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/README.md -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/1.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/10-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/10-class.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/11-ajax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/11-ajax.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/12-wrappers-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/12-wrappers-fail.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/13-tmpfile-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/13-tmpfile-fail.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/14-symlink-phpinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/14-symlink-phpinfo.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/15-wrappers-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/15-wrappers-enabled.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/16-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/16-shell.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/17-ajax-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/17-ajax-code.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/2-system-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/2-system-disabled.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/3-wrapper-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/3-wrapper-disabled.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/4-phpinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/4-phpinfo.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/6-socket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/6-socket.jpg -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/7-ruby-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/7-ruby-script.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/8-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/8-flag.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/disable-functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/disable-functions.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/portscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/portscan.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/scandir-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/scandir-html.png -------------------------------------------------------------------------------- /fwhibbit-2017/impossible-is-nothing/img/scandir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/impossible-is-nothing/img/scandir.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/README.md -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/01-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/01-web.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/02-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/02-contact.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/03-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/03-upload.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/04-upload-no-valido.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/04-upload-no-valido.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/05-upload-docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/05-upload-docx.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/06-upload-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/06-upload-ok.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/07-rewrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/07-rewrite.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/08-fuzzing-parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/08-fuzzing-parameter.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/09-montar-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/09-montar-zip.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/10-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/10-shell.png -------------------------------------------------------------------------------- /fwhibbit-2017/wash-your-money/img/14-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/fwhibbit-2017/wash-your-money/img/14-flag.png -------------------------------------------------------------------------------- /google-ctf-2019/gLotto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/google-ctf-2019/gLotto/README.md -------------------------------------------------------------------------------- /google-ctf-2019/gLotto/gLotto-solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/google-ctf-2019/gLotto/gLotto-solve.py -------------------------------------------------------------------------------- /google-ctf-2019/gLotto/gLotto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/google-ctf-2019/gLotto/gLotto.php -------------------------------------------------------------------------------- /google-ctf-2019/gLotto/gLotto.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/google-ctf-2019/gLotto/gLotto.sql -------------------------------------------------------------------------------- /google-ctf-2019/gLotto/img/gLotto-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/google-ctf-2019/gLotto/img/gLotto-001.png -------------------------------------------------------------------------------- /google-ctf-2019/gLotto/img/gLotto-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/google-ctf-2019/gLotto/img/gLotto-002.png -------------------------------------------------------------------------------- /hacker101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/README.md -------------------------------------------------------------------------------- /hacker101/img/hacker101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/hacker101.png -------------------------------------------------------------------------------- /hacker101/img/level00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level00.png -------------------------------------------------------------------------------- /hacker101/img/level01-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level01-edit.png -------------------------------------------------------------------------------- /hacker101/img/level01-xss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level01-xss.png -------------------------------------------------------------------------------- /hacker101/img/level01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level01.png -------------------------------------------------------------------------------- /hacker101/img/level02-page3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level02-page3.png -------------------------------------------------------------------------------- /hacker101/img/level02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level02.png -------------------------------------------------------------------------------- /hacker101/img/level03-cbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level03-cbc.png -------------------------------------------------------------------------------- /hacker101/img/level03-cbc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level03-cbc2.png -------------------------------------------------------------------------------- /hacker101/img/level03-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level03-error.png -------------------------------------------------------------------------------- /hacker101/img/level03-paddingoracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level03-paddingoracle.png -------------------------------------------------------------------------------- /hacker101/img/level03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level03.png -------------------------------------------------------------------------------- /hacker101/img/level05-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level05-env.png -------------------------------------------------------------------------------- /hacker101/img/level05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level05.png -------------------------------------------------------------------------------- /hacker101/img/level06-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level06-admin.png -------------------------------------------------------------------------------- /hacker101/img/level06-php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level06-php.png -------------------------------------------------------------------------------- /hacker101/img/level06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level06.png -------------------------------------------------------------------------------- /hacker101/img/level07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level07.png -------------------------------------------------------------------------------- /hacker101/img/level08-badlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level08-badlink.png -------------------------------------------------------------------------------- /hacker101/img/level08-newuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level08-newuser.png -------------------------------------------------------------------------------- /hacker101/img/level08-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level08-password.png -------------------------------------------------------------------------------- /hacker101/img/level08-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level08-post.png -------------------------------------------------------------------------------- /hacker101/img/level08-posturl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level08-posturl.png -------------------------------------------------------------------------------- /hacker101/img/level08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/img/level08.png -------------------------------------------------------------------------------- /hacker101/level01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/level01.md -------------------------------------------------------------------------------- /hacker101/level02-03-micro-cms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/level02-03-micro-cms.md -------------------------------------------------------------------------------- /hacker101/level04-encrypted-pastebin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/level04-encrypted-pastebin.md -------------------------------------------------------------------------------- /hacker101/level05-photo-gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/level05-photo-gallery.md -------------------------------------------------------------------------------- /hacker101/level06-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/level06-blog.md -------------------------------------------------------------------------------- /hacker101/level07-postbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/level07-postbook.md -------------------------------------------------------------------------------- /hacker101/level08-ticketastic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/level08-ticketastic.md -------------------------------------------------------------------------------- /hacker101/scripts/level04-encrypted-pastebin/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/scripts/level04-encrypted-pastebin/exploit.py -------------------------------------------------------------------------------- /hacker101/scripts/level04-encrypted-pastebin/exploit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/scripts/level04-encrypted-pastebin/exploit2.py -------------------------------------------------------------------------------- /hacker101/scripts/level04-encrypted-pastebin/padding_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/scripts/level04-encrypted-pastebin/padding_oracle.py -------------------------------------------------------------------------------- /hacker101/scripts/level04-encrypted-pastebin/padding_oracle_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/scripts/level04-encrypted-pastebin/padding_oracle_threads.py -------------------------------------------------------------------------------- /hacker101/scripts/level05-photo-gallery/sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/scripts/level05-photo-gallery/sqli.py -------------------------------------------------------------------------------- /hacker101/sources/level05-photo-gallery/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/sources/level05-photo-gallery/main.py -------------------------------------------------------------------------------- /hacker101/sources/level06-blog/000-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/sources/level06-blog/000-default.conf -------------------------------------------------------------------------------- /hacker101/sources/level06-blog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/sources/level06-blog/Dockerfile -------------------------------------------------------------------------------- /hacker101/sources/level06-blog/admin.inc.auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/sources/level06-blog/admin.inc.auth.php -------------------------------------------------------------------------------- /hacker101/sources/level06-blog/admin.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/sources/level06-blog/admin.inc.php -------------------------------------------------------------------------------- /hacker101/sources/level06-blog/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/sources/level06-blog/index.php -------------------------------------------------------------------------------- /hacker101/sources/level06-blog/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/sources/level06-blog/php.ini -------------------------------------------------------------------------------- /hacker101/sources/level06-blog/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hacker101/sources/level06-blog/setup.sh -------------------------------------------------------------------------------- /hackplayers-2018/cisco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/cisco/README.md -------------------------------------------------------------------------------- /hackplayers-2018/cisco/img/cisco-b374k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/cisco/img/cisco-b374k.png -------------------------------------------------------------------------------- /hackplayers-2018/cisco/img/cisco-cadaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/cisco/img/cisco-cadaver.png -------------------------------------------------------------------------------- /hackplayers-2018/cisco/img/cisco-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/cisco/img/cisco-ssh.png -------------------------------------------------------------------------------- /hackplayers-2018/cisco/img/cisco-web1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/cisco/img/cisco-web1.png -------------------------------------------------------------------------------- /hackplayers-2018/cisco/img/cisco-web2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/cisco/img/cisco-web2.png -------------------------------------------------------------------------------- /hackplayers-2018/jax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/README.md -------------------------------------------------------------------------------- /hackplayers-2018/jax/img/jax-browserexploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/img/jax-browserexploit.png -------------------------------------------------------------------------------- /hackplayers-2018/jax/img/jax-dhcpv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/img/jax-dhcpv6.png -------------------------------------------------------------------------------- /hackplayers-2018/jax/img/jax-elevate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/img/jax-elevate.png -------------------------------------------------------------------------------- /hackplayers-2018/jax/img/jax-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/img/jax-firefox.png -------------------------------------------------------------------------------- /hackplayers-2018/jax/img/jax-nmap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/img/jax-nmap2.png -------------------------------------------------------------------------------- /hackplayers-2018/jax/img/jax-responder-hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/img/jax-responder-hash.png -------------------------------------------------------------------------------- /hackplayers-2018/jax/img/jax-responder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/img/jax-responder1.png -------------------------------------------------------------------------------- /hackplayers-2018/jax/img/jax-winexe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/img/jax-winexe.png -------------------------------------------------------------------------------- /hackplayers-2018/jax/img/jax-wireshark-cepheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/jax/img/jax-wireshark-cepheus.png -------------------------------------------------------------------------------- /hackplayers-2018/josie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/josie/README.md -------------------------------------------------------------------------------- /hackplayers-2018/josie/img/josie-hnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/josie/img/josie-hnb.png -------------------------------------------------------------------------------- /hackplayers-2018/josie/img/josie-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/josie/img/josie-upload.png -------------------------------------------------------------------------------- /hackplayers-2018/josie/img/josie-web1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/josie/img/josie-web1.png -------------------------------------------------------------------------------- /hackplayers-2018/sammy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/sammy/README.md -------------------------------------------------------------------------------- /hackplayers-2018/sammy/img/sammy-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/sammy/img/sammy-root.png -------------------------------------------------------------------------------- /hackplayers-2018/sammy/img/sammy-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2018/sammy/img/sammy-shell.png -------------------------------------------------------------------------------- /hackplayers-2020/dream-agenda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2020/dream-agenda/README.md -------------------------------------------------------------------------------- /hackplayers-2020/dream-agenda/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2020/dream-agenda/solve.py -------------------------------------------------------------------------------- /hackplayers-2020/kojo-no-mai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2020/kojo-no-mai/README.md -------------------------------------------------------------------------------- /hackplayers-2020/move-the-flag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2020/move-the-flag/README.md -------------------------------------------------------------------------------- /hackplayers-2020/move-the-flag/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hackplayers-2020/move-the-flag/solve.py -------------------------------------------------------------------------------- /honeycon-2018/rev4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/honeycon-2018/rev4/README.md -------------------------------------------------------------------------------- /honeycon-2018/rev4/img/angr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/honeycon-2018/rev4/img/angr.png -------------------------------------------------------------------------------- /honeycon-2018/rev4/img/r2-VV-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/honeycon-2018/rev4/img/r2-VV-main.png -------------------------------------------------------------------------------- /honeycon-2018/rev4/img/r2-VV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/honeycon-2018/rev4/img/r2-VV.png -------------------------------------------------------------------------------- /honeycon-2018/rev4/img/solve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/honeycon-2018/rev4/img/solve.png -------------------------------------------------------------------------------- /honeycon-2018/rev4/rev4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/honeycon-2018/rev4/rev4 -------------------------------------------------------------------------------- /honeycon-2018/rev4/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/honeycon-2018/rev4/solve.py -------------------------------------------------------------------------------- /huawei-2018/01-abandoned-silo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/01-abandoned-silo/README.md -------------------------------------------------------------------------------- /huawei-2018/01-abandoned-silo/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/01-abandoned-silo/img/flag.png -------------------------------------------------------------------------------- /huawei-2018/01-abandoned-silo/img/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/01-abandoned-silo/img/web.png -------------------------------------------------------------------------------- /huawei-2018/01-abandoned-silo/source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/01-abandoned-silo/source.php -------------------------------------------------------------------------------- /huawei-2018/02-paranormalglitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/02-paranormalglitch/README.md -------------------------------------------------------------------------------- /huawei-2018/02-paranormalglitch/img/gatos-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/02-paranormalglitch/img/gatos-flag.png -------------------------------------------------------------------------------- /huawei-2018/02-paranormalglitch/img/gatos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/02-paranormalglitch/img/gatos.png -------------------------------------------------------------------------------- /huawei-2018/02-paranormalglitch/img/png-hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/02-paranormalglitch/img/png-hex.png -------------------------------------------------------------------------------- /huawei-2018/03-backdoors_01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/03-backdoors_01/README.md -------------------------------------------------------------------------------- /huawei-2018/03-backdoors_01/img/vm-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/03-backdoors_01/img/vm-error.png -------------------------------------------------------------------------------- /huawei-2018/03-backdoors_01/img/vm-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/03-backdoors_01/img/vm-flag.png -------------------------------------------------------------------------------- /huawei-2018/04-backdoors_02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/04-backdoors_02/README.md -------------------------------------------------------------------------------- /huawei-2018/04-backdoors_02/img/vm-autosolver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/04-backdoors_02/img/vm-autosolver.png -------------------------------------------------------------------------------- /huawei-2018/04-backdoors_02/img/vm-ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/04-backdoors_02/img/vm-ls.png -------------------------------------------------------------------------------- /huawei-2018/04-backdoors_02/img/vm-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/04-backdoors_02/img/vm-ps.png -------------------------------------------------------------------------------- /huawei-2018/05-cybercrime101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/05-cybercrime101/README.md -------------------------------------------------------------------------------- /huawei-2018/05-cybercrime101/img/malwarecode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/05-cybercrime101/img/malwarecode.png -------------------------------------------------------------------------------- /huawei-2018/06-armoured-kitten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/06-armoured-kitten/README.md -------------------------------------------------------------------------------- /huawei-2018/06-armoured-kitten/img/angr-solve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/06-armoured-kitten/img/angr-solve.png -------------------------------------------------------------------------------- /huawei-2018/06-armoured-kitten/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/06-armoured-kitten/img/flag.png -------------------------------------------------------------------------------- /huawei-2018/06-armoured-kitten/img/flag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/06-armoured-kitten/img/flag2.png -------------------------------------------------------------------------------- /huawei-2018/06-armoured-kitten/img/reversing-arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/06-armoured-kitten/img/reversing-arm.png -------------------------------------------------------------------------------- /huawei-2018/06-armoured-kitten/img/xrays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/06-armoured-kitten/img/xrays.png -------------------------------------------------------------------------------- /huawei-2018/06-armoured-kitten/re1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/06-armoured-kitten/re1 -------------------------------------------------------------------------------- /huawei-2018/06-armoured-kitten/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/06-armoured-kitten/solve.py -------------------------------------------------------------------------------- /huawei-2018/07-cryptokenita/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/07-cryptokenita/README.md -------------------------------------------------------------------------------- /huawei-2018/07-cryptokenita/huawei-crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/07-cryptokenita/huawei-crypto.js -------------------------------------------------------------------------------- /huawei-2018/07-cryptokenita/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/07-cryptokenita/img/flag.png -------------------------------------------------------------------------------- /huawei-2018/07-cryptokenita/img/flag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/07-cryptokenita/img/flag2.png -------------------------------------------------------------------------------- /huawei-2018/07-cryptokenita/img/utf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/07-cryptokenita/img/utf.png -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/README.md -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/img/admin-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/img/admin-panel.png -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/img/flag.png -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/img/hash-cracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/img/hash-cracking.png -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/img/login-getter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/img/login-getter.png -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/img/login.png -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/img/loginadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/img/loginadmin.png -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/img/sqli-adminpassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/img/sqli-adminpassword.png -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/img/sqli-glob-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/img/sqli-glob-size.png -------------------------------------------------------------------------------- /huawei-2018/08-login-denoid/sqli-boolean-huawei.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/huawei-2018/08-login-denoid/sqli-boolean-huawei.py -------------------------------------------------------------------------------- /hxp-2020/heiko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hxp-2020/heiko/README.md -------------------------------------------------------------------------------- /hxp-2020/heiko/heiko-16fc430532ab60cc.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hxp-2020/heiko/heiko-16fc430532ab60cc.tar.xz -------------------------------------------------------------------------------- /hxp-2020/heiko/img/heiko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hxp-2020/heiko/img/heiko.png -------------------------------------------------------------------------------- /hxp-2020/heiko/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/hxp-2020/heiko/index.php -------------------------------------------------------------------------------- /isitdtu-2019/EasyPHP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/isitdtu-2019/EasyPHP/README.md -------------------------------------------------------------------------------- /isitdtu-2019/EasyPHP/img/phpinfo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/isitdtu-2019/EasyPHP/img/phpinfo.jpg -------------------------------------------------------------------------------- /isitdtu-2019/EasyPHP/img/readfile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/isitdtu-2019/EasyPHP/img/readfile.jpg -------------------------------------------------------------------------------- /isitdtu-2019/EasyPHP/img/scandir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/isitdtu-2019/EasyPHP/img/scandir.jpg -------------------------------------------------------------------------------- /kernel-2015/crypto300/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/kernel-2015/crypto300/README.md -------------------------------------------------------------------------------- /kernel-2015/networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/kernel-2015/networking/README.md -------------------------------------------------------------------------------- /kernel-2015/networking/img/capturas-teclado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/kernel-2015/networking/img/capturas-teclado.png -------------------------------------------------------------------------------- /kernel-2015/networking/img/usb-cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/kernel-2015/networking/img/usb-cap.png -------------------------------------------------------------------------------- /kernel-2015/networking/network300.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/kernel-2015/networking/network300.cap -------------------------------------------------------------------------------- /navajanegra-2016/web1-mongojojo/MongoJojo-threads-bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web1-mongojojo/MongoJojo-threads-bit.py -------------------------------------------------------------------------------- /navajanegra-2016/web1-mongojojo/MongoJojo-threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web1-mongojojo/MongoJojo-threads.py -------------------------------------------------------------------------------- /navajanegra-2016/web1-mongojojo/MongoJojo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web1-mongojojo/MongoJojo.py -------------------------------------------------------------------------------- /navajanegra-2016/web1-mongojojo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web1-mongojojo/README.md -------------------------------------------------------------------------------- /navajanegra-2016/web1-mongojojo/img/mongojojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web1-mongojojo/img/mongojojo.png -------------------------------------------------------------------------------- /navajanegra-2016/web2-javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web2-javascript/README.md -------------------------------------------------------------------------------- /navajanegra-2016/web2-javascript/img/mojojojo-execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web2-javascript/img/mojojojo-execute.png -------------------------------------------------------------------------------- /navajanegra-2016/web2-javascript/img/mojojojo-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web2-javascript/img/mojojojo-login.png -------------------------------------------------------------------------------- /navajanegra-2016/web2-javascript/img/mojojojo-solucion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web2-javascript/img/mojojojo-solucion.png -------------------------------------------------------------------------------- /navajanegra-2016/web2-javascript/img/mojojojo-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2016/web2-javascript/img/mojojojo-terminal.png -------------------------------------------------------------------------------- /navajanegra-2019/Gamma-GPS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Gamma-GPS/README.md -------------------------------------------------------------------------------- /navajanegra-2019/Gamma-GPS/gamma-gps-source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Gamma-GPS/gamma-gps-source.php -------------------------------------------------------------------------------- /navajanegra-2019/Gamma-GPS/img/gammagps-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Gamma-GPS/img/gammagps-01.png -------------------------------------------------------------------------------- /navajanegra-2019/Gamma-GPS/img/gammagps-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Gamma-GPS/img/gammagps-02.png -------------------------------------------------------------------------------- /navajanegra-2019/Gamma-GPS/img/gammagps-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Gamma-GPS/img/gammagps-03.png -------------------------------------------------------------------------------- /navajanegra-2019/Gamma-GPS/img/gammagps-devel-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Gamma-GPS/img/gammagps-devel-debug.png -------------------------------------------------------------------------------- /navajanegra-2019/Gamma-GPS/img/gammagps-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Gamma-GPS/img/gammagps-flag.png -------------------------------------------------------------------------------- /navajanegra-2019/Gamma-GPS/img/gammagps-sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Gamma-GPS/img/gammagps-sql.png -------------------------------------------------------------------------------- /navajanegra-2019/Gamma-GPS/img/gammagps-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Gamma-GPS/img/gammagps-users.png -------------------------------------------------------------------------------- /navajanegra-2019/MoonCasino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/MoonCasino/README.md -------------------------------------------------------------------------------- /navajanegra-2019/MoonCasino/img/mooncasino-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/MoonCasino/img/mooncasino-01.png -------------------------------------------------------------------------------- /navajanegra-2019/MoonCasino/img/mooncasino-02-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/MoonCasino/img/mooncasino-02-source.png -------------------------------------------------------------------------------- /navajanegra-2019/MoonCasino/img/mooncasino-03-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/MoonCasino/img/mooncasino-03-flag.png -------------------------------------------------------------------------------- /navajanegra-2019/MoonCasino/mooncasino-source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/MoonCasino/mooncasino-source.php -------------------------------------------------------------------------------- /navajanegra-2019/Oracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Oracle/README.md -------------------------------------------------------------------------------- /navajanegra-2019/Oracle/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Oracle/app.js -------------------------------------------------------------------------------- /navajanegra-2019/Oracle/img/oracle-v1-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Oracle/img/oracle-v1-flag.png -------------------------------------------------------------------------------- /navajanegra-2019/Oracle/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/navajanegra-2019/Oracle/source.js -------------------------------------------------------------------------------- /nullcon-2018/exploiting1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/nullcon-2018/exploiting1/README.md -------------------------------------------------------------------------------- /nullcon-2018/exploiting1/img/exp1-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/nullcon-2018/exploiting1/img/exp1-001.png -------------------------------------------------------------------------------- /nullcon-2018/exploiting1/img/exp1-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/nullcon-2018/exploiting1/img/exp1-002.png -------------------------------------------------------------------------------- /nullcon-2018/exploiting1/img/exp1-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/nullcon-2018/exploiting1/img/exp1-003.png -------------------------------------------------------------------------------- /nullcon-2018/exploiting1/img/exp1-004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/nullcon-2018/exploiting1/img/exp1-004.png -------------------------------------------------------------------------------- /nullcon-2018/exploiting1/img/exp1-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/nullcon-2018/exploiting1/img/exp1-source.png -------------------------------------------------------------------------------- /nullcon-2018/exploiting1/nullcon2018-exp1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/nullcon-2018/exploiting1/nullcon2018-exp1.py -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/README.md -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/ctf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/ctf.hex -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/01-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/01-usage.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/02-ctf-hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/02-ctf-hex.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/03-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/03-fail.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/angr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/angr1.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/hash-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/hash-code.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/hash-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/hash-modified.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/hash.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/print-gdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/print-gdb.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/print.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/img/solution1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/img/solution1.png -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/secadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/secadmin -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/secadmin-angr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/secadmin-angr.py -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/secadmin-bruteforce-6+3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/secadmin-bruteforce-6+3.py -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/secadmin-bruteforce-recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/secadmin-bruteforce-recursive.py -------------------------------------------------------------------------------- /secadmin-2017/reversing-angr/secadmin-bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/secadmin-2017/reversing-angr/secadmin-bruteforce.py -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/README.md -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-001.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-002.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-003.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-004.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-005.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-006.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-007.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-008.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-009.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-010.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-011.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-012.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/img/ghostkingdom-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/img/ghostkingdom-flag.png -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/seccon-ghostkingdom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/seccon-ghostkingdom.py -------------------------------------------------------------------------------- /seccon-2018/GhostKingdom/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/seccon-2018/GhostKingdom/solve.py -------------------------------------------------------------------------------- /swamp-ctf-2019/cartographers-capture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/swamp-ctf-2019/cartographers-capture/README.md -------------------------------------------------------------------------------- /swamp-ctf-2019/cartographers-capture/flag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/swamp-ctf-2019/cartographers-capture/flag.bmp -------------------------------------------------------------------------------- /swamp-ctf-2019/cartographers-capture/img/flag-flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/swamp-ctf-2019/cartographers-capture/img/flag-flip.png -------------------------------------------------------------------------------- /swamp-ctf-2019/cartographers-capture/img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/swamp-ctf-2019/cartographers-capture/img/flag.png -------------------------------------------------------------------------------- /swamp-ctf-2019/cartographers-capture/img/flag0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/swamp-ctf-2019/cartographers-capture/img/flag0.png -------------------------------------------------------------------------------- /swamp-ctf-2019/cartographers-capture/img/fuk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/swamp-ctf-2019/cartographers-capture/img/fuk.jpg -------------------------------------------------------------------------------- /swamp-ctf-2019/cartographers-capture/ip_addresses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/swamp-ctf-2019/cartographers-capture/ip_addresses.txt -------------------------------------------------------------------------------- /swamp-ctf-2019/cartographers-capture/paint-decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/swamp-ctf-2019/cartographers-capture/paint-decimal.py -------------------------------------------------------------------------------- /swamp-ctf-2019/cartographers-capture/paint-ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesux/ctf-write-ups/HEAD/swamp-ctf-2019/cartographers-capture/paint-ip.py --------------------------------------------------------------------------------