Skip to content

Instantly share code, notes, and snippets.

View iamtheonlyoozy's full-sized avatar

oozy iamtheonlyoozy

View GitHub Profile
@iamtheonlyoozy
iamtheonlyoozy / READ.md
Created October 6, 2023 18:09 — forked from TheGreatSageEqualToHeaven/READ.md
Data store vulnerabilities

A warning to Roblox developers about a powerful exploit primitive. In this, I will detail the research I’ve conducted into this attack vector and walk you through how you as a developer, can protect against exploits with primitives like this.

DataStoreService lets you store data that needs to persist between sessions, such as items in a player’s inventory or skill points. Data stores are consistent per experience, so any place in an experience can access and change the same data, including places on different servers.

By default, experiences tested in Studio cannot access data stores, so you must first enable API services. You will need to do this to test the vulnerabilities.

The idea I wanted to explore when pondering the above question was; can we exploit remotes to prevent data from saving? It is easy to blame the developer for not protecting themselves against such a simple exploit but it ends up being more complicated than that. I found plenty of examples of these vulnerabilities occurring in many pop