
python
PunkXiao
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
百度杯 Upload
访问赛题 URL, 返回包如下HTTP/1.1 200 OK Server: nginx/1.10.2 Date: Thu, 28 Dec 2017 08:19:49 GMT Content-Type: text/html Content-Length: 87 Connection: keep-alive X-Powered-By: PHP/5.5.9-1ubuntu4.19 Set-Cookie...原创 2018-04-26 17:29:09 · 546 阅读 · 0 评论 -
爬虫1.0
两种爬取信息的方式,和查看源码差不多。 1.用requests库 import requests url = 'url' response = requests.get(url) print (response.content) response.encode = 'utf_8' 2.用urllib 在控制台读 #coding:utf-8 import urllib page...原创 2018-11-16 20:27:10 · 144 阅读 · 0 评论 -
kali下安装scapy
1.安装scapy cmd直接: sudo apt-get install python-scapy 2.安装wingIDE www.wingware.com 选择相应deb版本 dpkg -i xxxxxxx.xxx.deb 按照百度经验所述方法,解决依赖性问题。 https://jingyan.baidu.com/article/8065f87fbaa86a23312498...原创 2018-11-16 23:01:22 · 4602 阅读 · 0 评论