溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

東拼西湊用python腳本登錄web管理頁(yè)面做巡檢(未實(shí)現(xiàn))

發(fā)布時(shí)間:2020-09-23 15:26:10 來(lái)源:網(wǎng)絡(luò) 閱讀:190 作者:biltmore 欄目:編程語(yǔ)言

參考

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


參考了網(wǎng)上很多博客拼出如下代碼實(shí)現(xiàn)了登錄ilom管理頁(yè)面的登錄

好像管理頁(yè)面用了js渲染無(wú)法取到想的值未能實(shí)現(xiàn)巡檢功能


#-*- 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問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI