starctf2018
Official repository containing files related to *ctf 2018
File Explorer
Download Latest Version (.zip)- flag.py
- primitive.py
- README.md
- solve.py
- flag.py
- flag2.py
- README.md
- solve.py
- solve2.py
- task.py
- task2.py
- makefile
- readme.md
- solve.py
- warmup
- warmup.c
- readme.md
- welcome.c
- readme.md
- flag.py
- README.md
- solve.py
- task.py
- playchess.py
- main.c
- statement.txt
- std.cpp
- bs.c
- makefile
- readme.md
- solve.py
- calc.c
- hack.py
- hack_fd.py
- libc.so.6
- Makefile
- README.md
- hack.py
- libc.so.6
- main.c
- Makefile
- README.md
- hack.py
- main.c
- Makefile
- README.md
- README.md
- solve.py
- stack.c
- exploit.py
- readme.md
- urlparse1-47e10be0295a1c6c479a260239f5e0b1fd0c9696
- urlparse1.c
- urlparse2-123d085f1337ff85aaff95b1c23e5cabedc6e2cb
- urlparse2.c
- urlparse3-a8f0c79677f99561a0acedc356f27ec57049628b
- urlparse3.c
- hack.py
- heap.c
- heap.h
- libc.so.6
- main.c
- Makefile
- README
- solve.md
- runConfigurations.xml
- output.json
- ExampleInstrumentedTest.java
- a.cpp
- b.cpp
- common.h
- crc.cpp
- crc.h
- MainActivity.java
- activity_main.xml
- ic_launcher.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_round.png
- colors.xml
- strings.xml
- styles.xml
- AndroidManifest.xml
- ExampleUnitTest.java
- .gitignore
- build.gradle
- CMakeLists.txt
- proguard-rules.pro
- .gitignore
- enc.py
- fix.py
- forcecrc32.py
- gradle-wrapper.jar
- gradle-wrapper.properties
- .gitignore
- build.gradle
- gradle.properties
- gradlew
- gradlew.bat
- settings.gradle
- readme.md
- check.wasm
- tea.c
- tea.h
- readme.md
- solve.py
- source.js
- README.md
- web.js
- readme.MD
- serve.py
- serve.pyc
- solve.py
- .gitignore
- LICENSE
- README.md
# Installation Guide
git clone https://github.com/sixstars/starctf2018
Downloads the entire project code from GitHub to your computer.
cd starctf2018
Moves into the project folder you just downloaded.
2. CMake
Medium Recommendedcd re-baby-droid/BabyAndroid/app
This project's files live in a subfolder, so move into it first.
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
3. Gradle (Java/Kotlin)
Medium- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java/Kotlin projects.
- Gradle If the repo includes gradlew (Gradle Wrapper), you don't need to install Gradle separately.
cd re-baby-droid/BabyAndroid/app
This project's files live in a subfolder, so move into it first.
./gradlew build
Builds the project using Gradle.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
cd misc-warmup
This project's files live in a subfolder, so move into it first.
make
Compiles the code based on the generated build configuration to produce an executable.
