Some security-related HTTP Response Headers

Source: Internet
Author: User

Tag: Shell

Info () return page information

import urllib2from urllib2 import Request, urlopen, URLErrorreq = urllib2.Request(‘http://www.python.org‘)try:    response = urlopen(req)except URLError,e:    if hasattr(e,‘reason‘):        print ‘We failed to reach a server.‘        print ‘Reason‘, e.reason    elif hasattr(e, ‘code‘):        print ‘The server couldn\‘t fulfill the request.‘        print ‘Error code: ‘, e.codeelse:    print ‘dragonball!‘    print response.info()    print response.geturl()

Print result:

Dragonball!
Date: Tue, 08 Jul 2014 13:29:38 GMT

Server: nginx

Content-Type: text/html; charset = UTF-8

X-frame-options: sameorigin

Content-Length: 45646

Accept-ranges: bytes

Via: 1.1 Varnish

Age: 3111

X-served-by: cache-ty66-TYO

X-Cache: Hit

X-Cache-hits: 70

Vary: cookie

Strict-transport-security: Max-age = 63072000; includesubdomains

Connection: Close


Https://www.python.org/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.