Book Image

Applied Network Security

By : Arthur Salmon, Michael McLafferty, Warun Levesque
Book Image

Applied Network Security

By: Arthur Salmon, Michael McLafferty, Warun Levesque

Overview of this book

Computer networks are increasing at an exponential rate and the most challenging factor organisations are currently facing is network security. Breaching a network is not considered an ingenious effort anymore, so it is very important to gain expertise in securing your network. The book begins by showing you how to identify malicious network behaviour and improve your wireless security. We will teach you what network sniffing is, the various tools associated with it, and how to scan for vulnerable wireless networks. Then we’ll show you how attackers hide the payloads and bypass the victim’s antivirus. Furthermore, we’ll teach you how to spoof IP / MAC address and perform an SQL injection attack and prevent it on your website. We will create an evil twin and demonstrate how to intercept network traffic. Later, you will get familiar with Shodan and Intrusion Detection and will explore the features and tools associated with it. Toward the end, we cover tools such as Yardstick, Ubertooth, Wifi Pineapple, and Alfa used for wireless penetration testing and auditing. This book will show the tools and platform to ethically hack your own network whether it is for your business or for your personal home Wi-Fi.
Table of Contents (18 chapters)

What is a hash?

When hackers talk about passing the hash, they are referring to the hashed value of the password that was obtained from an exploited device. The process of hashing a password works by utilizing a cryptographic algorithm that transforms plaintext into a fixed length string of characters. This string of characters is called a fingerprint. A method known as salting makes cracking a hashed password much harder. Salting a hashed password works by adding a random string of characters before the password is hashed. A hash is considered to be a one-way function, because it cannot be reversed.

Hash tables are often used to index data for fingerprinting. An example of an MD5 hash looks like this, 8743b52063cd84097a65d1633f5c74f5. An example of a salted MD5 hash is 01dfae6e5d4d90d9892622325959afbe:7050461. The seven numbers at the end of the string is a random set of numbers added before the hash string is...