flyAstar / Hands-On-Artificial-Intelligence-for-Cybersecurity

Hands-On Artificial Intelligence for Cybersecurity, publised by Packt 代码

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hands-On Artificial Intelligence for Cybersecurity

Fork下来学习记录

Hands-On Artificial Intelligence for Cybersecurity

This is the code repository for Hands-On Artificial Intelligence for Cybersecurity, published by Packt.

Implement smart AI systems for preventing cyber attacks and detecting threats and network anomalies(网络异常)

What is this book about?

If you wish to design smart, threat-proof cybersecurity systems using trending AI tools and techniques, then this book is for you. With this book, you will learn to develop intelligent systems that can detect suspicious(可疑的) patterns and attacks, thereby allowing you to protect your network and corporate assets(公司资产).

This book covers the following exciting features:

  • Detect email threats such as spamming and phishing(垃圾邮件和钓鱼) using AI
  • Categorize(分类) APT, zero-days, and polymorphic malware(多态恶意软件) samples(样本)
  • Overcome antivirus limits in threat detection
  • Predict network intrusions(预防网络入侵) and detect anomalies(检测异常) with machine learning
  • Verify the strength(验证 强度) of biometric authentication procedures(生物特征认证程序) with deep learning

If you feel this book is for you, get your copy today!

https://www.packtpub.com/

Instructions and Navigations(说明和导航)

All of the code is organized into folders. For example,

The code will look like the following:

In [ ]:
from sklearn.decomposition import PCA   

pca = PCA(n_components=2)               
pca.fit(X_data)                         
X_2D = pca.transform(X_data)            
data_df['PCA1'] = X_2D[:, 0]
data_df['PCA2'] = X_2D[:, 1]

Following is what you need for this book: If you’re a cybersecurity professional or ethical hacker(道德黑客/白帽子,White hat (computer security)) who wants to build intelligent systems using the power of machine learning and AI, you’ll find this book useful. Familiarity with cybersecurity concepts and knowledge of Python programming is essential to get the most out of this book.对于本书,熟悉网络安全概念和Python编程知识至关重要

With the following software and hardware list you can run all code files present in the book (Chapter 1-11).

Software and Hardware List

Chapter Software required OS required
1-10 Python 3.7, Jupyter Notebook Windows, Mac OS X, and Linux (Any)
7 Python 3.7, Jupyter Notebook, IBM Watson Windows, Mac OS X, and Linux (Any)

We also provide a PDF file that has color images of the screenshots/diagrams used in this book. Click here to download it.

Related products

Errata (勘误)

  • Page 37 (line 2): conda update –all should be conda update ––all

Get to Know the Author

Alessandro Parisi has been an IT professional for over 20 years, acquiring significant experience as a security data scientist, and as an AI cybersecurity and blockchain specialist. He has experience of operating within organizational and decisional contexts characterized by high complexity. Over the years, he has helped companies to adopt AI and blockchain DLT technologies as strategic tools in protecting sensitive corporate assets. He holds an MSc in economics and statistics.(经济学统计学学位)

Suggestions and Feedback

Click here if you have any feedback or suggestions.

Download a free PDF

If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to claim your free PDF.

https://packt.link/free-ebook/9781789804027

About

Hands-On Artificial Intelligence for Cybersecurity, publised by Packt 代码

License:MIT License


Languages

Language:Jupyter Notebook 90.9%Language:Python 9.1%