English 中文(简体)
在签署政策文件后,有人无法将数千份档案上载到亚马孙S3?
原标题:What prevents someone from uploading thousands of files to Amazon S3, after they have the signed policy document?
问题回答

政策文件载有你为限制政策期限而确定的到期领域。

来自亚马孙的遗址:

有效期到期——《格林尼治时》规定政策文件何时到期。 一旦政策文件过期,上载表格就不再有效。

{"expiration": "2009-01-01T00:00:00Z",
  "conditions": [ 
    {"bucket": "s3-bucket"}, 
    ["starts-with", "$key", "uploads/"],
    {"acl": "private"},
    {"success_action_redirect": "http://localhost/"},
    ["starts-with", "$Content-Type", ""],
   ["content-length-range", 0, 1048576]
 ]
}

我认为,我已经读过一些地方, b的最长寿命是36小时,但我无法发现,现在我看不到。

在S3中,没有任何东西可以限制拥有政策手段的人能够上载的档案数量。

如果有人对此表示关切,我建议你把S3上载的货盘上其他东西,以便检查贵国客户之一的档案数量。





相关问题
Signed executables under Linux

For security reasons, it is desirable to check the integrity of code before execution, avoiding tampered software by an attacker. So, my question is How to sign executable code and run only trusted ...

MALICIOUS_CODE EI_EXPOSE_REP Medium

I run findbugs against all of my code and only tackle the top stuff. I finally got the top stuff resolved and now am looking at the details. I have a simple entity, say a user: public class User ...

XSS on jsbin.com

Anyone know if jsbin.com implements any protection for XSS or other javascript attacks? I see jsbin links used fairly regularly on sites like this one and I can t find any indication from the site ...

Make md5 strong

Im making a website that will intergrate with game that only support md5 hashing metod (atm). Which ofc is not especially safe anymore. But how could i make it stronger? Should I just generate long ...

Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

热门标签