├── README.md └── httpd ├── [ByteCTF]Master of httpd ├── bin │ └── sh ├── debug.sh ├── etc │ └── passwd ├── exp.py ├── gdb_script ├── lib │ ├── Mcrt1.o │ ├── Scrt1.o │ ├── crt1.o │ ├── crti.o │ ├── crtn.o │ ├── gcrt1.o │ ├── ld-2.27.so │ ├── ld-linux-aarch64.so.1 │ ├── libBrokenLocale-2.27.so │ ├── libBrokenLocale.a │ ├── libBrokenLocale.so │ ├── libBrokenLocale.so.1 │ ├── libSegFault.so │ ├── libanl-2.27.so │ ├── libanl.a │ ├── libanl.so │ ├── libanl.so.1 │ ├── libasan.so.4 │ ├── libasan.so.4.0.0 │ ├── libatomic.so.1 │ ├── libatomic.so.1.2.0 │ ├── libc-2.27.so │ ├── libc.a │ ├── libc.so │ ├── libc.so.6 │ ├── libc_nonshared.a │ ├── libcidn-2.27.so │ ├── libcidn.so │ ├── libcidn.so.1 │ ├── libcrypt-2.27.so │ ├── libcrypt.a │ ├── libcrypt.so │ ├── libcrypt.so.1 │ ├── libdl-2.27.so │ ├── libdl.a │ ├── libdl.so │ ├── libdl.so.2 │ ├── libg.a │ ├── libgcc_s.so.1 │ ├── libgomp.so.1 │ ├── libgomp.so.1.0.0 │ ├── libitm.so.1 │ ├── libitm.so.1.0.0 │ ├── liblsan.so.0 │ ├── liblsan.so.0.0.0 │ ├── libm-2.27.so │ ├── libm.a │ ├── libm.so │ ├── libm.so.6 │ ├── libmcheck.a │ ├── libmemusage.so │ ├── libnsl-2.27.so │ ├── libnsl.a │ ├── libnsl.so │ ├── libnsl.so.1 │ ├── libnss_compat-2.27.so │ ├── libnss_compat.so │ ├── libnss_compat.so.2 │ ├── libnss_dns-2.27.so │ ├── libnss_dns.so │ ├── libnss_dns.so.2 │ ├── libnss_files-2.27.so │ ├── libnss_files.so │ ├── libnss_files.so.2 │ ├── libnss_hesiod-2.27.so │ ├── libnss_hesiod.so │ ├── libnss_hesiod.so.2 │ ├── libnss_nis-2.27.so │ ├── libnss_nis.so │ ├── libnss_nis.so.2 │ ├── libnss_nisplus-2.27.so │ ├── libnss_nisplus.so │ ├── libnss_nisplus.so.2 │ ├── libpcprofile.so │ ├── libpthread-2.27.so │ ├── libpthread.a │ ├── libpthread.so │ ├── libpthread.so.0 │ ├── libpthread_nonshared.a │ ├── libresolv-2.27.so │ ├── libresolv.a │ ├── libresolv.so │ ├── libresolv.so.2 │ ├── librpcsvc.a │ ├── librt-2.27.so │ ├── librt.a │ ├── librt.so │ ├── librt.so.1 │ ├── libstdc++.so.6 │ ├── libstdc++.so.6.0.25 │ ├── libthread_db-1.0.so │ ├── libthread_db.so │ ├── libthread_db.so.1 │ ├── libtsan.so.0 │ ├── libtsan.so.0.0.0 │ ├── libtsan_preinit.o │ ├── libubsan.so.0 │ ├── libubsan.so.0.0.0 │ ├── libutil-2.27.so │ ├── libutil.a │ ├── libutil.so │ └── libutil.so.1 ├── mini_httpd ├── mini_httpd.conf ├── mini_httpd_patched ├── qemu-aarch64-static ├── run.sh └── www │ ├── fe │ ├── 123123 │ ├── admin │ │ ├── .htpasswd │ │ └── admin_test.html │ ├── index.html │ └── test │ │ └── test.html │ ├── mini_httpd.log │ └── mini_httpd.pid ├── [RWCTF] Game2048 ├── 2048 │ ├── index.html │ ├── login.html │ └── submit.html ├── .gdb_history ├── .vscode │ └── settings.json ├── README.md ├── core ├── exp.py ├── libCoroutine.so ├── libc-2.31.so ├── note └── rhttpd ├── [qwb] gamebox ├── ._httpd ├── ._ld64-uClibc-1.0.32.so ├── ._libuClibc-1.0.32.so ├── .gdb_history ├── check_result ├── exp.py ├── flag ├── gdb_script ├── htdocs │ ├── 1 │ └── index.html ├── httpd ├── ld64-uClibc-1.0.32.so ├── lib │ ├── ld64-uClibc.so.0 │ └── libc.so.0 ├── libuClibc-1.0.32.so ├── note ├── run.sh └── server.py ├── [qwb] qwbhttpd ├── .gdb_history ├── cmp.c ├── exp.py ├── flag ├── gadgets ├── gdb_script ├── index.html ├── lib │ ├── ld-uClibc-mipsn8.so.0 │ └── libc.so.0 ├── qwbhttpd ├── server.py ├── start.sh └── test.html └── [qwb] xx_easy_server ├── .gdb_history ├── core ├── crash ├── crash.c ├── debug.sh ├── exp.py ├── exp2.py ├── gadgets ├── gdb_script ├── hack.py ├── hacker.html ├── libc-2.31.so ├── note ├── qemu_debug.sh ├── server.py ├── test ├── test.c ├── webs ├── flag ├── index.html └── test.html └── xx_easy_server /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/README.md -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/bin/sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/bin/sh -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/debug.sh -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/etc/passwd -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/exp.py -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/gdb_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/gdb_script -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/Mcrt1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/Mcrt1.o -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/Scrt1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/Scrt1.o -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/crt1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/crt1.o -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/crti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/crti.o -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/crtn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/crtn.o -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/gcrt1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/gcrt1.o -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/ld-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/ld-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/ld-linux-aarch64.so.1: -------------------------------------------------------------------------------- 1 | ld-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libBrokenLocale-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libBrokenLocale-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libBrokenLocale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libBrokenLocale.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libBrokenLocale.so: -------------------------------------------------------------------------------- 1 | libBrokenLocale.so.1 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libBrokenLocale.so.1: -------------------------------------------------------------------------------- 1 | libBrokenLocale-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libSegFault.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libSegFault.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libanl-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libanl-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libanl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libanl.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libanl.so: -------------------------------------------------------------------------------- 1 | libanl.so.1 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libanl.so.1: -------------------------------------------------------------------------------- 1 | libanl-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libasan.so.4: -------------------------------------------------------------------------------- 1 | libasan.so.4.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libasan.so.4.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libasan.so.4.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libatomic.so.1: -------------------------------------------------------------------------------- 1 | libatomic.so.1.2.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libatomic.so.1.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libatomic.so.1.2.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libc-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libc.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libc.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libc.so.6: -------------------------------------------------------------------------------- 1 | libc-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libc_nonshared.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libc_nonshared.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libcidn-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libcidn-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libcidn.so: -------------------------------------------------------------------------------- 1 | libcidn.so.1 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libcidn.so.1: -------------------------------------------------------------------------------- 1 | libcidn-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libcrypt-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libcrypt-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libcrypt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libcrypt.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libcrypt.so: -------------------------------------------------------------------------------- 1 | libcrypt.so.1 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libcrypt.so.1: -------------------------------------------------------------------------------- 1 | libcrypt-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libdl-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libdl-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libdl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libdl.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libdl.so: -------------------------------------------------------------------------------- 1 | libdl.so.2 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libdl.so.2: -------------------------------------------------------------------------------- 1 | libdl-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libg.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libgcc_s.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libgcc_s.so.1 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libgomp.so.1: -------------------------------------------------------------------------------- 1 | libgomp.so.1.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libgomp.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libgomp.so.1.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libitm.so.1: -------------------------------------------------------------------------------- 1 | libitm.so.1.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libitm.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libitm.so.1.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/liblsan.so.0: -------------------------------------------------------------------------------- 1 | liblsan.so.0.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/liblsan.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/liblsan.so.0.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libm-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libm-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libm.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libm.so: -------------------------------------------------------------------------------- 1 | libm.so.6 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libm.so.6: -------------------------------------------------------------------------------- 1 | libm-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libmcheck.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libmcheck.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libmemusage.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libmemusage.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnsl-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libnsl-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libnsl.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnsl.so: -------------------------------------------------------------------------------- 1 | libnsl.so.1 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnsl.so.1: -------------------------------------------------------------------------------- 1 | libnsl-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_compat-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libnss_compat-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_compat.so: -------------------------------------------------------------------------------- 1 | libnss_compat.so.2 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_compat.so.2: -------------------------------------------------------------------------------- 1 | libnss_compat-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_dns-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libnss_dns-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_dns.so: -------------------------------------------------------------------------------- 1 | libnss_dns.so.2 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_dns.so.2: -------------------------------------------------------------------------------- 1 | libnss_dns-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_files-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libnss_files-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_files.so: -------------------------------------------------------------------------------- 1 | libnss_files.so.2 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_files.so.2: -------------------------------------------------------------------------------- 1 | libnss_files-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_hesiod-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libnss_hesiod-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_hesiod.so: -------------------------------------------------------------------------------- 1 | libnss_hesiod.so.2 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_hesiod.so.2: -------------------------------------------------------------------------------- 1 | libnss_hesiod-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_nis-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libnss_nis-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_nis.so: -------------------------------------------------------------------------------- 1 | libnss_nis.so.2 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_nis.so.2: -------------------------------------------------------------------------------- 1 | libnss_nis-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_nisplus-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libnss_nisplus-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_nisplus.so: -------------------------------------------------------------------------------- 1 | libnss_nisplus.so.2 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libnss_nisplus.so.2: -------------------------------------------------------------------------------- 1 | libnss_nisplus-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libpcprofile.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libpcprofile.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libpthread-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libpthread-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libpthread.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libpthread.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libpthread.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libpthread.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libpthread.so.0: -------------------------------------------------------------------------------- 1 | libpthread-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libpthread_nonshared.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libpthread_nonshared.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libresolv-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libresolv-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libresolv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libresolv.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libresolv.so: -------------------------------------------------------------------------------- 1 | libresolv.so.2 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libresolv.so.2: -------------------------------------------------------------------------------- 1 | libresolv-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/librpcsvc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/librpcsvc.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/librt-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/librt-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/librt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/librt.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/librt.so: -------------------------------------------------------------------------------- 1 | librt.so.1 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/librt.so.1: -------------------------------------------------------------------------------- 1 | librt-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libstdc++.so.6: -------------------------------------------------------------------------------- 1 | libstdc++.so.6.0.25 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libstdc++.so.6.0.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libstdc++.so.6.0.25 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libthread_db-1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libthread_db-1.0.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libthread_db.so: -------------------------------------------------------------------------------- 1 | libthread_db.so.1 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libthread_db.so.1: -------------------------------------------------------------------------------- 1 | libthread_db-1.0.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libtsan.so.0: -------------------------------------------------------------------------------- 1 | libtsan.so.0.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libtsan.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libtsan.so.0.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libtsan_preinit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libtsan_preinit.o -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libubsan.so.0: -------------------------------------------------------------------------------- 1 | libubsan.so.0.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libubsan.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libubsan.so.0.0.0 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libutil-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libutil-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/lib/libutil.a -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libutil.so: -------------------------------------------------------------------------------- 1 | libutil.so.1 -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/lib/libutil.so.1: -------------------------------------------------------------------------------- 1 | libutil-2.27.so -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/mini_httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/mini_httpd -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/mini_httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/mini_httpd.conf -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/mini_httpd_patched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/mini_httpd_patched -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/qemu-aarch64-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/qemu-aarch64-static -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[ByteCTF]Master of httpd/run.sh -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/www/fe/123123: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/www/fe/admin/.htpasswd: -------------------------------------------------------------------------------- 1 | admin:IGC6xk72.HCY6 2 | -------------------------------------------------------------------------------- /httpd/[ByteCTF]Master of httpd/www/fe/admin/admin_test.html: -------------------------------------------------------------------------------- 1 |
Your Comment: %s
3 | 4 | 5 | -------------------------------------------------------------------------------- /httpd/[RWCTF] Game2048/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /httpd/[RWCTF] Game2048/core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[RWCTF] Game2048/core -------------------------------------------------------------------------------- /httpd/[RWCTF] Game2048/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[RWCTF] Game2048/exp.py -------------------------------------------------------------------------------- /httpd/[RWCTF] Game2048/libCoroutine.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[RWCTF] Game2048/libCoroutine.so -------------------------------------------------------------------------------- /httpd/[RWCTF] Game2048/libc-2.31.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[RWCTF] Game2048/libc-2.31.so -------------------------------------------------------------------------------- /httpd/[RWCTF] Game2048/note: -------------------------------------------------------------------------------- 1 | RWCTF2021 Game2048 2 | 3 | 4 | base dir: /var/www/html 5 | -------------------------------------------------------------------------------- /httpd/[RWCTF] Game2048/rhttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[RWCTF] Game2048/rhttpd -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/._httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[qwb] gamebox/._httpd -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/._ld64-uClibc-1.0.32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[qwb] gamebox/._ld64-uClibc-1.0.32.so -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/._libuClibc-1.0.32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[qwb] gamebox/._libuClibc-1.0.32.so -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[qwb] gamebox/.gdb_history -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/check_result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[qwb] gamebox/check_result -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[qwb] gamebox/exp.py -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/flag: -------------------------------------------------------------------------------- 1 | flag{test} 2 | -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/gdb_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yikesoftware/Iot_challenges/HEAD/httpd/[qwb] gamebox/gdb_script -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/htdocs/1: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo $1 3 | -------------------------------------------------------------------------------- /httpd/[qwb] gamebox/htdocs/index.html: -------------------------------------------------------------------------------- 1 |