标签:webkit from soup bs4 print string request headers 响应
hackhttp模板:造福人类
发起get/post/ 发起http原始数据包
漏洞利用:更为快捷放放不安
#hackhttp使用方法
hh=hackhttp.hackhttp()
code,head,html,redirect_url,log=hh.http(url)
状态码/响应头/http相应内容类型string/跳转地址302/日志信息
#coding=utf-8
import requests
from bs4 import BeautifulSoup
import re
import hackhttp
#仅限python2使用
#要爬取的地址
url =‘http://www.cnvd.org.cn/‘
#必要时用burp将响应头全部添加上
headers={‘User-Agent‘:‘Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36‘}
#hackhttp使用方法
hh=hackhttp.hackhttp()
code,head,html,redirect_url,log=hh.http(url=url,headers=headers)
print(code)
print(html)
标签:webkit from soup bs4 print string request headers 响应
原文地址:https://www.cnblogs.com/klsfct/p/9197554.html