Book Image

BackTrack 5 Cookbook

By : Willie L. Pritchett, David De Smet
Book Image

BackTrack 5 Cookbook

By: Willie L. Pritchett, David De Smet

Overview of this book

<p>BackTrack is a Linux-based penetration testing arsenal that aids security professionals in the ability to perform assessments in a purely native environment dedicated to hacking. BackTrack is a distribution based on the Debian GNU/Linux distribution aimed at digital forensics and penetration testing use. It is named after backtracking, a search algorithm.<br /><br />"BackTrack 5 Cookbook" provides you with practical recipes featuring many popular tools that cover the basics of a penetration test: information gathering, vulnerability identification, exploitation, priviledge escalation, and covering your tracks.<br /><br />The book begins by covering the installation of BackTrack 5 and setting up a virtual environment to perform your tests.<br /><br />We then dip into recipes involving the basic principles of a penetration test such as information gathering, vulnerability identification, and exploitation. You will further learn about privilege escalation, radio network analysis, Voice over IP, Password cracking, and BackTrack forensics.<br /><br />"BackTrack 5 Cookbook" will serve as an excellent source of information for the security professional and novice alike.</p>
Table of Contents (17 chapters)
BackTrack 5 Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Mastering Xplico


In this recipe, we will use Xplico. Xplico is an Internet traffic capture tool that has the ability to capture data from many different applications including FTP, e-mail, VoIP, and many more. Xplico is also useful as a Network Forensic Analysis Tool (NFAT).

Getting ready

The following requirements need to be fulfilled:

  • You will need an Internet or intranet connection to complete this recipe

  • You will also need SIP or PBX devices on your network

How to do it...

Let's begin by installing Xplico:

  1. Open a terminal window and update your local repositories:

    apt-get update
    
  2. Next, run the install command for Xplico:

    apt-get install xplico
    
  3. Xplico will be placed in the BackTrack | Digital Forensics | Forensic Analysis menu.

  4. Open a terminal window and navigate to the folder containing Xplico:

    cd /opt/xplico/bin
    
  5. Launch Xplico to reveal its help file.

  6. Finally, we will execute our command to decode conversations in real time:

    ./xplico -m rltm -i eth0
    
    • -m: This option allows us to set our mode....