Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Oracle 11g Anti-hacker's Cookbook
Oracle 11g Anti-hacker's Cookbook

Oracle 11g Anti-hacker's Cookbook: Make your Oracle database virtually impregnable to hackers using the knowledge in this book. With over 50 recipes, you'll quickly learn protection methodologies that use industry certified techniques to secure the Oracle database server.

Arrow left icon
Profile Icon Adrian Neagu
Arrow right icon
Mex$179.99 Mex$1000.99
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (5 Ratings)
eBook Oct 2012 302 pages 1st Edition
eBook
Mex$179.99 Mex$1000.99
Paperback
Mex$1251.99
Subscription
Free Trial
Arrow left icon
Profile Icon Adrian Neagu
Arrow right icon
Mex$179.99 Mex$1000.99
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (5 Ratings)
eBook Oct 2012 302 pages 1st Edition
eBook
Mex$179.99 Mex$1000.99
Paperback
Mex$1251.99
Subscription
Free Trial
eBook
Mex$179.99 Mex$1000.99
Paperback
Mex$1251.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Oracle 11g Anti-hacker's Cookbook

Chapter 2. Securing the Network and Data in Transit

In this chapter we will cover the following topics:

  • Hijacking an Oracle connection

  • Using OAS network encryption for securing data in motion

  • Using OAS data integrity for securing data in motion

  • Using OAS SSL network encryption for securing data in motion

  • Encrypting network communication using IPSEC

  • Encrypting network communication with stunnel

  • Encrypting network communication with SSH tunneling

  • Restricting the fly listener administration using ADMIN_RESTRICTION_LISTENER parameter

  • Securing external program execution (EXTPROC)

  • Controlling the client connections using the TCP.VALIDNODE_CHECKING listener parameter

Introduction


As most of the applications that are using Oracle Databases are two or three tiered, communication over network is involved. The network and its components are probably the most vulnerable area due to the increased amount of exposure. Network communication layer attacks are usually one of the hardest to detect as the majority of them do not require a direct connection to the database server, but instead are targeted towards the network traffic and the data in flight. In the following chapter we will present some of the most widely used attack and defense techniques against the Oracle network components.

Hijacking an Oracle connection


This connection hijacking scenario and the proxy program used were developed by Laszlo Toth and presented at Hackactivity 2009 (http://soonerorlater.hu/index.khtml?article_id=514).The flash presentation can be viewed at http://soonerorlater.hu/flash/pytnsproxy_1.htm.

This is a classic scenario and example of a man in the middle (MITM) attack in which an interposed attacker hijacks a client connection.

For this scenario we will use three hosts: database server (noderorcl1), Oracle client (nodeorcl5), and attacker host (mitmattack). The scenario will be performed using Oracle 11.0.1.6 Enterprise Edition on all hosts. The attacker host will be configured on a virtual machine running Fedora 11 x 84 (Leonidas # 1 SMP 2.6.29.4-167.fc11.x86_64 Wed May 27 17:27:08 EDT 2009 x86_64 x86_64 x86_64 GNU / Linux). The setting up and configuration of the attacker host, mitmattack, will be covered in this recipe.

Getting ready

Download and install Oracle Enterprise Edition version...

Using OAS network encryption for securing data in motion


Oracle has built-in network encryption methods in its Oracle Advanced Security pack. The main advantage of using OAS encryption instead of other encryption methods is its ability to integrate and work with other Oracle security products such as Oracle Database Firewall and third-party products provided by other vendors such as IBM (InfoSphere Guardium), Imperva, and others. As a disadvantage, being a separate pack, it is expensive and requires licensing.

In case that you use unencrypted network communication, all the data flow from server to client will be sent in clear text. The only exception is the password which is sent in encrypted form during authentication. Packet interception becomes a trivial task if the attacker is located at the right place on the network and the data is transmitted unencrypted. In this recipe we will sniff and analyze the data in flight between nodeorcl5 and nodeorcl1 using Winshark. We will capture the...

Using OAS data integrity for securing data in motion


Using data integrity guarantees that the packets will not be altered during transmission and reception. Data integrity can be used against replay attacks and MITM attacks, where the attacker may send crafted packets to obtain or modify different information from the database. Oracle provides SHA1 and MD5 hash functions for data integrity. Similarly with network encryption, if you want to use data integrity, an OAS license must be purchased. In the following recipe we will configure SHA1 for data integrity and we will demonstrate its utility against the Oracle Hijacking scenario.

Getting ready

The steps from this recipe will be performed on nodeorcl1 and nodeorcl5.

How to do it...

  1. Open the $ORACLE_HOME/network/admin/sqlnet.ora configuration file on nodeorcl1. Similarly with network encryption, data integrity also has desired checksum behavior which can be specified by using SQLNET.CRYPTO_CHECKSUM_SERVER. Set the value to required as follows...

Using OAS SSL network encryption for securing data in motion


In Oracle you also have the possibility to use SSL based encrypted transmission between clients and servers. In this recipe we will introduce Oracle wallets. As its name suggests, an Oracle wallet is a container that can hold certificates, keys, and passwords. These are used primarily for network security operations and in implementing transparent data encryption, a subject that we will cover in Chapter 3, Securing Data at Rest.

Getting ready

In this recipe we will use nodeorcl1 and nodeorcl5.

How to do it...

In this recipe we will introduce Oracle wallets created and managed with the orapki utility.

  1. As the user root the create directories for wallets and assign oracle as the owner on the nodeorcl1 and nodeorcl5 hosts:

    [root@nodeorcl1 ~]# mkdir -p /security/wallets/ssl
    [root@nodeorcl1 ~]# chown -R oracle:oinstall /security/wallets/ssl
    
    [root@nodeorcl5 ~]# mkdir -p /security/wallets/ssl
    [root@nodeorcl5 ~]# chown oraclient:oinstall ...

Encrypting network communication using IPSEC


Internet Protocol Security (IPSEC) is a protocol suite developed to encapsulate security using encryption, integrity, and authentication for Internet Protocol. It operates at the Internet layer of the IP protocol and is currently supported by all major operating systems. IPSEC implementation is suitable from small to large enterprise networks and can be used as an alternative to Oracle Advanced Security encryption. In this recipe we will show how to establish an IPSEC connection between nodeorcl5 and a Windows client. On Red Hat we will use freeswan IPSEC implementation and will configure a test-like setup using prehashed keys.

Getting ready

As a prerequisite, create a new virtual machine and install Windows 7 and Oracle Client 11.2.0.3 on it.

How it works...

We will start this recipe with the Linux IPSEC freeswan configuration.

  1. First, we will configure the participant hosts, encryption algorithms, and the checksum algorithm. Open the freeswan configuration...

Encrypting network communication with stunnel


Stunnel is a program that acts as a proxy that removes, wraps, and encrypts the network communication using SSL thought tunnelling. It is suitable mainly to be used by DBAs for remote database administration or for encrypting communication (log transport) with DataGuard. In this recipe we will encrypt a connection between nodeorcl5 and nodeorcl1 using stunnel.

Getting ready

All steps will be performed on nodeorcl1 and nodeorcl5.

As a prerequisite download and install stunnel from http://www.stunnel.org/downloads.html both on nodeorcl1 and nodeorcl5.

How to do it...

  1. We will start to configure stunnel as a service. Download stunnel_RC_script from http://www.gaztronics.net/rc/stunnel.php and copy it to /etc/init.d.

  2. Next, change the owner permissions for stunnel to root and define it as a service as follows:

    [root@nodeorcl1 stunnel]# chown root:root /etc/init.dstunnel
    [root@nodeorcl1 stunnel]# chkconfig --add stunnel
    
  3. Because stunnel will forward from...

Encrypting network communication using SSH tunneling


In these days ssh is the de facto method for establishing a remote connection to a host. It can also be used to tunnel and encrypt network communication between two hosts. SSH tunneling can be implemented for encrypting network communication between a computer used by a DBA for remote database administration, but is also suitable to be used with Data Guard for encrypting log shipping. In this recipe we will encrypt the network communication between nodeorcl1 and nodeorcl5 using ssh.

Getting ready

All steps will be performed on nodeorcl1 and nodeorcl5.

How to do it...

To use tunneling you must enable ssh port forwarding on the server. Open the /etc/ssh/sshd_conf configuration file and uncomment the following line:

AllowTcpForwarding yes

Save and close the file and restart sshd service as follows:

service sshd restart

  1. To forward the listening port to the ssh port execute the following command:

    [oracle@nodeorcl1 ~]#
    ssh -N -L1530:nodeorcl1:1521...

Restricting the fly listener administration using the ADMIN_RESTRICTION_LISTENER parameter


Using the set lsnrctl command listener, we may dynamically change and override parameters. An attacker may use this capability for his own advantage by launching a series of DoS attacks against the database. The simplest DoS attack example is to simply stop the listener. Other DoS attacks can be produced by setting the listener trace (for example set listener trace to overwrite system01.dbf - set trc_file '/u01/HACKDB/system01.dbf')or log files to overwrite data files or redo logs, or they can be used to generate scripts in a desired location that may be used later.

Getting ready

All steps will be performed on nodeorcl1.

How to do it...

  1. The format of parameter is ADMIN_RESTRICTION_listener_name. In our case we will disable the fly administration of the listener named LISTENER. Open $ORACLE_HOME/network/admin/listener.ora and enable ADMIN_RESTRICTION_LISTENER as follows:

    ADMIN_RESTRICTION_LISTENER=ON
    
  2. Reload...

Securing external program execution (EXTPROC)


Some database applications can use external dynamic libraries implemented in a language such as C or C++. Usually these external libraries are developed for performance reasons, but they can also represent a major security threat by being replaced with ones that contain malicious code. Therefore this feature must be used with maximum precaution.

The listener process allows executing external programs using a dedicated program named extproc, which is located by default at $ORACLE_HOME/bin. The access to these external libraries can be configured within the listener configuration file listener.ora.

The following is a configuration example from listener.ora that allows executing a specific library:

  (SID_LIST =
    (SID_DESC =
      (SID_NAME = CLRExtProc)
      (ORACLE_HOME = /u01/app/oracle/product/11.2.0/db/)
      (PROGRAM = extproc)
      (ENVS = "EXTPROC_DLLS=ONLY:/home/oracle/appclrso.so")
    )
  )

The corresponding entry for extproc from...

Controlling client connections using the TCP.VALIDNODE_CHECKING listener parameter


The usage of the valid node checking security feature is very similar to the TCP wrappers presented in Chapter 1, Operating System Security. Using this capability, you can deny or the allow connecting clients based on IP address or hostname.

Getting ready

All steps will be performed on nodeorcl1.

How to do it...

  1. Open $ORACLE_HOME/network/admin/sqlnet.ora and enable valid node checking by setting TCP.VALIDNODE_CKECINK as follows:

    TCP.VALIDNODE_CHECKING=ON
    
  2. Next, you can establish the hosts that will be allowed to connect by setting the TCP.INVITED_NODES parameter as follows:

    TCP.INVITED_NODES= {nodeorcl5}
    
  3. After you add the invited nodes you must reload the listener configuration.

    lsnrctl reload
    
  4. If we want to establish a connection from a node that is not included in the invited node list, the ORA-12537: TNS:connection closed error will be thrown as follows:

    oraclient@nodeorcl2:~> sqlplus hr/hr@HCKDB
    
    SQL...
Left arrow icon Right arrow icon

Key benefits

  • Learn to protect your sensitive data by using industry certified techniques
  • Implement and use ultimate techniques in Oracle Security and new security features introduced in Oracle 11g R2
  • Implement strong network communication security using different encryption solutions provided by Oracle Advanced Security

Description

For almost all organizations, data security is a matter of prestige and credibility. The Oracle Database is one of the most rich in features and probably the most used Database in a variety of industries where security is essential. To ensure security of data both in transit and on the disk, Oracle has implemented the security technologies to achieve a reliable and solid system. In Oracle 11g Anti-Hacker's Cookbook, you will learn about the most important solutions that can be used for better database security."Oracle 11g Anti-hacker's Cookbook" covers all the important security measures and includes various tips and tricks to protect your Oracle Database."Oracle 11g Anti-hacker's Cookbook" uses real-world scenarios to show you how to secure the Oracle Database server from different perspectives and against different attack scenarios. Almost every chapter has a possible threads section, which describes the major dangers that can be confronted. The initial chapters cover how to defend the operating system, the network, the data and the users. The defense scenarios are linked and designed to prevent these attacks. The later chapters cover Oracle Vault, Oracle VPD, Oracle Labels, and Oracle Audit. Finally, in the Appendices, the book demonstrates how to perform a security assessment against the operating system and the database, and how to use a DAM tool for monitoring.

Who is this book for?

If you are an Oracle Database Administrator, Security Manager or Security Auditor looking to secure the Oracle Database or prevent it from being hacked, then this book is for you.This book assumes you have a basic understanding of security concepts.

What you will learn

  • Get to grips with configuring a secure server at operating system level for Oracle Database
  • Master how to secure data by using Oracle Cryptographic API and Transparent Data Encryption
  • Get step-by-step instructions to implement a solid audit strategy by using the built in solutions and fine grained auditing
  • Understand how to segregate and protect data access by using Oracle Vault
  • Learn about different types of attacks and how to implement a solid defence against them
  • Empathize the attacks and interceptions by using different techniques and tools such as sniffing, man-in-the-middle, brute force and password crackers.

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 25, 2012
Length: 302 pages
Edition : 1st
Language : English
ISBN-13 : 9781849685276
Vendor :
Oracle
Category :
Languages :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Oct 25, 2012
Length: 302 pages
Edition : 1st
Language : English
ISBN-13 : 9781849685276
Vendor :
Oracle
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just Mex$85 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just Mex$85 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total Mex$ 3,857.97
Oracle 11g Anti-hacker's Cookbook
Mex$1251.99
Oracle Database 11gR2 Performance Tuning Cookbook
Mex$1251.99
Oracle Database 12c Backup and Recovery Survival Guide
Mex$1353.99
Total Mex$ 3,857.97 Stars icon
Banner background image

Table of Contents

8 Chapters
Operating System Security Chevron down icon Chevron up icon
Securing the Network and Data in Transit Chevron down icon Chevron up icon
Securing Data at Rest Chevron down icon Chevron up icon
Authentication and User Security Chevron down icon Chevron up icon
Beyond Privileges: Oracle Virtual Private Database Chevron down icon Chevron up icon
Beyond Privileges: Oracle Label Security Chevron down icon Chevron up icon
Beyond Privileges: Oracle Database Vault Chevron down icon Chevron up icon
Tracking and Analysis: Database Auditing Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(5 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
LewisC Nov 21, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I'm not usually a big fan of technical cookbooks. Usually the books will only have one or two useful routines. If a person is a programmer, the book will be from their body of knowledge. If they are DBA, it will be from the administration side. Either of these tends to limit the breadth of a cookbook. That's like a cooking cookbook with no soup section. I like soup. I want soup. Now I'm hungry.This book is quite a bit different. To start off, the author is certified in DB2 and Oracle as an adminstrator (which, for security is more important than a programming background). However, the author is also certified as a system administrator. In an anti-hacking cookbook, that is critical. If you don't secure your perimeter, everything else will be a lot easier to crack.Here is his bio from the book:Adrian Neagu has over ten years of experience as a database administrator, mainly with DB2 and Oracle databases. He is an Oracle Certified Master 10g, Oracle Certified Professional 9i, 10g, and 11g, IBM DB2 Certified Administrator version 8.1.2 and 9, IBM DB2 9 Advanced Certified Administrator 9, and Sun Certified System Administrator Solaris 10. He is an expert in many areas of database administration such as performance tuning, high availability, replication, backup, and recovery.The book itself is not a huge tome. It weighs in at 302 pages. You can view the second chapter, Securing the Network and Data in Transit, for free.I was already very familiar with the topics covered in Chapters 3 through 5 and Chapter 8. The other chapters provided me with some new information. I'm glad I got to learn from this book.Like any good cookbook, the steps you take are outlined in plenty of depth. As an example, Chapter 1 will take you through installing and testing Tripewire, an intrusion detection system. I've never used Tripwire and the book makes installing it and understanding what is does fairly easy. The thing to remember is that this is not a technical reference book. You won't learn concepts or even advanced concepts except as they relate to understanding the steps in the recipes.One more note on chapter 1. I did not know you could set a file to be immutable. That is very cool.The step by step guide to hack an Oracle connection is also pretty cool. It not only shows you how to do it and how to protect it but also exactly how it works.The book is very easy to read and follow (providing the concepts are not brand new to you). This book won't make you a security expert but by following the steps, you will have a more secure environment. That's a good thing for everyone.The book uses redhat for the 11g database server. Most of the stuff covered can be used on any OS with little or no changes. The OS specific stuff will of course need to be changed. Once you get to Chapter 3, it's all database related anyway.All in all, this is a good read. If you are responsible for the security of a database, it should be a mandatory read. If you are curious about how someone could hack your system and how to protect yourself from those hackers, this is a great book for your bookshelf. I'm glad it is on mine now.
Amazon Verified review Amazon
Stanley Nov 24, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The number of security threats related to operating systems and databases are increasing every day, and this trend is expected to continue.In this book, many recipes are provided to show how these security risks could be mitigated or reduced. To sum up, recipes can be classified into general or Oracle specific security measures. For example, to confront different interception-type attacks, you can use either Oracle Advanced Security encryption and integrity, or alternatives such as IPSEC, stunnel, and SSH tunneling.For general measures, topics such as "OS security" and "Securing the network and data in transit" are covered in Chapter 1 and 2. Starting from Chapter 3, security measures using Oracle products start emerging, which includes the following:* Oracle RMAN* Oracle Enterprise Manager* Oracle Virtual Private Database* Oracle Label Security* Oracle Database Vault* Oracle Audit* Oracle Cryptographic API* Oracle WalletsOther RecommendationsIn the book, it also make suggestions such as:* You should implement data audits to detect the origin of the attack or the source of the inappropriate data access or modification* You should develop and implement appropriate alerting systems to proactively detect and prevent attacks on systems and data* You should test these security measures first before their final deployment* You should perform security assessments regularly on your system
Amazon Verified review Amazon
Ioan Pop Jun 10, 2014
Full star icon Full star icon Full star icon Full star icon Full star icon 5
It covers OS and Oracle database security. The 2 types of security have to go hand in hand to make for a really secure database.Thank you for your work.
Amazon Verified review Amazon
hum802 Apr 30, 2013
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Book is very good for the DBA.But it also depends on the System Administrator (if one exists in your corporation) to fully implement the ideas used in the book. DBA may not have full access to the OS to implement everything.Also, DBA needs to have a very good understanding of the OS like linux for instance to fully understand what's being done.Every DBA should read this book. I would recommend to a friend.
Amazon Verified review Amazon
Bert Scalzo Dec 11, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The Oracle 11g Anti-hacker's Cookbook covers an impressive breadth and depth of database security topics. No stone is left unturned. Plus quite uniquely the author fully explains every potential database security risk, demonstrates how to perform the hacks being protected against, and then of course how to mitigate or prevent them. Moreover the author covers advanced Oracle security features, including virtual private databases, label security and database vault. The overall result is an incredible book that should become any DBA's go to reference for any and all things related to Oracle database security.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.