91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

東拼西湊用python腳本登錄web管理頁面做巡檢(未實現)

發布時間:2020-09-23 15:26:10 來源:網絡 閱讀:191 作者:biltmore 欄目:編程語言

參考

https://www.cnblogs.com/puyangsky/p/5326384.html


參考了網上很多博客拼出如下代碼實現了登錄ilom管理頁面的登錄

好像管理頁面用了js渲染無法取到想的值未能實現巡檢功能


#-*- coding:utf-8 -*-

import sys

from HTMLParser import HTMLParser

from bs4 import BeautifulSoup

from PyQt4.QtWebKit import *

from PyQt4.QtGui import *

from PyQt4.QtCore import *

import requests

import re


url = "https://192.40.1.8/iPages/i_login.asp"


session = requests.session()

r = session.get(url,verify = False)

content = r.content


pattern = re.compile('"loginToken", ".*"')

match = re.findall(pattern, content)

strx = "".join(match)

xsrf = re.findall(r"\s\"(.*)\"",strx)

print (xsrf)


login_data = {

? ? ? ? ? ? 'loginToken': xsrf,

? ? ? ? ? ? 'username': "oper",

? ? ? ? ? ? 'password': "Aassw0rd1"

? ? }


header1 = {? ?

? ? ? ? "User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.22 Safari/537.36 SE 2.X MetaSr 1.0",

? ? ? ? "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",

? ? ? ? "Accept-Language": "zh-CN,zh;q=0.8",

? ? ? ? "Accept-Encoding": "gzip, deflate,sdch",

? ? ? ? "Content-Type": "application/x-www-form-urlencoded",

? ? ? ?# "X-Requested-With": "XMLHttpRequest",

? ? ? ? "Content-Length": "81",

? ? ? ? "Connection": "keep-alive",

? ? ? ? "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"

? ? ? ? }


baseurl = "https://192.40.1.8/iPages/loginProcessor.asp"

content = session.post(baseurl, headers = header1, data = login_data,verify=False)

content1=session.get("https://192.40.1.8/iPages/ilomtree.asp",headers = header1,verify=False)

print (content1.content)


class Render(QWebPage):

? ? def __init__(self,url):

? ? ? ? self.app = QApplication(sys.argv)

? ? ? ? QWebPage.__init__(self)

? ? ? ? self.loadFinished.connect(self._loadFinished)

? ? ? ? self.mainFrame().load(QUrl(url))

? ? ? ? self.app.exec_()

? ? def _loadFinished(self, result):

? ? ? ? self.frame = self.mainFrame()

? ? ? ? self.app.quit()


url = 'view-source:https://192.40.1.8/iPages/ilomtree.asp'

r = Render(url)

html = r.frame.toHtml()

html = html.toUtf8()

html = unicode(html,'utf8','ignore')??

print html


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

信宜市| 陇西县| 英吉沙县| 佛山市| 敦煌市| 左贡县| 侯马市| 舟山市| 乐亭县| 徐汇区| 锦屏县| 洛宁县| 瑞安市| 满洲里市| 健康| 浮梁县| 子长县| 西昌市| 松溪县| 周至县| 蓬莱市| 云南省| 丰宁| 青田县| 合江县| 莱西市| 珠海市| 扶绥县| 莎车县| 综艺| 呼伦贝尔市| 金平| 饶阳县| 白城市| 洛浦县| 嘉黎县| 南阳市| 凤台县| 鄂尔多斯市| 鲜城| 金昌市|