8000 GitHub - AKA-NETWORK/TWA: TIME WRAP ATTACK
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

AKA-NETWORK/TWA

 
 

Repository files navigation

Time Warp Attack: Side-Channel Timing Security Game

Overview

Learn about timing side-channel vulnerabilities by exploiting and patching a flawed authentication service.

Quick Start (Docker)

docker-compose up --build
  • Vulnerable service: http://localhost:5000
  • Fixed (patched) service: http://localhost:5001

Game Files

  • code.py — vulnerable service
  • solution.py — fixed service
  • hack.py — attack tool
  • tests.py — validation tests
  • hint.txt — hints for learners
  • graph.py — visualize response timings

How to Play

  1. Try attacking the vulnerable service using hack.py.
  2. Analyze timing information to find valid users and PINs.
  3. Patch the service (see solution.py) and re-test.
  4. Use visual graphs for deeper understanding.

Educational Objectives

  • Identify and exploit timing side-channels
  • Learn constant-time coding techniques
  • Understand authentication security best practices

See hint.txt for help! Ask AI Agent

my_streaming_software

my_streaming_software/ ├── src/ │ ├── main.cpp │ ├── recorder/ │ │ ├── screen_recorder.cpp │ │ └── screen_recorder.h │ │ ├── webcam_recorder.cpp │ │ └── webcam_recorder.h │ │ ├── audio_recorder.cpp │ │ └── audio_recorder.h │ ├── streamer/ │ │ ├── live_streamer.cpp │ │ └── live_streamer.h │ ├── gui/ │ │ ├── main_window.cpp │ │ └── main_window.h │ └── utils/ │ ├── ffmpeg_wrapper.cpp │ └── ffmpeg_wrapper.h ├── docs/ │ ├── README.md │ ├── CONTRIBUTING.md │ └── INSTALL.md ├── tests/ │ ├── test_recorder.cpp │ ├── test_streamer.cpp │ ├── test_webcam_recorder.cpp │ ├── test_audio_recorder.cpp │ └── test_real_time_effects.cpp └── LICENSE

About

TIME WRAP ATTACK

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 66.3%
  • Python 28.7%
  • CMake 4.1%
  • Dockerfile 0.9%
0