Skip to content

5G inspired service played at enowars7 - International Information Security Contest SoSe23 @ TU Berlin

License

Notifications You must be signed in to change notification settings

enowars/enowars7-service-phreaking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

5Go phreaking

This service is a basic simulation of a standalone 5G network - implementing a registration protocol inspired by NAS/5GMM and the NGAP protocol. The service consist of two main components:

  • Core: TCP server (internal port 3399) simulating 5G Access and Management Function (AMF) capabilities that can manages user equipment registration, authentication and security. The core also has a rudimentary User Plane Function (UPF), so when the phone is registered it can "request data from the internet". The response is just a hardcoded HTML page.
  • UE (User Equipment): TCP server (internal port 6060) simulating a "5Go-enabled" phone, which connects to the Core and makes a fake Gohper protocol request to the "internet". It also contains a gRPC server (internal port 9930) to simulate the operating system GPS API of the phone. It is used by checker to put flags on the UE.

In addition to these two components, a binary called gNB is provided. Which simulates a fake basestation overpowering a real basestation. This is to facilitate communication between UE and Core, and make the service useable/interactive. Source code for this binary is in the service_hidden folder, which is not given teams playing this service. The setup.sh script in the hidden folder is used to compile the binary and copy it over to the service folder.

Protocol call flow

5G registration

The flag store is in the LocationUpdate message, which is supposed to be encrypted.

Setup

Docker

Running the service will create 1 core container and 10 UE containers:

Docker setup

Each UE will only send one LocationUpdate message, containing one flag. To make flags available for 10 rounds, 10 UEs are running at the same time. Each round the checker will put a flag on UE number currentRound % 10. Running multiple instances of UEs is a quirk of the service, which also make it "feel" as a larger mobile network with multiple phones.

Secrets

The service uses symmetric encryption (AES), thus each team playing this service need a unique key. The checker also needs to have the key for each team. The secrets are set in the .env file in the same folder as the docker-compose file for both the service and checker.

  • Service secrets:
    • PHREAKING_GRPC_PASS: Password for the gRPC server
    • PHREAKING_SIM_KEY: Key used for AES, must be of length 32.
  • Checker secrets:
    • PHREAKING_<N>_GRPC_PASS: Password for the gRPC server. N is team number
    • PHREAKING_<N>_SIM_KEY: Key used for AES, must be of length 32. N is team number
    • REDIS_PASS: Password for checker db.

Script for generating secrets for each team can be found in this PR.

About

5G inspired service played at enowars7 - International Information Security Contest SoSe23 @ TU Berlin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages