摘要: #coding:utf-8from selenium import webdriverfrom selenium.webdriver.support.select import Selectfrom selenium.webdriver.chrome.options import Optionsim 阅读全文
posted @ 2018-07-10 18:17 yanhuidj 阅读(2150) 评论(0) 推荐(0) 编辑
摘要: get参数通过url传递,post放在request body中。 get请求在url中传递的参数是有长度限制的,而post没有。 get比post更不安全,因为参数直接暴露在url中,所以不能用来传递敏感信息。 get请求只能进行url编码,而post支持多种编码方式 get请求会浏览器主动cac 阅读全文
posted @ 2018-07-06 08:58 yanhuidj 阅读(140) 评论(0) 推荐(0) 编辑
摘要: from :https://blog.csdn.net/wushuai150831/article/details/78453549 阅读全文
posted @ 2018-07-04 10:13 yanhuidj 阅读(139) 评论(0) 推荐(0) 编辑
摘要: from : https://blog.csdn.net/Neo233/article/details/72866230?locationNum=15&fps=1%20HTTP%E6%8F%A1%E6%89%8B from : https://blog.csdn.net/Neo233/article 阅读全文
posted @ 2018-07-02 11:11 yanhuidj 阅读(1477) 评论(0) 推荐(1) 编辑
摘要: from :http://blog.sina.com.cn/s/blog_68d342d90100nh7b.html 什么是XSS跨站攻击: http://baike.baidu.com/view/50325.htm 存在XSS跨站漏洞的网址: http://sqxhsp.com/news.asp? 阅读全文
posted @ 2018-06-22 09:31 yanhuidj 阅读(177) 评论(0) 推荐(0) 编辑
摘要: adb shell 连接手机获取root权限,如果返回的字符串中不包含root字样,再输入su命令回车 继续输入cat /data/misc/wifi/*.conf命令,将会把文件打印出来 ssid表示WIFI名称,psk是WIFI密码 此时把psk分享出去就完美解决 阅读全文
posted @ 2018-06-20 14:44 yanhuidj 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1.http 是超文本传输协议,是从万维网服务器传输超文本到本地浏览器的传输协议 2.http是一个基于tcp/ip通信协议来传输数据(html,图片,查询结果等) 3.一个完整的http请求包含7个流程 1.建立tcp连接 2.web浏览器向web服务器发送请求 3.web浏览器发送请求头信息 4 阅读全文
posted @ 2018-06-11 17:16 yanhuidj 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 1.终端下输入export PATH=/usr/local/bin:$PATH 2.echo $PATH 3.安装homebrew 地址:ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/i 阅读全文
posted @ 2018-06-11 15:03 yanhuidj 阅读(117) 评论(0) 推荐(0) 编辑
摘要: >>> 'a' and 'b' 'b' >>> '' and 'b' '' >>> 'a' and 'b' and 'c' 'c’解释:在布尔上下文中从左到右演算表达式的值,如果布尔上下文中的所有值都为真,那么 and 返回最后一个值。如果布尔上下文中的某个值为假,则 and 返回第一个假值 >>> 阅读全文
posted @ 2018-05-17 14:11 yanhuidj 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 如果你在写python程序时遇到异常后想进行如下处理的话,一般用try来处理异常,假设有下面的一段程序: 1 2 3 4 5 6 7 8 try: 语句1 语句2 . . 语句N except .........: do something ....... 但是你并不知道"语句1至语句N"在执行会出 阅读全文
posted @ 2018-05-10 10:43 yanhuidj 阅读(221) 评论(1) 推荐(0) 编辑