Our CTF consists of challenges in a variety of categories. Each of the categories has its own section on the Wiki with additional information.
Don't worry if you aren't familiar with any of the categories, we will have a talk on each of them targeted at those with no prior experience.
Set up your environment. This may be easy or hard, depending on your primary operating system and computer specs. Feel free to ask on the discord if you need help or want suggestions on what the easiest setup is.
Sign up on our CTF scoreboard with your @osu.edu email
Join the Discord
Choose an easy (low points) problem to start with, and consult the guides linked above for each category. Ask on the discord if you get stuck!
Presumably you're looking at this section because someone recommended you try out some tool for solving a challenge, and you can't figure out how to install it on your system.
Here's some things to try:
¶ Debian / Ubuntu (including WSL on Windows)
Apt is your package manager. Google something like "<tool name> apt" and you'll probably find a command like this:
sudo apt install <tool_name>
¶ macOS
Homebrew is a popular package manager. After you've installed Homebrew, google something like "<tool name> homebrew" and see if someone has created a package for it. You'll probably find a command like this:
brew install <tool_name>
¶ Other systems...
If you used another operating system, you're on your own. Some tools have installers on their website for windows (ex. nmap) but many tools do not, which is why we recommend using a linux distribution. If you use a distribution with
yum
orpacman
as package managers, you'll likely find packages for the tools you'll want as well.
First, make sure you have the correct version of Python for the tool -- usually each tool will specify what version it is written for... hopefully everything is on Python 3 by now.
Usually installing python is as simple as installing a package (on Debian/Ubuntu,
sudo apt install python3-pip
should to the trick. On many systems you have to usepython3
andpip3
to use Python 3 once its installed). You may also find it useful to use a python version management tool such aspyenv
.If you already have Python installed, look for an install command in the tool's README like the following:
sudo pip3 install <tool_name>
Check if you might be missing a dependency for the tool. Many tools are upfront with their dependencies in their README and will frequently provide the exact command to install the dependencies in a variety of package managers. Sometimes googling part of the error can help you find others who have already solved the issue.