http狀態碼獲取
2.1響應狀態碼
2.2測試**https:
2.3http協議
2.3.1埠80 http1.1 多次可以乙個連線
2.3.2明文傳輸
2.4https 443埠加密傳輸
2.5請求方法
2.5.2http1.1 put、delete、trace、conmect、patch增加了檔案上傳和刪除
2.6url
2.7http請求頭
user-agent(瀏覽器版本資訊)、accept-encoding、referer(上級頁面)、cookie、location(跳轉目標)、set-cookie(響應頭)、www authenticate(認證資訊)
2.8相應狀態碼
2.9burpsuitehttp截斷**可以修改請求內容
python-http請求
3.1get請求
request.get(url=url,params=)
url編碼
r.content(文字內容)
result.find(string)
讀取字典檔案獲得使用者名稱和密碼。
3.2post請求
request.post(url,data=data)data為字典
3.3自定義請求頭
useragent:如果網頁限定瀏覽器訪問,可以修改useragent來訪問網頁
headers=headers
3.4響應文字
r.content
r.text返回源**
3.5獲取http協議的報文頭
r.headers
3.6獲取請求頭
r.requests.headers
3.7獲取cookie
r.cookies
3.8設定**
3.9python會話程式設計
攜帶cookie——python中 session類模擬
3.10目錄掃瞄
讀取字典檔案,拼接url
get url
判斷是否存在目錄
3.10.1字典檔案讀取
with open(「file.txt」,r) as f
f.readline()
f.readlines()
f.read()
Android Apk反編譯指令碼(python)
usr bin env python3 import os if main name print python start n 請確保apktool.jar和apk在同一資料夾內 in temp input 請輸入指令 f 反編譯 n if in temp f print 開始反編譯 apk pat...
pytho學習旅途
轉換當前格式日期 dt datetime.datetime.strptime dtstr,y m d print dt 切片獲取年份 輸入一行字元,分別統計其中英文本母,空格,數,和其他字元數 import string s ww m 23 4j 初始化個數 列印楊輝三角的前十行 triange 1...
元組 datawhale組隊學習python基礎
元組 定義語法為 元素1,元素2,元素n 與列表不同,元組是 列表是。t1 1 10.31 python t2 1,10.31 python print t1,type t1 1,10.31,python print t2,type t2 1,10.31,python tuple1 1 2,3 4,...