Network Security Tools: Writing, Hacking, and Modifying Security Tools

Network Security Tools: Writing, Hacking, and Modifying Security Tools

Network Security Tools: Writing, Hacking, and Modifying Security Tools

Network Security Tools: Writing, Hacking, and Modifying Security Tools

Paperback(1st Edition)

$34.95 
  • SHIP THIS ITEM
    Qualifies for Free Shipping
  • PICK UP IN STORE
    Check Availability at Nearby Stores

Related collections and offers


Overview

If you're an advanced security professional, then you know that the battle to protect online privacy continues to rage on. Security chat rooms, especially, are resounding with calls for vendors to take more responsibility to release products that are more secure. In fact, with all the information and code that is passed on a daily basis, it's a fight that may never end. Fortunately, there are a number of open source security tools that give you a leg up in the battle. Often a security tool does exactly what you want, right out of the box. More frequently, you need to customize the tool to fit the needs of your network structure. Network Security Tools shows experienced administrators how to modify, customize, and extend popular open source security tools such as Nikto, Ettercap, and Nessus. This concise, high-end guide discusses the common customizations and extensions for these tools, then shows you how to write even more specialized attack and penetration reviews that are suited to your unique network environment. It also explains how tools like port scanners, packet injectors, network sniffers, and web assessment tools function. Some of the topics covered include:
  • Writing your own network sniffers and packet injection tools
  • Writing plugins for Nessus, Ettercap, and Nikto
  • Developing exploits for Metasploit
  • Code analysis for web applications
  • Writing kernel modules for security applications, and understanding rootkits
While many books on security are either tediously academic or overly sensational, Network Security Tools takes an even-handed and accessible approach that will let you quickly review the problem and implement new, practical solutions—without reinventing the wheel. In an age when security is critical, Network Security Tools is the resource you want at your side when locking down your network.

Product Details

ISBN-13: 9780596007942
Publisher: O'Reilly Media, Incorporated
Publication date: 04/11/2005
Edition description: 1st Edition
Pages: 340
Product dimensions: 7.00(w) x 9.19(h) x 0.90(d)

About the Author

Nitesh Dhanjani is a well known security researcher, author, and speaker. Dhanjani is currently Senior Manager at a large consulting firm where he advises some of the largest corporations around the world on how to establish enterprise wide information security programs and solutions. Dhanjani is also responsible for evangelizing brand new technology service lines around emerging technologies and trends such as cloud computing and virtualization.



Prior to his current job, Dhanjani was Senior Director of Application Security and Assessments at a major credit bureau where he spearheaded brand new security efforts into enhancing the enterprise SDLC, created a process for performing source code security reviews & Threat Modeling, and managed the Attack & Penetration team.



Dhanjani is the author of "Network Security Tools: Writing, Hacking, and Modifying Security Tools" (O'Reilly) and "HackNotes: Linux and Unix Security" (Osborne McGraw-Hill). He is also a contributing author to "Hacking Exposed 4" (Osborne McGraw-Hill) and "HackNotes: Network Security". Dhanjani has been invited to talk at various information security events such as the Black Hat Briefings, RSA, Hack in the Box, Microsoft Blue Hat, and OSCON.



Dhanjani graduated from Purdue Universitywith both a Bachelors and Masters degree in Computer Science.



Dhanjani's personal blog is located at dhanjani.com.

Justin Clarke is a Director with Gotham Digital Science, based in the United Kingdom. He has many years of experience in testing the security of networks, web applications, and wireless networks for large financial, retail, and technology clients in the United States, the United Kingdom and New Zealand.



Justin is the co-author of Network Security Tools: Writing, Hacking, and Modifying Security Tools, a contributing author to Network Security Assessment: Know Your Network, 2nd Edition, and the lead author of SQL Injection Attacks and Defenses (Syngress) as well as having been invited to speak at a number of conferences on security topics, including Black Hat, EuSecWest, OSCON and RSA.



Justin is active in developing security tools for penetrating web applications, servers, and wireless networks and as a compulsive tinkerer he can't leave anything alone without at least trying to see how it works.

Table of Contents

Preface; Audience; Assumptions This Book Makes; Contents of This Book; Conventions Used in This Book; Using Code Examples; We’d Like to Hear from You; Safari Enabled; Acknowledgments; Modifying and Hacking Security Tools; Chapter 1: Writing Plug-ins for Nessus; 1.1 The Nessus Architecture; 1.2 Installing Nessus; 1.3 Using Nessus; 1.4 The NASL Interpreter; 1.5 Hello World; 1.6 Datatypes and Variables; 1.7 Operators; 1.8 if...else; 1.9 Loops; 1.10 Functions; 1.11 Predefined Global Variables; 1.12 Important NASL Functions; 1.13 Nessus Plug-ins; Chapter 2: Developing Dissectors and Plug-ins for the Ettercap Network Sniffer; 2.1 Installing and Using Ettercap; 2.2 Writing an Ettercap Dissector; 2.3 Writing an Ettercap Plug-in; Chapter 3: Extending Hydra and Nmap; 3.1 Extending Hydra; 3.2 Adding Service Signatures to Nmap; Chapter 4: Writing Plug-ins for the Nikto Vulnerability Scanner; 4.1 Installing Nikto; 4.2 Using Nikto; 4.3 Nikto Under the Hood; 4.4 Existing Nikto Plug-ins; 4.5 Adding Custom Entries to the Plug-in Databases; 4.6 Using LibWhisker; 4.7 Writing an NTLM Plug-in for Brute-Force Testing; 4.8 Writing a Standalone Plug-in to Attack Lotus Domino; Chapter 5: Writing Modules for the Metasploit Framework; 5.1 Introduction to MSF; 5.2 Overview of Stack Buffer Overflows; 5.3 Writing Exploits for MSF; 5.4 Writing a Module for the MnoGoSearch Overflow; 5.5 Writing an Operating System Fingerprinting Module for MSF; Chapter 6: Extending Code Analysis to the Webroot; 6.1 Attacking Web Applications at the Source; 6.2 Toolkit 101; 6.3 PMD; 6.4 Extending PMD; Modifying and Hacking Security Tools; Chapter 7: Fun with Linux Kernel Modules; 7.1 Hello World; 7.2 Intercepting System Calls; 7.3 Hiding Processes; 7.4 Hiding from netstat; Chapter 8: Developing Web Assessment Tools and Scripts; 8.1 Web Application Environment; 8.2 Designing the Scanner; 8.3 Building the Log Parser; 8.4 Building the Scanner; 8.5 Using the Scanner; 8.6 Complete Source Code; Chapter 9: Automated Exploit Tools; 9.1 SQL Injection Exploits; 9.2 The Exploit Scanner; 9.3 Using the Scanner; Chapter 10: Writing Network Sniffers; 10.1 Introduction to libpcap; 10.2 Getting Started with libpcap; 10.3 libpcap and 802.11 Wireless Networks; 10.4 libpcap and Perl; 10.5 libpcap Library Reference; Chapter 11: Writing Packet-Injection Tools; 11.1 Introduction to libnet; 11.2 Getting Started with libnet; 11.3 Advanced libnet Functions; 11.4 Combining libnet and libpcap; 11.5 Introducing AirJack; Colophon;
From the B&N Reads Blog

Customer Reviews