Skip to Content
セキュリティエンジニアのための機械学習 ―AI技術によるサイバーセキュリティ対策入門
book

セキュリティエンジニアのための機械学習 ―AI技術によるサイバーセキュリティ対策入門

by Chiheb Chebbi, 新井 悠, 一瀬 小夜, 黒米 祐馬
November 2021
Beginner to intermediate
312 pages
4h 3m
Japanese
O'Reilly Japan, Inc.
Content preview from セキュリティエンジニアのための機械学習 ―AI技術によるサイバーセキュリティ対策入門

付録A練習問題の解答

A.1 1章 情報セキュリティエンジニアのための機械学習入門

この章に練習問題はない。

A.2 2章 フィッシングサイトと迷惑メールの検出

この章の練習問題のサンプルコードは以下から入手できる。

https://github.com/oreilly-japan/ml-security-jp/blob/master/ch02/Chapter2_Practice.ipynb

!wget http://www.aueb.gr/users/ion/data/lingspam_public.tar.gz
!tar -zxf ./lingspam_public.tar.gz
  • 2-2解凍先のディレクトリ/lingspam_public/bare/配下にはpart?というサブディレクトリが10個存在している。このサブディレクトリ内に存在する、ファイル名がspmsga*.txtのファイルは迷惑メールである。その他のファイルはすべて正当なメールである。個々のファイルを読み込み、本文データをコピーしたリストと、迷惑メールか、そうでないかのラベルのリストを作成しなさい。
import os
import glob
import pandas as pd

path = "./lingspam_public/bare/"

text = []
label = []

# part?ディレクトリ配下にあるメールデータを読み込み、
# 迷惑メールとそうでないものを分別してラベルを追加
for part in 
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

並行プログラミング入門 ―Rust、C、アセンブリによる実装からのアプローチ

並行プログラミング入門 ―Rust、C、アセンブリによる実装からのアプローチ

高野 祐輝
バイオインフォマティクスデータスキル ―オープンソースツールを使ったロバストで再現性のある研究

バイオインフォマティクスデータスキル ―オープンソースツールを使ったロバストで再現性のある研究

Vince Buffalo, 片山 俊明, 川島 秀一, 鈴木 治夫, 山本 泰智, 酒匂 寛, 山村 吉信

Publisher Resources

ISBN: 9784873119076Other