gpt4 book ai didi

python - 从路由器解析数据时出现授权错误

转载 作者:行者123 更新时间:2023-11-28 18:28:25 25 4
gpt4 key购买 nike

我想从我的路由器中删除数据用于一些家庭自动化,但我遇到了一些我无法解决/破解的问题。

我已成功登录到路由器,但是当使用 python 脚本访问数据时(在路由器 Web 界面中打开链接)我收到一条错误消息:您无权访问此路由器!

如果我手动将 python 脚本正在访问的 url 复制并粘贴到浏览器中(设置了 cookie),响应是相同的。但是,如果我单击路由器 Web 界面中的按钮,我不会收到任何“权威”投诉。有什么解决办法吗?

这是脚本:

import re
import mechanize
import cookielib

br = mechanize.Browser()

cookies = cookielib.LWPCookieJar()
br.set_cookiejar(cookies)
#they "encrypt" the username and password and store it into the cookie. I stole this value from javascript in runtime.
br.addheaders = [('Cookie','Authorization=Basic YWRtaW46MjEyMzJmMjk3YTU3YTVhNzQzODk0YTBlNGE4MDFmYzM=;')]
#open connection to the router address
br.open('http://192.168.1.1/')
#the only form is "login" form (which we dont have to fill up, because we already have the cookie)
br.select_form(nr=0)
br.form.enctype = "application/x-www-form-urlencoded"
br.submit()

#then the router returns redirect script, so we have to parse it (get the url).
redirect_url = re.search('(http:\/\/[^"]+)',br.response().read()).group(1)
token = re.search("1\/([A-Z]+)\/",redirect_url).group(1) #url always has a random token inside (some kind of security?)

#So with this url I should be able to navigate to page containing list of DHCP clients
br.open("http://192.168.1.1/"+token+"/userRpm/AssignedIpAddrListRpm.htm")

print(br.response().read()) #But response contains html saying "You have no authority to access this router!".

最佳答案

我已经通过添加以下内容解决了这个问题:

br.addheaders.append(
('Referer', "http://192.168.1.1/userRpm/LoginRpm.htm?Save=Save")
)

原因:

在网络上搜索消息后,我导航到一个论坛,使用 firefox 版本(旧)的用户提示同样的警告。修复是为了能够发送引荐来源网址,所以我在脚本中做了同样的事情并且成功了。

关于python - 从路由器解析数据时出现授权错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39476591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com