AWS - WorkDocs Privesc

Reading time: 2 minutes

WorkDocs

WorkDocsに関する詳細情報は、以下を確認してください:

AWS - Directory Services / WorkDocs Enum

workdocs:CreateUser

指定されたディレクトリ内にユーザーを作成すると、WorkDocsと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)

ファイルには機密情報が含まれている可能性があるため、読み取ってください:

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

何かを読むアクセス権がない場合は、それを単に付与することができます。

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

ユーザーを管理者にするには、グループ ZOCALO_ADMIN に設定します。
そのためには、https://docs.aws.amazon.com/workdocs/latest/adminguide/manage_set_admin.html の指示に従ってください。

そのユーザーで workdoc にログインし、/workdocs/index.html#/admin の管理パネルにアクセスします。

CLI からこれを行う方法は見つかりませんでした。