python 프로젝트 캡 처 동적 웹 페이지 캡 처 공유 기 클 라 이언 트
5129 단어 python 프로젝트파충류 프로젝트
전신
앞 에 공유 기 를 기어 오 르 는 고객 이 아 날로 그 브 라 우 저 로 로그 인 하 는 방식 으로 쓴 글 이 있 습 니 다.
python 프로젝트 의 공유 기 캡 처 주소:http://blog.csdn.net/lyffly2011/article/details/50485398
개선 하 다.
전단 설계 지식 을 습득 한 후 HTTP 요청 을 통 해 동적 인 데 이 터 를 직접 얻 을 수 있다 는 것 을 깨 달 았 습 니 다.
사고의 방향 을 실현 하 다.
구체 적 인 코드 는:
# coding : utf-8
####################################################
# coding by
####################################################
import os
import time
import datetime
import requests
import base64
#
MIMA = b'xxxxxxxx'
encode_MIMA = base64.b64encode(MIMA).decode("utf-8")
cookie = 'Authorization=Basic ' + encode_MIMA
headers1 = {
'Accept': '*/*',
'Accept-Encoding': 'gzip, deflate,sdch',
'Accept-Language': 'zh-CN,zh;q=0.8',
'Connection': 'keep-alive',
'Content-Type': 'text/plain',
'Cookie': cookie,
'Host': '192.168.11.1',
'Referer': 'http://192.168.11.1/',
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36\
(KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36',
}
headers = {
'Accept': '*/*',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'zh-CN,zh;q=0.8',
'Connection': 'keep-alive',
'Content-Length': '98',
'Content-Type': 'text/plain',
'Cookie': cookie,
'Host': '192.168.11.1',
'Origin': 'http://192.168.11.1',
'Referer': 'http://192.168.11.1/',
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36\
(KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36',
}
url_dhcpclient = 'http://192.168.11.1/main/dhcpClient.htm?_='
session = requests.Session()
time_ms = str(int(time.time() // 1)) + '012'
url_dhcpclient += time_ms
res1 = session.get(url_dhcpclient, headers=headers1)
print(res1.status_code)
params = '[LAN_HOST_ENTRY#0,0,0,0,0,0#0,0,0,0,0,0]0,4\r
leaseTimeRemaining\r
MACAddress\r
hostName\r
IPAddress\r
'
url = 'http://192.168.11.1/cgi?5'
res = session.post(url=url, data=params, headers=headers)
# print(res.request.headers)
# print(res.url)
# print(res.status_code)
# print(res.headers)
print(res.text)
now = datetime.datetime.now()
str_time = now.strftime("%Y_%m_%d_%H_%M_%S")
text = res.text
filename = str_time + '.txt'
with open(filename, 'w+') as f:
f.write(text)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
파이썬 프로젝트 - 47-소켓.md유동식 socket, for TCP 데이터 보고 socket, for UDP 원본 소켓, 일반 소켓은 ICMP, IGMP 등의 네트워크 메시지를 처리할 수 없지만 SOCK_RAW 가능;다음, SOCK_RAW도 특수한...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.