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

參考html

http://www.javashuo.com/article/p-tihlaxnk-hp.html web


參考了網上不少博客拼出以下代碼實現了登陸ilom管理頁面的登陸session

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


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

import syspost

from HTMLParser import HTMLParserui

from bs4 import BeautifulSoupurl

from PyQt4.QtWebKit import *code

from PyQt4.QtGui import *orm

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

相關文章
相關標籤/搜索