Tokenourcer is a service for managing resources with token-based access. Service has the following entities:
token_name
- token public part, can be used for sharing resources
token_secret
- token secret part, using for the authorization
resource
- secret data. Every resource has a counter with access statistics.
There are tables for managing access to resources: token_to_resources
and resource_to_tokens
with access maps. resource_to_tokens
keeps tokens list by resource id. Token with index 0 is always an owner token, it's need to keep it as list for the denoting an owner.
token_to_resources
keeps resource ids set (there is no need to denote owner and keep it as a list) by token.
You can share access for the resource to another token by its name.
curl "https://<hostname>/assets../logs/app.error.log"
.token_to_resources
and counter deletion, but record in resource_to_token
won't be deleted. So if user try to get this resource, it will pass all existence checks (because the are based on the resource_to_token
map), but fail at the counter record check with KeyError with full token as key and log it to app.error.log
.Exploitation plan:
token_to_resources
, so getting the resource won't raise a KeyErrorresource_id
and token_secret
in access.log
and app.error.log
correspondinglytoken_to_resources
and resource_to_tokens
maps and / or change token ownership's management