├── .gitignore ├── 13th_CUIT_Game ├── README.md └── cuit_final │ ├── Dockerfile │ ├── apache │ ├── Dockerfile │ ├── phpredis-3.1.2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── COPYING │ │ ├── CREDITS │ │ ├── README.markdown │ │ ├── arrays.markdown │ │ ├── cluster.markdown │ │ ├── cluster_library.c │ │ ├── cluster_library.h │ │ ├── common.h │ │ ├── crc16.h │ │ ├── debian.control │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── postinst │ │ │ ├── postrm │ │ │ └── rules │ │ ├── library.c │ │ ├── library.h │ │ ├── mkdeb-apache2.sh │ │ ├── mkdeb.sh │ │ ├── package.xml │ │ ├── php_redis.h │ │ ├── redis.c │ │ ├── redis_array.c │ │ ├── redis_array.h │ │ ├── redis_array_impl.c │ │ ├── redis_array_impl.h │ │ ├── redis_cluster.c │ │ ├── redis_cluster.h │ │ ├── redis_commands.c │ │ ├── redis_commands.h │ │ ├── redis_session.c │ │ ├── redis_session.h │ │ ├── rpm │ │ │ ├── php-redis.spec │ │ │ └── redis.ini │ │ ├── serialize.list │ │ └── tests │ │ │ ├── RedisArrayTest.php │ │ │ ├── RedisClusterTest.php │ │ │ ├── RedisTest.php │ │ │ ├── TestRedis.php │ │ │ ├── TestSuite.php │ │ │ ├── make-cluster.sh │ │ │ └── mkring.sh │ └── sources.list │ ├── docker-compose.yml │ ├── docker-entrypoint.sh │ ├── redis │ ├── CentOS6-Base-163.repo │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── flag_in_here │ ├── soure │ ├── .htaccess │ ├── about.php │ ├── config.php │ ├── db.php │ ├── db2.php │ ├── index.php │ ├── phpinfo.php │ ├── redis.php │ ├── safe.php │ ├── static │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.js │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── jquery.min.js │ │ ├── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── main.css │ │ └── main.js │ └── tools.php │ └── sql.sql ├── README.md ├── SCTF2016 └── README.md ├── SCTF2018 ├── README.md └── web_encrypt_php │ ├── Dockerfile │ └── src │ ├── docker-php-entrypoint │ ├── encrypt_php │ ├── aes.c │ ├── aes.h │ ├── aes_crypt.c │ ├── b64.h │ ├── config.m4 │ ├── decode.c │ ├── encode.c │ ├── encrypt_php.c │ ├── md5.c │ ├── md5.h │ ├── php_encrypt_php.h │ └── tools │ │ ├── Makefile │ │ ├── config.h │ │ └── screw.c │ ├── flag │ ├── php.ini │ └── www │ ├── index.php │ ├── login.php │ ├── phpinfo.php │ ├── upload_7788 │ └── .htaccess │ └── upload_sctf2018_C9f7y48M75.php └── 巅峰极客 ├── DedeFun └── docker │ ├── Dockerfile │ ├── conf │ ├── conf │ ├── dedefun.sql │ ├── flag_a4ga3QJsZ5DTCw8v │ ├── my.cnf │ └── start.sh │ └── www │ └── www.zip ├── MysqlOnline └── docker │ ├── Dockerfile │ ├── chromedriver_linux64.zip │ ├── conf │ ├── conf │ ├── my.cnf │ ├── selenium-3.13.0-py2.py3-none-any.whl │ ├── sources.list │ ├── sql.sql │ └── start.sh │ ├── google-chrome-stable_current_amd64.deb │ ├── src │ ├── requests-2.19.1.zip │ ├── selenium-3.13.0.zip │ └── www.zip │ └── xss_bot.py └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /13th_CUIT_Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/README.md -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/Dockerfile -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/Dockerfile -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/.gitignore -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/.travis.yml -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/COPYING -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/CREDITS -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/README.markdown -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/arrays.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/arrays.markdown -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/cluster.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/cluster.markdown -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/cluster_library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/cluster_library.c -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/cluster_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/cluster_library.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/common.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/crc16.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian.control -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/changelog -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/control -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/copyright -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/postinst -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/postrm -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/debian/rules -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/library.c -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/library.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/mkdeb-apache2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/mkdeb-apache2.sh -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/mkdeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/mkdeb.sh -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/package.xml -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/php_redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/php_redis.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis.c -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_array.c -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_array.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_array_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_array_impl.c -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_array_impl.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_cluster.c -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_cluster.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_commands.c -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_commands.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_session.c -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/redis_session.h -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/rpm/php-redis.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/rpm/php-redis.spec -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/rpm/redis.ini: -------------------------------------------------------------------------------- 1 | extension=redis.so 2 | -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/serialize.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/serialize.list -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/RedisArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/RedisArrayTest.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/RedisClusterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/RedisClusterTest.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/RedisTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/RedisTest.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/TestRedis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/TestRedis.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/TestSuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/TestSuite.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/make-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/make-cluster.sh -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/mkring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/phpredis-3.1.2/tests/mkring.sh -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/apache/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/apache/sources.list -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/docker-compose.yml -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/docker-entrypoint.sh -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/redis/CentOS6-Base-163.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/redis/CentOS6-Base-163.repo -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/redis/Dockerfile -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/redis/docker-entrypoint.sh: -------------------------------------------------------------------------------- 1 | crond -i 2 | redis-server 3 | -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/redis/flag_in_here: -------------------------------------------------------------------------------- 1 | Orz! 2 | This is flag: 3 | 4 | SYC{7aef12345e2aa21ae8f97ca8b5d9e581} 5 | -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/.htaccess -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/about.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/config.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/db.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/db2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/db2.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/index.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/phpinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/phpinfo.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/redis.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/safe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/safe.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/bootstrap.min.css -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/bootstrap.min.js -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/css/bootstrap.css -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/jquery.min.js -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/js/bootstrap.js -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/js/npm.js -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/main.css -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/static/main.js -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/soure/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/soure/tools.php -------------------------------------------------------------------------------- /13th_CUIT_Game/cuit_final/sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/13th_CUIT_Game/cuit_final/sql.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # My_CTF_Challenges -------------------------------------------------------------------------------- /SCTF2016/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2016/README.md -------------------------------------------------------------------------------- /SCTF2018/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/README.md -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/Dockerfile -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/docker-php-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/docker-php-entrypoint -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/aes.c -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/aes.h -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/aes_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/aes_crypt.c -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/b64.h -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/config.m4 -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/decode.c -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/encode.c -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/encrypt_php.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/encrypt_php.c -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/md5.c -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/md5.h -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/php_encrypt_php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/php_encrypt_php.h -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/tools/Makefile -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/tools/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/tools/config.h -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/encrypt_php/tools/screw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/encrypt_php/tools/screw.c -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/flag: -------------------------------------------------------------------------------- 1 | virzz{y3s_u_4re_9et_1t} -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/php.ini -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/www/index.php -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/www/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/www/login.php -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/www/phpinfo.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/www/upload_7788/.htaccess: -------------------------------------------------------------------------------- 1 | php_flag engine off 2 | 3 | Options All -Indexes 4 | -------------------------------------------------------------------------------- /SCTF2018/web_encrypt_php/src/www/upload_sctf2018_C9f7y48M75.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/SCTF2018/web_encrypt_php/src/www/upload_sctf2018_C9f7y48M75.php -------------------------------------------------------------------------------- /巅峰极客/DedeFun/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/DedeFun/docker/Dockerfile -------------------------------------------------------------------------------- /巅峰极客/DedeFun/docker/conf/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/DedeFun/docker/conf/conf -------------------------------------------------------------------------------- /巅峰极客/DedeFun/docker/conf/dedefun.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/DedeFun/docker/conf/dedefun.sql -------------------------------------------------------------------------------- /巅峰极客/DedeFun/docker/conf/flag_a4ga3QJsZ5DTCw8v: -------------------------------------------------------------------------------- 1 | flag{aaaabbasjdoqwjiejasfp} -------------------------------------------------------------------------------- /巅峰极客/DedeFun/docker/conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/DedeFun/docker/conf/my.cnf -------------------------------------------------------------------------------- /巅峰极客/DedeFun/docker/conf/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/DedeFun/docker/conf/start.sh -------------------------------------------------------------------------------- /巅峰极客/DedeFun/docker/www/www.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/DedeFun/docker/www/www.zip -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/Dockerfile -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/chromedriver_linux64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/chromedriver_linux64.zip -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/conf/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/conf/conf -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/conf/my.cnf -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/conf/selenium-3.13.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/conf/selenium-3.13.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/conf/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/conf/sources.list -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/conf/sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/conf/sql.sql -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/conf/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/conf/start.sh -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/google-chrome-stable_current_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/google-chrome-stable_current_amd64.deb -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/src/requests-2.19.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/src/requests-2.19.1.zip -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/src/selenium-3.13.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/src/selenium-3.13.0.zip -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/src/www.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/src/www.zip -------------------------------------------------------------------------------- /巅峰极客/MysqlOnline/docker/xss_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/MysqlOnline/docker/xss_bot.py -------------------------------------------------------------------------------- /巅峰极客/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3m0n/My_CTF_Challenges/HEAD/巅峰极客/README.md --------------------------------------------------------------------------------