├── 2018-csaw ├── README.md ├── final.pcap ├── ldab.png ├── mcgriddle.md ├── mcgriddle.pgn ├── mcgriddle.py ├── mcgriddle_b64.png ├── mcgriddle_base64 ├── mcgriddle_decoded.png ├── mcgriddle_lichess.png ├── mcgriddle_moves ├── mcgriddle_pcap.png └── mcgriddle_svgs.png ├── 2018-ctfzone ├── README.md ├── blog.png ├── onion.png ├── twitter1.png └── twitter2.png ├── 2019-asis ├── README.md ├── index.png ├── source1.png └── source2.png ├── 2019-codegate ├── README.md ├── board.png ├── history.png ├── home.png ├── info.png ├── login.png ├── market.png ├── rich.png └── top_secret.zip ├── 2019-justctf ├── README.md ├── discreet │ ├── dft.out │ ├── discreet.py │ └── flag.png ├── fsmir │ ├── fsmir.py │ ├── fsmir.sv │ ├── fsmir2.py │ └── fsmir2.sv ├── md5service │ ├── md5service.py │ ├── md5service.sh │ └── solve.py ├── pandq │ ├── solve.py │ └── task.py └── wierd_signals │ ├── photo.jpg │ └── weird.py ├── 2019-moneroctf ├── README.md ├── crypto400 │ ├── 1-schnorr.py │ ├── 2-rc4.py │ ├── 3-pad.py │ ├── README.md │ └── dumb25519.py ├── images │ ├── honestmarket.png │ ├── honestmarketadmin.png │ ├── leaderboard.png │ ├── litecoin.png │ ├── moneropoly.png │ └── privatekeyrecovery.png └── web200 │ └── web200_solve.py ├── 2019-plaidctf ├── README.md └── eulernt.py ├── 2020-defcon-redteamvillage ├── README.md └── finals_scoreboard.png ├── 2020-redpwn ├── README.md ├── alien_transmission2.py ├── cert_to_pubkey_hash.py ├── panda2.py └── pubkey.pem ├── 2020_hitcon ├── README.md ├── ac1750 │ ├── ac1750.pcapng │ └── solve.py ├── images │ └── scoreboard.png └── oshell_payload ├── 2020_tctf ├── README.md ├── images │ ├── admin.png │ ├── index.png │ ├── lfi.png │ └── lfi2.png └── wechat_solve.py ├── README.md └── vulnhub ├── images ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png ├── kioptrix.md └── xerxes.md /2018-csaw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/README.md -------------------------------------------------------------------------------- /2018-csaw/final.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/final.pcap -------------------------------------------------------------------------------- /2018-csaw/ldab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/ldab.png -------------------------------------------------------------------------------- /2018-csaw/mcgriddle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle.md -------------------------------------------------------------------------------- /2018-csaw/mcgriddle.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle.pgn -------------------------------------------------------------------------------- /2018-csaw/mcgriddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle.py -------------------------------------------------------------------------------- /2018-csaw/mcgriddle_b64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle_b64.png -------------------------------------------------------------------------------- /2018-csaw/mcgriddle_base64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle_base64 -------------------------------------------------------------------------------- /2018-csaw/mcgriddle_decoded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle_decoded.png -------------------------------------------------------------------------------- /2018-csaw/mcgriddle_lichess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle_lichess.png -------------------------------------------------------------------------------- /2018-csaw/mcgriddle_moves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle_moves -------------------------------------------------------------------------------- /2018-csaw/mcgriddle_pcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle_pcap.png -------------------------------------------------------------------------------- /2018-csaw/mcgriddle_svgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-csaw/mcgriddle_svgs.png -------------------------------------------------------------------------------- /2018-ctfzone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-ctfzone/README.md -------------------------------------------------------------------------------- /2018-ctfzone/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-ctfzone/blog.png -------------------------------------------------------------------------------- /2018-ctfzone/onion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-ctfzone/onion.png -------------------------------------------------------------------------------- /2018-ctfzone/twitter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-ctfzone/twitter1.png -------------------------------------------------------------------------------- /2018-ctfzone/twitter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2018-ctfzone/twitter2.png -------------------------------------------------------------------------------- /2019-asis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-asis/README.md -------------------------------------------------------------------------------- /2019-asis/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-asis/index.png -------------------------------------------------------------------------------- /2019-asis/source1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-asis/source1.png -------------------------------------------------------------------------------- /2019-asis/source2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-asis/source2.png -------------------------------------------------------------------------------- /2019-codegate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-codegate/README.md -------------------------------------------------------------------------------- /2019-codegate/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-codegate/board.png -------------------------------------------------------------------------------- /2019-codegate/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-codegate/history.png -------------------------------------------------------------------------------- /2019-codegate/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-codegate/home.png -------------------------------------------------------------------------------- /2019-codegate/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-codegate/info.png -------------------------------------------------------------------------------- /2019-codegate/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-codegate/login.png -------------------------------------------------------------------------------- /2019-codegate/market.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-codegate/market.png -------------------------------------------------------------------------------- /2019-codegate/rich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-codegate/rich.png -------------------------------------------------------------------------------- /2019-codegate/top_secret.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-codegate/top_secret.zip -------------------------------------------------------------------------------- /2019-justctf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/README.md -------------------------------------------------------------------------------- /2019-justctf/discreet/dft.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/discreet/dft.out -------------------------------------------------------------------------------- /2019-justctf/discreet/discreet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/discreet/discreet.py -------------------------------------------------------------------------------- /2019-justctf/discreet/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/discreet/flag.png -------------------------------------------------------------------------------- /2019-justctf/fsmir/fsmir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/fsmir/fsmir.py -------------------------------------------------------------------------------- /2019-justctf/fsmir/fsmir.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/fsmir/fsmir.sv -------------------------------------------------------------------------------- /2019-justctf/fsmir/fsmir2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/fsmir/fsmir2.py -------------------------------------------------------------------------------- /2019-justctf/fsmir/fsmir2.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/fsmir/fsmir2.sv -------------------------------------------------------------------------------- /2019-justctf/md5service/md5service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/md5service/md5service.py -------------------------------------------------------------------------------- /2019-justctf/md5service/md5service.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | read x; 4 | y=`md5sum $x`; 5 | echo $y | cut -c1-32; 6 | 7 | -------------------------------------------------------------------------------- /2019-justctf/md5service/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/md5service/solve.py -------------------------------------------------------------------------------- /2019-justctf/pandq/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/pandq/solve.py -------------------------------------------------------------------------------- /2019-justctf/pandq/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/pandq/task.py -------------------------------------------------------------------------------- /2019-justctf/wierd_signals/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/wierd_signals/photo.jpg -------------------------------------------------------------------------------- /2019-justctf/wierd_signals/weird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-justctf/wierd_signals/weird.py -------------------------------------------------------------------------------- /2019-moneroctf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/README.md -------------------------------------------------------------------------------- /2019-moneroctf/crypto400/1-schnorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/crypto400/1-schnorr.py -------------------------------------------------------------------------------- /2019-moneroctf/crypto400/2-rc4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/crypto400/2-rc4.py -------------------------------------------------------------------------------- /2019-moneroctf/crypto400/3-pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/crypto400/3-pad.py -------------------------------------------------------------------------------- /2019-moneroctf/crypto400/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/crypto400/README.md -------------------------------------------------------------------------------- /2019-moneroctf/crypto400/dumb25519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/crypto400/dumb25519.py -------------------------------------------------------------------------------- /2019-moneroctf/images/honestmarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/images/honestmarket.png -------------------------------------------------------------------------------- /2019-moneroctf/images/honestmarketadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/images/honestmarketadmin.png -------------------------------------------------------------------------------- /2019-moneroctf/images/leaderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/images/leaderboard.png -------------------------------------------------------------------------------- /2019-moneroctf/images/litecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/images/litecoin.png -------------------------------------------------------------------------------- /2019-moneroctf/images/moneropoly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/images/moneropoly.png -------------------------------------------------------------------------------- /2019-moneroctf/images/privatekeyrecovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/images/privatekeyrecovery.png -------------------------------------------------------------------------------- /2019-moneroctf/web200/web200_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-moneroctf/web200/web200_solve.py -------------------------------------------------------------------------------- /2019-plaidctf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-plaidctf/README.md -------------------------------------------------------------------------------- /2019-plaidctf/eulernt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2019-plaidctf/eulernt.py -------------------------------------------------------------------------------- /2020-defcon-redteamvillage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020-defcon-redteamvillage/README.md -------------------------------------------------------------------------------- /2020-defcon-redteamvillage/finals_scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020-defcon-redteamvillage/finals_scoreboard.png -------------------------------------------------------------------------------- /2020-redpwn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020-redpwn/README.md -------------------------------------------------------------------------------- /2020-redpwn/alien_transmission2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020-redpwn/alien_transmission2.py -------------------------------------------------------------------------------- /2020-redpwn/cert_to_pubkey_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020-redpwn/cert_to_pubkey_hash.py -------------------------------------------------------------------------------- /2020-redpwn/panda2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020-redpwn/panda2.py -------------------------------------------------------------------------------- /2020-redpwn/pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020-redpwn/pubkey.pem -------------------------------------------------------------------------------- /2020_hitcon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_hitcon/README.md -------------------------------------------------------------------------------- /2020_hitcon/ac1750/ac1750.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_hitcon/ac1750/ac1750.pcapng -------------------------------------------------------------------------------- /2020_hitcon/ac1750/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_hitcon/ac1750/solve.py -------------------------------------------------------------------------------- /2020_hitcon/images/scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_hitcon/images/scoreboard.png -------------------------------------------------------------------------------- /2020_hitcon/oshell_payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_hitcon/oshell_payload -------------------------------------------------------------------------------- /2020_tctf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_tctf/README.md -------------------------------------------------------------------------------- /2020_tctf/images/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_tctf/images/admin.png -------------------------------------------------------------------------------- /2020_tctf/images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_tctf/images/index.png -------------------------------------------------------------------------------- /2020_tctf/images/lfi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_tctf/images/lfi.png -------------------------------------------------------------------------------- /2020_tctf/images/lfi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_tctf/images/lfi2.png -------------------------------------------------------------------------------- /2020_tctf/wechat_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/2020_tctf/wechat_solve.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/README.md -------------------------------------------------------------------------------- /vulnhub/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/vulnhub/images/1.png -------------------------------------------------------------------------------- /vulnhub/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/vulnhub/images/2.png -------------------------------------------------------------------------------- /vulnhub/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/vulnhub/images/3.png -------------------------------------------------------------------------------- /vulnhub/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/vulnhub/images/4.png -------------------------------------------------------------------------------- /vulnhub/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/vulnhub/images/5.png -------------------------------------------------------------------------------- /vulnhub/kioptrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/vulnhub/kioptrix.md -------------------------------------------------------------------------------- /vulnhub/xerxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperreality/ctf-writeups/HEAD/vulnhub/xerxes.md --------------------------------------------------------------------------------