32

简短版本:如何使用 Python 使用 Amazon CloudFront/S3 来“按需”制作签名 URL 以模仿 Nginx 的 X-Accel-Redirect 行为(即保护下载)。

我已经启动了一个 Django 服务器并使用 Nginx 前端运行。我一直受到对它的请求的打击,最近不得不将它安装为Tornado WSGI 应用程序,以防止它在 FastCGI 模式下崩溃。

现在我的服务器陷入困境(即它的大部分带宽都被用完),因为对它的媒体请求太多,我一直在研究 CDN,我相信 Amazon CloudFront/S3对我来说是正确的解决方案。

我一直在使用 Nginx 的 X-Accel-Redirect 标头来保护文件免遭未经授权的下载,但 CloudFront/S3 没有这种能力——但它们确实提供了签名的 URL。到目前为止,我还不是 Python 专家,并且绝对不知道如何正确创建签名 URL,所以我希望有人能提供如何使这些 URL “按需”的链接,或者愿意解释如何在这里,将不胜感激。

另外,这是正确的解决方案吗?我对CDN不太熟悉,有没有更适合这个的CDN?

4

6 回答 6

36

Amazon CloudFront 签名 URL的工作方式与 Amazon S3 签名 URL 不同。CloudFront 使用基于单独 CloudFront 密钥对的 RSA 签名,您必须在您的 Amazon Account Credentials 页面中设置该密钥对。下面是一些使用M2Crypto库在 Python 中实际生成限时 URL 的代码:

为 CloudFront 创建密钥对

我认为唯一的方法是通过亚马逊的网站。进入您的 AWS“帐户”页面,然后单击“安全凭证”链接。单击“密钥对”选项卡,然后单击“创建新密钥对”。这将为您生成一个新的密钥对并自动下载一个私钥文件(pk-xxxxxxxxx.pem)。保持密钥文件的安全和私密。还要记下亚马逊的“密钥对 ID”,因为我们将在下一步中需要它。

在 Python 中生成一些 URL

从 boto 2.0 版开始,似乎不支持生成签名的 CloudFront URL。Python 在标准库中不包含 RSA 加密例程,因此我们将不得不使用额外的库。我在这个例子中使用了 M2Crypto。

对于非流式分发,您必须使用完整的云端 URL 作为资源,但是对于流式传输,我们仅使用视频文件的对象名称。有关生成仅持续 5 分钟的 URL 的完整示例,请参阅下面的代码。

此代码大致基于 Amazon 在 CloudFront 文档中提供的 PHP 示例代码。

from M2Crypto import EVP
import base64
import time

def aws_url_base64_encode(msg):
    msg_base64 = base64.b64encode(msg)
    msg_base64 = msg_base64.replace('+', '-')
    msg_base64 = msg_base64.replace('=', '_')
    msg_base64 = msg_base64.replace('/', '~')
    return msg_base64

def sign_string(message, priv_key_string):
    key = EVP.load_key_string(priv_key_string)
    key.reset_context(md='sha1')
    key.sign_init()
    key.sign_update(message)
    signature = key.sign_final()
    return signature

def create_url(url, encoded_signature, key_pair_id, expires):
    signed_url = "%(url)s?Expires=%(expires)s&Signature=%(encoded_signature)s&Key-Pair-Id=%(key_pair_id)s" % {
            'url':url,
            'expires':expires,
            'encoded_signature':encoded_signature,
            'key_pair_id':key_pair_id,
            }
    return signed_url

def get_canned_policy_url(url, priv_key_string, key_pair_id, expires):
    #we manually construct this policy string to ensure formatting matches signature
    canned_policy = '{"Statement":[{"Resource":"%(url)s","Condition":{"DateLessThan":{"AWS:EpochTime":%(expires)s}}}]}' % {'url':url, 'expires':expires}

    #sign the non-encoded policy
    signature = sign_string(canned_policy, priv_key_string)
    #now base64 encode the signature (URL safe as well)
    encoded_signature = aws_url_base64_encode(signature)

    #combine these into a full url
    signed_url = create_url(url, encoded_signature, key_pair_id, expires);

    return signed_url

def encode_query_param(resource):
    enc = resource
    enc = enc.replace('?', '%3F')
    enc = enc.replace('=', '%3D')
    enc = enc.replace('&', '%26')
    return enc


#Set parameters for URL
key_pair_id = "APKAIAZVIO4BQ" #from the AWS accounts CloudFront tab
priv_key_file = "cloudfront-pk.pem" #your private keypair file
# Use the FULL URL for non-streaming:
resource = "http://34254534.cloudfront.net/video.mp4"
#resource = 'video.mp4' #your resource (just object name for streaming videos)
expires = int(time.time()) + 300 #5 min

#Create the signed URL
priv_key_string = open(priv_key_file).read()
signed_url = get_canned_policy_url(resource, priv_key_string, key_pair_id, expires)

print(signed_url)

#Flash player doesn't like query params so encode them if you're using a streaming distribution
#enc_url = encode_query_param(signed_url)
#print(enc_url)

确保您使用 TrustedSigners 参数设置您的分发,该参数设置为持有您的密钥对的帐户(如果是您自己的帐户,则为“Self”)

有关使用 Python 进行流式传输的完整示例,请参阅使用 Python 进行安全 AWS CloudFront 流式传输入门

于 2011-07-08T12:30:39.627 回答
28

Botocore现已支持此功能,Botocore 是最新的官方 AWS SDK for Python的底层库。(以下示例需要安装 rsa 包,但您也可以使用其他 RSA 包,只需定义自己的“标准化 RSA 签名者”即可。)

用法如下所示:

    from botocore.signers import CloudFrontSigner
    # First you create a cloudfront signer based on a normalized RSA signer::
    import rsa
    def rsa_signer(message):
        private_key = open('private_key.pem', 'r').read()
        return rsa.sign(
            message,
            rsa.PrivateKey.load_pkcs1(private_key.encode('utf8')),
            'SHA-1')  # CloudFront requires SHA-1 hash
    cf_signer = CloudFrontSigner(key_id, rsa_signer)

    # To sign with a canned policy::
    signed_url = cf_signer.generate_presigned_url(
        url, date_less_than=datetime(2015, 12, 1))

    # To sign with a custom policy::
    signed_url = cf_signer.generate_presigned_url(url, policy=my_policy)

免责声明:我是该 PR 的作者。

于 2015-12-16T22:01:30.580 回答
15

正如许多人已经评论的那样,最初接受的答案实际上不适用于Amazon CloudFront,因为通过 CloudFront 提供私有内容需要使用专用的CloudFront 签名 URL - 因此secretmike 的答案是正确的,但同时在他本人之后已经过时花时间并添加了对为 CloudFront 生成签名 URL 的支持(非常感谢!)。

boto现在支持专用的create_signed_url方法,并且以前的二进制依赖项 M2Crypto 最近也已替换为纯 Python RSA 实现,请参阅不要使用 M2Crypto 进行云端 URL 签名

随着越来越普遍,人们可以在相关的单元测试中找到一个或多个好的使用示例(参见test_signed_urls.py),例如test_canned_policy(self) - 参见setUp(self)以获取引用的变量self.pk_idself.pk_str(显然您需要自己的键):

def test_canned_policy(self):
    """
    Generate signed url from the Example Canned Policy in Amazon's
    documentation.
    """
    url = "http://d604721fxaaqy9.cloudfront.net/horizon.jpg?large=yes&license=yes"
    expire_time = 1258237200
    expected_url = "http://example.com/" # replaced for brevity
    signed_url = self.dist.create_signed_url(
        url, self.pk_id, expire_time, private_key_string=self.pk_str)
    # self.assertEqual(expected_url, signed_url)
于 2013-04-22T11:04:55.100 回答
1

这就是我用来创建策略的方法,以便我可以访问具有相同“签名”的多个文件:

import json 
import rsa
import time                                                                                                                                                                           

from base64 import b64encode 

url = "http://your_domain/*"                                                                                                                                                                      
expires = int(time.time() + 3600)

pem = """-----BEGIN RSA PRIVATE KEY-----  
...
-----END RSA PRIVATE KEY-----"""

key_pair_id = 'ABX....'

policy = {}                                                                                                                                                                           
policy['Statement'] = [{}]                                                                                                                                                            
policy['Statement'][0]['Resource'] = url                                                                                                                                              
policy['Statement'][0]['Condition'] = {}                                                                                                                                              
policy['Statement'][0]['Condition']['DateLessThan'] = {}                                                                                                                              
policy['Statement'][0]['Condition']['DateLessThan']['AWS:EpochTime'] = expires                                                                                                        

policy = json.dumps(policy)

private_key = rsa.PrivateKey.load_pkcs1(pem)                                                                                                                                          
signature = b64encode(rsa.sign(str(policy), private_key, 'SHA-1'))

print '?Policy=%s&Signature=%s&Key-Pair-Id=%s' % (b64encode(policy),                                                                                                                             
                                                  signature,                                                                                                                          
                                                  key_pair_id)

我可以将它用于所有文件http://your_domain/*,例如:

 http://your_domain/image2.png?Policy...
 http://your_domain/image2.png?Policy...
 http://your_domain/file1.json?Policy...
于 2014-04-13T23:42:22.030 回答
0

secretmike 的答案有效,但最好使用rsa而不是M2Crypto.

我用botowhich uses rsa.

import boto
from boto.cloudfront import CloudFrontConnection
from boto.cloudfront.distribution import Distribution

expire_time = int(time.time() +3000)
conn = CloudFrontConnection('ACCESS_KEY_ID', 'SECRET_ACCESS_KEY')

##enter the id or domain name to select a distribution
distribution = Distribution(connection=conn, config=None, domain_name='', id='', last_modified_time=None, status='')
signed_url = distribution.create_signed_url(url='YOUR_URL', keypair_id='YOUR_KEYPAIR_ID_example-APKAIAZVIO4BQ',expire_time=expire_time,private_key_file="YOUR_PRIVATE_KEY_FILE_LOCATION")

使用boto documentation

于 2013-06-17T04:50:07.393 回答
0

我发现简单的解决方案不需要改变s3.generate_url方式,

只需选择您的 Cloudfront 配置:Yes, Update bucket policy.

之后从:

https://xxxx.s3.amazonaws.com/hello.png&Signature=sss&Expires=1585008320&AWSAccessKeyId=kkk

https://yyy.cloudfront.net/hello.png&Signature=sss&Expires=1585008320&AWSAccessKeyId=kkk

withyyy.cloudfront.net是您的 CloudFront 域

参考:https ://aws.amazon.com/blogs/developer/accessing-private-content-in-amazon-cloudfront/

在此处输入图像描述

于 2020-03-23T07:16:25.537 回答