├── .gitignore ├── README.md ├── crypto-babyprng ├── README.md ├── flag.py ├── solve.py └── task.py ├── crypto-notfeal ├── README.md ├── flag.py ├── solve.c ├── solve.py └── task.py ├── misc-She ├── She.zip └── readme.md ├── misc-babyflash ├── flash.swf └── readme.md ├── misc-homebrewEvtLoop ├── README.md ├── flag └── server.py ├── misc-otaku ├── otaku.zip └── readme.md ├── misc-pushbox ├── .DS_Store ├── Main.java └── readme.md ├── pwn-OOB ├── exp │ ├── exp.js │ ├── index.html │ └── util.js ├── limit.sh ├── oob.diff ├── readMe.Md └── s3rvic3.py ├── pwn-blindpwn ├── blindpwn ├── blindpwn.c ├── description.txt ├── gadgets.txt ├── hack.py ├── leak_and_solve │ ├── .DS_Store │ ├── elf_leak │ ├── elf_leak.i64 │ ├── hack.py │ └── hack_leak.py ├── libc-2.23.so ├── makefile └── readme.md ├── pwn-girlfriend ├── babyheap.c ├── chall ├── flag ├── hack.py ├── lib │ ├── .DS_Store │ ├── ld-2.29.so │ └── libc-2.29.so ├── makefile ├── pwn └── readme.md ├── pwn-hackme ├── Makefile ├── env │ ├── Dockerfile │ ├── docker-compose.yml │ ├── hackme │ │ ├── bzImage │ │ ├── config │ │ ├── hackme.ko │ │ ├── initramfs.cpio │ │ └── startvm.sh │ └── sshd_config ├── exp.c ├── hackme.c ├── hackme_revenge.c └── readMe.Md ├── pwn-heap_master ├── Makefile ├── env │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── share │ │ ├── flag │ │ ├── heap_master │ │ ├── lib │ │ │ └── libc.so.6 │ │ ├── lib64 │ │ │ └── ld-linux-x86-64.so.2 │ │ └── pwn │ ├── src │ │ └── Makefile │ └── xinetd ├── hack.py ├── main.c └── readMe.Md ├── pwn-quicksort ├── .DS_Store ├── hack.py ├── libc.so.6 ├── makefile ├── quicksort.c └── readme.md ├── pwn-shellcode ├── .DS_Store ├── gadgets.txt ├── hack.py ├── makefile ├── printable.c └── readme.md ├── pwn-upxofcpp ├── chall ├── chall.cpp ├── flag ├── makefile ├── readme.md ├── solve.py ├── upxofcpp └── upxofcpp.tar.gz ├── re-fanoGo ├── .DS_Store ├── babyre ├── corpus.txt ├── flag ├── hack.py ├── install.sh ├── key.txt ├── readme.md └── src │ ├── .DS_Store │ ├── fano │ ├── fano │ └── fano.go │ └── main │ ├── .DS_Store │ └── main.go ├── re-matrix ├── cube ├── readMe.Md ├── src │ ├── Makefile │ ├── gen.py │ ├── main.c │ ├── matrix.h │ ├── mutate.c │ └── mutate.h ├── tcc └── tcc-0.9.25.diff ├── re-obfuscating_macros_II ├── README.md ├── obfuscating_macros.cpp ├── obfuscating_macros_II.out └── solution.py ├── re-yy ├── Makefile ├── flag.lex ├── flag.y ├── main.c ├── out ├── re.py ├── readMe.Md ├── stand.h ├── table ├── util.c └── util.h ├── web-996game ├── readme.md └── source │ ├── Dockerfile │ ├── docker-compose.yml │ ├── flag │ ├── phaserquest │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── a │ │ ├── audio │ │ │ ├── sounds.json │ │ │ ├── sounds.mp3 │ │ │ └── sounds.ogg │ │ ├── fonts │ │ │ └── advocut-webfont.ttf │ │ ├── json │ │ │ ├── db.json │ │ │ ├── entities_client.json │ │ │ └── entities_server.json │ │ ├── maps │ │ │ ├── minimap_client.json │ │ │ ├── minimap_server.json │ │ │ ├── mobset.png │ │ │ └── phaserquest_map.tmx │ │ ├── music │ │ │ └── phaser-quest-intro.ogg │ │ ├── sprites │ │ │ ├── Thumbs.db │ │ │ ├── atlas1.json │ │ │ ├── atlas1.png │ │ │ ├── atlas3.json │ │ │ ├── atlas3.png │ │ │ ├── atlas4.json │ │ │ ├── atlas4.png │ │ │ ├── bubble2.png │ │ │ ├── hand.png │ │ │ ├── lifelvl.png │ │ │ ├── loot.png │ │ │ ├── sword.png │ │ │ ├── talk.png │ │ │ └── wood.png │ │ └── tilesets │ │ │ └── tilesheet.png │ ├── index.html │ ├── js │ │ ├── AOIutils.js │ │ ├── CoDec.js │ │ ├── client │ │ │ ├── Being.js │ │ │ ├── Decoder.js │ │ │ ├── Factory.js │ │ │ ├── Human.js │ │ │ ├── Item_client.js │ │ │ ├── Monster_client.js │ │ │ ├── NPC.js │ │ │ ├── Player_client.js │ │ │ ├── client.js │ │ │ ├── easystar.min.js │ │ │ ├── game.js │ │ │ ├── home.js │ │ │ ├── main.js │ │ │ ├── phaser-input.min.js │ │ │ └── phaser.js │ │ ├── server │ │ │ ├── AOI.js │ │ │ ├── Encoder.js │ │ │ ├── GameObject.js │ │ │ ├── GameServer.js │ │ │ ├── Item.js │ │ │ ├── Monster.js │ │ │ ├── MovingEntity.js │ │ │ ├── PersonalUpdatePacket.js │ │ │ ├── Player.js │ │ │ ├── Route.js │ │ │ ├── UpdatePacket.js │ │ │ ├── chestarea.js │ │ │ └── format.js │ │ └── spaceMap.js │ ├── package.json │ └── server.js │ ├── processes.yml │ └── readflag ├── web-echohub ├── readme.md └── source │ ├── Dockerfile │ ├── de.php │ ├── flag │ ├── php.ini │ ├── randomstack.php │ ├── randomstackback.php │ ├── readflag │ ├── run.sh │ └── sandbox.php ├── web-mywebsql └── solve.md └── web-solve_readflag ├── read.pl └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/README.md -------------------------------------------------------------------------------- /crypto-babyprng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/crypto-babyprng/README.md -------------------------------------------------------------------------------- /crypto-babyprng/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/crypto-babyprng/flag.py -------------------------------------------------------------------------------- /crypto-babyprng/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/crypto-babyprng/solve.py -------------------------------------------------------------------------------- /crypto-babyprng/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/crypto-babyprng/task.py -------------------------------------------------------------------------------- /crypto-notfeal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/crypto-notfeal/README.md -------------------------------------------------------------------------------- /crypto-notfeal/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/crypto-notfeal/flag.py -------------------------------------------------------------------------------- /crypto-notfeal/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/crypto-notfeal/solve.c -------------------------------------------------------------------------------- /crypto-notfeal/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/crypto-notfeal/solve.py -------------------------------------------------------------------------------- /crypto-notfeal/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/crypto-notfeal/task.py -------------------------------------------------------------------------------- /misc-She/She.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-She/She.zip -------------------------------------------------------------------------------- /misc-She/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-She/readme.md -------------------------------------------------------------------------------- /misc-babyflash/flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-babyflash/flash.swf -------------------------------------------------------------------------------- /misc-babyflash/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-babyflash/readme.md -------------------------------------------------------------------------------- /misc-homebrewEvtLoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-homebrewEvtLoop/README.md -------------------------------------------------------------------------------- /misc-homebrewEvtLoop/flag: -------------------------------------------------------------------------------- 1 | *ctf{pYth0n2-f3@tur3_R19ht?} -------------------------------------------------------------------------------- /misc-homebrewEvtLoop/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-homebrewEvtLoop/server.py -------------------------------------------------------------------------------- /misc-otaku/otaku.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-otaku/otaku.zip -------------------------------------------------------------------------------- /misc-otaku/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-otaku/readme.md -------------------------------------------------------------------------------- /misc-pushbox/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-pushbox/.DS_Store -------------------------------------------------------------------------------- /misc-pushbox/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-pushbox/Main.java -------------------------------------------------------------------------------- /misc-pushbox/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/misc-pushbox/readme.md -------------------------------------------------------------------------------- /pwn-OOB/exp/exp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-OOB/exp/exp.js -------------------------------------------------------------------------------- /pwn-OOB/exp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-OOB/exp/index.html -------------------------------------------------------------------------------- /pwn-OOB/exp/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-OOB/exp/util.js -------------------------------------------------------------------------------- /pwn-OOB/limit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-OOB/limit.sh -------------------------------------------------------------------------------- /pwn-OOB/oob.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-OOB/oob.diff -------------------------------------------------------------------------------- /pwn-OOB/readMe.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-OOB/readMe.Md -------------------------------------------------------------------------------- /pwn-OOB/s3rvic3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-OOB/s3rvic3.py -------------------------------------------------------------------------------- /pwn-blindpwn/blindpwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/blindpwn -------------------------------------------------------------------------------- /pwn-blindpwn/blindpwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/blindpwn.c -------------------------------------------------------------------------------- /pwn-blindpwn/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/description.txt -------------------------------------------------------------------------------- /pwn-blindpwn/gadgets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/gadgets.txt -------------------------------------------------------------------------------- /pwn-blindpwn/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/hack.py -------------------------------------------------------------------------------- /pwn-blindpwn/leak_and_solve/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/leak_and_solve/.DS_Store -------------------------------------------------------------------------------- /pwn-blindpwn/leak_and_solve/elf_leak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/leak_and_solve/elf_leak -------------------------------------------------------------------------------- /pwn-blindpwn/leak_and_solve/elf_leak.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/leak_and_solve/elf_leak.i64 -------------------------------------------------------------------------------- /pwn-blindpwn/leak_and_solve/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/leak_and_solve/hack.py -------------------------------------------------------------------------------- /pwn-blindpwn/leak_and_solve/hack_leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/leak_and_solve/hack_leak.py -------------------------------------------------------------------------------- /pwn-blindpwn/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/libc-2.23.so -------------------------------------------------------------------------------- /pwn-blindpwn/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-blindpwn/makefile -------------------------------------------------------------------------------- /pwn-blindpwn/readme.md: -------------------------------------------------------------------------------- 1 | ### BlindPwn 2 | #### here is the sorce code:) -------------------------------------------------------------------------------- /pwn-girlfriend/babyheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-girlfriend/babyheap.c -------------------------------------------------------------------------------- /pwn-girlfriend/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-girlfriend/chall -------------------------------------------------------------------------------- /pwn-girlfriend/flag: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn-girlfriend/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-girlfriend/hack.py -------------------------------------------------------------------------------- /pwn-girlfriend/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-girlfriend/lib/.DS_Store -------------------------------------------------------------------------------- /pwn-girlfriend/lib/ld-2.29.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-girlfriend/lib/ld-2.29.so -------------------------------------------------------------------------------- /pwn-girlfriend/lib/libc-2.29.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-girlfriend/lib/libc-2.29.so -------------------------------------------------------------------------------- /pwn-girlfriend/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-girlfriend/makefile -------------------------------------------------------------------------------- /pwn-girlfriend/pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-girlfriend/pwn -------------------------------------------------------------------------------- /pwn-girlfriend/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-girlfriend/readme.md -------------------------------------------------------------------------------- /pwn-hackme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/Makefile -------------------------------------------------------------------------------- /pwn-hackme/env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/env/Dockerfile -------------------------------------------------------------------------------- /pwn-hackme/env/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/env/docker-compose.yml -------------------------------------------------------------------------------- /pwn-hackme/env/hackme/bzImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/env/hackme/bzImage -------------------------------------------------------------------------------- /pwn-hackme/env/hackme/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/env/hackme/config -------------------------------------------------------------------------------- /pwn-hackme/env/hackme/hackme.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/env/hackme/hackme.ko -------------------------------------------------------------------------------- /pwn-hackme/env/hackme/initramfs.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/env/hackme/initramfs.cpio -------------------------------------------------------------------------------- /pwn-hackme/env/hackme/startvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/env/hackme/startvm.sh -------------------------------------------------------------------------------- /pwn-hackme/env/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/env/sshd_config -------------------------------------------------------------------------------- /pwn-hackme/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/exp.c -------------------------------------------------------------------------------- /pwn-hackme/hackme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/hackme.c -------------------------------------------------------------------------------- /pwn-hackme/hackme_revenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/hackme_revenge.c -------------------------------------------------------------------------------- /pwn-hackme/readMe.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-hackme/readMe.Md -------------------------------------------------------------------------------- /pwn-heap_master/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/Makefile -------------------------------------------------------------------------------- /pwn-heap_master/env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/env/Dockerfile -------------------------------------------------------------------------------- /pwn-heap_master/env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/env/README.md -------------------------------------------------------------------------------- /pwn-heap_master/env/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/env/docker-compose.yml -------------------------------------------------------------------------------- /pwn-heap_master/env/share/flag: -------------------------------------------------------------------------------- 1 | flag{test} 2 | -------------------------------------------------------------------------------- /pwn-heap_master/env/share/heap_master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/env/share/heap_master -------------------------------------------------------------------------------- /pwn-heap_master/env/share/lib/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/env/share/lib/libc.so.6 -------------------------------------------------------------------------------- /pwn-heap_master/env/share/lib64/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/env/share/lib64/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /pwn-heap_master/env/share/pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/env/share/pwn -------------------------------------------------------------------------------- /pwn-heap_master/env/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/env/src/Makefile -------------------------------------------------------------------------------- /pwn-heap_master/env/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/env/xinetd -------------------------------------------------------------------------------- /pwn-heap_master/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/hack.py -------------------------------------------------------------------------------- /pwn-heap_master/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/main.c -------------------------------------------------------------------------------- /pwn-heap_master/readMe.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-heap_master/readMe.Md -------------------------------------------------------------------------------- /pwn-quicksort/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-quicksort/.DS_Store -------------------------------------------------------------------------------- /pwn-quicksort/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-quicksort/hack.py -------------------------------------------------------------------------------- /pwn-quicksort/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-quicksort/libc.so.6 -------------------------------------------------------------------------------- /pwn-quicksort/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-quicksort/makefile -------------------------------------------------------------------------------- /pwn-quicksort/quicksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-quicksort/quicksort.c -------------------------------------------------------------------------------- /pwn-quicksort/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-quicksort/readme.md -------------------------------------------------------------------------------- /pwn-shellcode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-shellcode/.DS_Store -------------------------------------------------------------------------------- /pwn-shellcode/gadgets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-shellcode/gadgets.txt -------------------------------------------------------------------------------- /pwn-shellcode/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-shellcode/hack.py -------------------------------------------------------------------------------- /pwn-shellcode/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-shellcode/makefile -------------------------------------------------------------------------------- /pwn-shellcode/printable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-shellcode/printable.c -------------------------------------------------------------------------------- /pwn-shellcode/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-shellcode/readme.md -------------------------------------------------------------------------------- /pwn-upxofcpp/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-upxofcpp/chall -------------------------------------------------------------------------------- /pwn-upxofcpp/chall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-upxofcpp/chall.cpp -------------------------------------------------------------------------------- /pwn-upxofcpp/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-upxofcpp/flag -------------------------------------------------------------------------------- /pwn-upxofcpp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-upxofcpp/makefile -------------------------------------------------------------------------------- /pwn-upxofcpp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-upxofcpp/readme.md -------------------------------------------------------------------------------- /pwn-upxofcpp/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-upxofcpp/solve.py -------------------------------------------------------------------------------- /pwn-upxofcpp/upxofcpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-upxofcpp/upxofcpp -------------------------------------------------------------------------------- /pwn-upxofcpp/upxofcpp.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/pwn-upxofcpp/upxofcpp.tar.gz -------------------------------------------------------------------------------- /re-fanoGo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/.DS_Store -------------------------------------------------------------------------------- /re-fanoGo/babyre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/babyre -------------------------------------------------------------------------------- /re-fanoGo/corpus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/corpus.txt -------------------------------------------------------------------------------- /re-fanoGo/flag: -------------------------------------------------------------------------------- 1 | flag{here will be a flag} 2 | -------------------------------------------------------------------------------- /re-fanoGo/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/hack.py -------------------------------------------------------------------------------- /re-fanoGo/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/install.sh -------------------------------------------------------------------------------- /re-fanoGo/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/key.txt -------------------------------------------------------------------------------- /re-fanoGo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/readme.md -------------------------------------------------------------------------------- /re-fanoGo/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/src/.DS_Store -------------------------------------------------------------------------------- /re-fanoGo/src/fano/fano: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/src/fano/fano -------------------------------------------------------------------------------- /re-fanoGo/src/fano/fano.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/src/fano/fano.go -------------------------------------------------------------------------------- /re-fanoGo/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/src/main/.DS_Store -------------------------------------------------------------------------------- /re-fanoGo/src/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-fanoGo/src/main/main.go -------------------------------------------------------------------------------- /re-matrix/cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/cube -------------------------------------------------------------------------------- /re-matrix/readMe.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/readMe.Md -------------------------------------------------------------------------------- /re-matrix/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/src/Makefile -------------------------------------------------------------------------------- /re-matrix/src/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/src/gen.py -------------------------------------------------------------------------------- /re-matrix/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/src/main.c -------------------------------------------------------------------------------- /re-matrix/src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/src/matrix.h -------------------------------------------------------------------------------- /re-matrix/src/mutate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/src/mutate.c -------------------------------------------------------------------------------- /re-matrix/src/mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/src/mutate.h -------------------------------------------------------------------------------- /re-matrix/tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/tcc -------------------------------------------------------------------------------- /re-matrix/tcc-0.9.25.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-matrix/tcc-0.9.25.diff -------------------------------------------------------------------------------- /re-obfuscating_macros_II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-obfuscating_macros_II/README.md -------------------------------------------------------------------------------- /re-obfuscating_macros_II/obfuscating_macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-obfuscating_macros_II/obfuscating_macros.cpp -------------------------------------------------------------------------------- /re-obfuscating_macros_II/obfuscating_macros_II.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-obfuscating_macros_II/obfuscating_macros_II.out -------------------------------------------------------------------------------- /re-obfuscating_macros_II/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-obfuscating_macros_II/solution.py -------------------------------------------------------------------------------- /re-yy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/Makefile -------------------------------------------------------------------------------- /re-yy/flag.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/flag.lex -------------------------------------------------------------------------------- /re-yy/flag.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/flag.y -------------------------------------------------------------------------------- /re-yy/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/main.c -------------------------------------------------------------------------------- /re-yy/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/out -------------------------------------------------------------------------------- /re-yy/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/re.py -------------------------------------------------------------------------------- /re-yy/readMe.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/readMe.Md -------------------------------------------------------------------------------- /re-yy/stand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/stand.h -------------------------------------------------------------------------------- /re-yy/table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/table -------------------------------------------------------------------------------- /re-yy/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/util.c -------------------------------------------------------------------------------- /re-yy/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/re-yy/util.h -------------------------------------------------------------------------------- /web-996game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/readme.md -------------------------------------------------------------------------------- /web-996game/source/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/Dockerfile -------------------------------------------------------------------------------- /web-996game/source/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/docker-compose.yml -------------------------------------------------------------------------------- /web-996game/source/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/flag -------------------------------------------------------------------------------- /web-996game/source/phaserquest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/LICENSE -------------------------------------------------------------------------------- /web-996game/source/phaserquest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/README.md -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/audio/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/audio/sounds.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/audio/sounds.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/audio/sounds.mp3 -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/audio/sounds.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/audio/sounds.ogg -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/fonts/advocut-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/fonts/advocut-webfont.ttf -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/json/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/json/db.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/json/entities_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/json/entities_client.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/json/entities_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/json/entities_server.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/maps/minimap_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/maps/minimap_client.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/maps/minimap_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/maps/minimap_server.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/maps/mobset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/maps/mobset.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/maps/phaserquest_map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/maps/phaserquest_map.tmx -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/music/phaser-quest-intro.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/music/phaser-quest-intro.ogg -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/Thumbs.db -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/atlas1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/atlas1.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/atlas1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/atlas1.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/atlas3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/atlas3.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/atlas3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/atlas3.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/atlas4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/atlas4.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/atlas4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/atlas4.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/bubble2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/bubble2.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/hand.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/lifelvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/lifelvl.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/loot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/loot.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/sword.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/talk.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/sprites/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/sprites/wood.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/assets/tilesets/tilesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/assets/tilesets/tilesheet.png -------------------------------------------------------------------------------- /web-996game/source/phaserquest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/index.html -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/AOIutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/AOIutils.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/CoDec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/CoDec.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/Being.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/Being.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/Decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/Decoder.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/Factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/Factory.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/Human.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/Human.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/Item_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/Item_client.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/Monster_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/Monster_client.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/NPC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/NPC.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/Player_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/Player_client.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/client.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/easystar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/easystar.min.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/game.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/home.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/main.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/phaser-input.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/phaser-input.min.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/client/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/client/phaser.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/AOI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/AOI.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/Encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/Encoder.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/GameObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/GameObject.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/GameServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/GameServer.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/Item.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/Monster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/Monster.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/MovingEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/MovingEntity.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/PersonalUpdatePacket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/PersonalUpdatePacket.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/Player.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/Route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/Route.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/UpdatePacket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/UpdatePacket.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/chestarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/chestarea.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/server/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/server/format.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/js/spaceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/js/spaceMap.js -------------------------------------------------------------------------------- /web-996game/source/phaserquest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/package.json -------------------------------------------------------------------------------- /web-996game/source/phaserquest/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/phaserquest/server.js -------------------------------------------------------------------------------- /web-996game/source/processes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/processes.yml -------------------------------------------------------------------------------- /web-996game/source/readflag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-996game/source/readflag -------------------------------------------------------------------------------- /web-echohub/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/readme.md -------------------------------------------------------------------------------- /web-echohub/source/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/source/Dockerfile -------------------------------------------------------------------------------- /web-echohub/source/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/source/de.php -------------------------------------------------------------------------------- /web-echohub/source/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/source/flag -------------------------------------------------------------------------------- /web-echohub/source/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/source/php.ini -------------------------------------------------------------------------------- /web-echohub/source/randomstack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/source/randomstack.php -------------------------------------------------------------------------------- /web-echohub/source/randomstackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/source/randomstackback.php -------------------------------------------------------------------------------- /web-echohub/source/readflag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/source/readflag -------------------------------------------------------------------------------- /web-echohub/source/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/source/run.sh -------------------------------------------------------------------------------- /web-echohub/source/sandbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-echohub/source/sandbox.php -------------------------------------------------------------------------------- /web-mywebsql/solve.md: -------------------------------------------------------------------------------- 1 | https://github.com/eddietcc/CVEnotes/blob/master/MyWebSQL/RCE/readme.md 2 | -------------------------------------------------------------------------------- /web-solve_readflag/read.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-solve_readflag/read.pl -------------------------------------------------------------------------------- /web-solve_readflag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixstars/starctf2019/HEAD/web-solve_readflag/readme.md --------------------------------------------------------------------------------