AWS - DocumentDB Enum

ゼロからヒーローまでAWSハッキングを学ぶ htARTE(HackTricks AWS Red Team Expert)

HackTricksをサポートする他の方法:

DocumentDB

Amazon DocumentDBは、MongoDBとの互換性を提供し、高速で信頼性があり、完全に管理されたデータベースサービスとして提示されています。展開、運用、スケーラビリティの面でシンプルに設計されており、クラウド内でMongoDB互換データベースのシームレスな移行と運用を可能にします。ユーザーはこのサービスを活用して、既存のアプリケーションコードを実行し、馴染みのあるドライバーやツールを利用して、MongoDBと同様にスムーズな移行と運用を実現できます。

aws docdb describe-db-clusters # Get username from "MasterUsername", get also the endpoint from "Endpoint"
aws docdb describe-db-instances #Get hostnames from here

# Parameter groups
aws docdb describe-db-cluster-parameter-groups
aws docdb describe-db-cluster-parameters --db-cluster-parameter-group-name <param_group_name>

# Snapshots
aws docdb describe-db-cluster-snapshots
aws --region us-east-1 --profile ad docdb describe-db-cluster-snapshot-attributes --db-cluster-snapshot-identifier <snap_id>

NoSQL インジェクション

DocumentDB は MongoDB 互換データベースであるため、一般的な NoSQL インジェクション攻撃にも脆弱である可能性があります:

DocumentDB

pageAWS - DocumentDB Unauthenticated Enum

参考文献

ゼロからヒーローまでのAWSハッキングを学ぶ htARTE (HackTricks AWS Red Team Expert)!

HackTricks をサポートする他の方法:

最終更新