Introduction

Welcome to CryptoHack! These introductory challenges are designed to walk you through the process of solving challenges and submitting flags. Complete the challenges to earn your first gold trophy.


Challenges

Toggle
  • Finding Flags
    2 pts · 56355 Solves

    Each challenge is designed to help introduce you to a new piece of cryptography. Solving a challenge will require you to find a "flag".

    These flags will usually be in the format crypto{y0ur_f1rst_fl4g}. The flag format helps you verify that you found the correct solution.

    Try submitting this flag into the form below to solve your first challenge.

    You must be logged in to submit your flag.


  • Great Snakes
    3 pts · 47007 Solves

    Modern cryptography involves code, and code involves coding. CryptoHack provides a good opportunity to sharpen your skills.

    Of all modern programming languages, Python 3 stands out as ideal for quickly writing cryptographic scripts and attacks. For more information about why we think Python is so great for this, please see the FAQ.

    Run the attached Python script and it will output your flag.

    Challenge files:
      - great_snakes.py

    Resources:
      - Downloading Python

    You must be logged in to submit your flag.


  • Network Attacks
    5 pts · 23237 Solves

    Several of the challenges are dynamic and require you to talk to our challenge servers over the network. This allows you to perform man-in-the-middle attacks on people trying to communicate, or directly attack a vulnerable service. To keep things consistent, our interactive servers always send and receive JSON objects.

    Such network communication can be made easy in Python with the pwntools module. This is not part of the Python standard library, so needs to be installed with pip using the command line pip install pwntools.

    For this challenge, connect to socket.cryptohack.org on port 11112. Send a JSON object with the key buy and value flag.

    The example script below contains the beginnings of a solution for you to modify, and you can reuse it for later challenges.

    Connect at socket.cryptohack.org 11112

    Challenge files:
      - pwntools_example.py

    You must be logged in to submit your flag.


Level Up

level up icon

You are now level Current level