Book Image

Hands-On Artificial Intelligence for Cybersecurity

By : Alessandro Parisi
Book Image

Hands-On Artificial Intelligence for Cybersecurity

By: Alessandro Parisi

Overview of this book

Today's organizations spend billions of dollars globally on cybersecurity. Artificial intelligence has emerged as a great solution for building smarter and safer security systems that allow you to predict and detect suspicious network activity, such as phishing or unauthorized intrusions. This cybersecurity book presents and demonstrates popular and successful AI approaches and models that you can adapt to detect potential attacks and protect your corporate systems. You'll learn about the role of machine learning and neural networks, as well as deep learning in cybersecurity, and you'll also learn how you can infuse AI capabilities into building smart defensive mechanisms. As you advance, you'll be able to apply these strategies across a variety of applications, including spam filters, network intrusion detection, botnet detection, and secure authentication. By the end of this book, you'll be ready to develop intelligent systems that can detect unusual and suspicious patterns and attacks, thereby developing strong network security defenses using AI.
Table of Contents (16 chapters)
Free Chapter
1
Section 1: AI Core Concepts and Tools of the Trade
4
Section 2: Detecting Cybersecurity Threats with AI
8
Section 3: Protecting Sensitive Information and Assets
12
Section 4: Evaluating and Testing Your AI Arsenal

Playing with Jupyter Notebooks

Among the most useful tools for the developer, there is undoubtedly the Jupyter Notebook, which allows, in a single document, the integration of both the Python code and the result of its execution, including images and graphics. In this way, it is possible to receive immediate feedback on the development activity in progress, managing the various phases of programming in an iterative manner.

Inside the Jupyter Notebook, it is possible to recall the various specific libraries installed in a custom environment. Jupyter is a web-based utility, so to run the notebook you need to run the following command:

jupyter notebook

It is also possible to specify the listening port of the service, using the port parameter:

jupyter notebook --port 9000

In this way, the service will be started on the listening port 9000 (instead of the default 8888).

Jupyter is...