24
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ペネトレーションテストにKail LinuxではなくBlackArch Linuxを使う

Last updated at Posted at 2015-08-27

ペネトレーションテストのOSとして有名なのがKail Linuxですが、個人的には、BlackArchのほうが使いやすいと思っています。

https://github.com/BlackArch/blackarch

基本的にBlackArchのインストールは、Arch系のOS上から簡単に行えます。通常は、Arch Linuxのインストーラーからインストールすると思うのですが、特に決まったインストール方法はありません。

$ curl -sL -O http://blackarch.org/strap.sh

# 改竄されていないか checksum する
$ if [ "`sha1sum strap.sh`" = "f8456229463718c097cf70ed06a806f981be7423" ];then
  echo ok
fi

# このスクリプトは /etc/pacman.conf を書き換えます
$ sudo sh strap.sh

# すでにある Arch Linux から BlackArch のパッケージをインストールして使う方法
$ sudo pacman -Sgg | grep blackarch
$ sudo pacman -S blackarch

# 新しいディスクにインストールする方法
$ sudo pacman -S blackarch-install-scripts
$ sudo blackarch-install

BlackArchは、Window ManagerにAwesomeを使いますし、使い方自体は、Arch Linuxのものなので、使いやすいです。

また、Arch Linuxのインストールが面倒な場合、BlackArchから構築して、/etc/pacman.confblackarchをコメントアウトするというのも良いかもしれません。

24
20
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
24
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?