Book Image

Securing Network Infrastructure

By : Sairam Jetty, Sagar Rahalkar
Book Image

Securing Network Infrastructure

By: Sairam Jetty, Sagar Rahalkar

Overview of this book

Digitization drives technology today, which is why it’s so important for organizations to design security mechanisms for their network infrastructures. Analyzing vulnerabilities is one of the best ways to secure your network infrastructure. This Learning Path begins by introducing you to the various concepts of network security assessment, workflows, and architectures. You will learn to employ open source tools to perform both active and passive network scanning and use these results to analyze and design a threat model for network security. With a firm understanding of the basics, you will then explore how to use Nessus and Nmap to scan your network for vulnerabilities and open ports and gain back door entry into a network. As you progress through the chapters, you will gain insights into how to carry out various key scanning tasks, including firewall detection, OS detection, and access management to detect vulnerabilities in your network. By the end of this Learning Path, you will be familiar with the tools you need for network scanning and techniques for vulnerability scanning and network protection. This Learning Path includes content from the following Packt books: •Network Scanning Cookbook by Sairam Jetty •Network Vulnerability Assessment by Sagar Rahalkar
Table of Contents (28 chapters)
Title Page
Copyright and Credits
About Packt
Contributors
Preface
Index

Removing Nmap


The uninstallation process of Nmap is pretty straightforward on both Windows and Linux. This will remove all the dependencies and libraries that have been installed by Nmap. 

How to do it…

Follow these steps to uninstall Nmap on Windows:

  1. Navigate to the Control Panel of the Windows machine
  2. Select Uninstall or change a program
  3. Locate and select the Nmap package in the list of software installed
  4. Click Uninstall

This will uninstall the Nmap software and its data from any Windows machine.

There's more…

 In Linux-based distributions, you can simply delete all the folders pertaining to Nmap to uninstall Nmap from your machine. If you have installed Nmap from a downloaded source, there will exist an uninstallation script in the same folder that will uninstall Nmap from your machine. Furthermore, if it was installed in the default location, it can be removed using the following commands:

rm -f bin/Nmap bin/nmapfe bin/xnmap
rm -f man/man1/Nmap.1 man/man1/zenmap.1
rm -rf share/Nmap
./bin/uninstall_zenmap...