Project · mobile
DDoS Detection
Mobile app + ML
An Android app that watches live network traffic and flags DDoS activity, backed by a classifier I trained and an API I wrote to serve it.
Traffic is captured on a host machine and pushed through a custom API to a Railway-hosted server, where a trained model scores each connection as normal or attack and streams the verdict back to the phone. All three pieces are mine: the Kotlin client, the API layer, and the model itself. The serving API lives in a separate repo, LiveDDOSDetectionAPI.