2
0

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 1 year has passed since last update.

ONTAPへPort Scanを実施してみる【Service Policyによる防御】

Last updated at Posted at 2022-11-15

はじめに

NetApp StorageであるAFFやFASのOSであるONTAPには様々な機能がありますが、
この記事ではSecurityに関する機能であるService Policyについて、この記事ではONTAPに対してPort Scanを実行するとどうなるのか、Portの空きをサービス停止以外で検知させない方法はあるかについて記載します。
設定はCLIを用いて行います。

他者が管理している機器に対しPort Scanを行うことは不正アクセスの予備的な行為と見なされる為、自ら管理する環境でのみ実施して下さい

何をしたい?できる?

  • Network Interface(LIF)へのService-Policyの設定
  • Port ScanでSSHのPortが空いているのを表示させない為にService-Policyを利用

Port Scanとは

Port ScanとはNetworkを通じた攻撃手法の一つで、対象のコンピュータのTCPあるいはUDPのポートに接続を試み、機能停止や侵入などの攻撃に使えそうな保安上の弱点がないか調べるといった攻撃前の情報収集にあたる内容になります。

各種パケットをポート番号を変えながらIPパケットを送信して、反応の違いからポートの開閉を調べ空いているPort番号でServiceやOSの種類を推測が為されます。

001.png

Nmapとは

高性能なPort ScanerでOSを推測する機能も備えてます。
Scan方法は以下の表のようにオプション指定することで変更できます。

Scanタイプ 説明       
-sS TCP SYN Scanの実施 (TCPコネクションは確立しない)
-sT TCP Connect Scanの実施 (TCPコネクションを確立=ログに記録)
-sU UDPに対してScan
-sV 各ポートのサービスのバージョンを検出
-sC defaultカテゴリのスクリプトをすべて実行

今回検証で利用するHalf-connect(SYN Scanとも呼ばれる)には以下の特徴があります。

  • メリット
    ・Scan速度が速い
    ・アプリでScanを認識しない
    ・接続してない為、基本的にはIDS/IPSを避けやすいが…

  • デメリット
    ・通常のトラフィックではないので、 IDS/IPSに検知されるかも
    ・権限が必要

002.png

Network InterfaceのService Policyとは

ONTAP Versionの9.6以降では、Network Interface(LIF)でIP設定時にデータアクセス用や管理Network用として指定していたRoleの代わりにトラフィックの種類を決定するService Policyを LIF に割り当てる形に変更されています。
また、以前はFirewall Policyでアクセス元の制御を行っていましたが、こちらも9.6以降でService Policyを使い、HTTPSやSSHアクセスへのクライアントアクセス制御を行う事ができるようになってます。

003.png

確認手順

例で指定されている以下のパラメータは、環境によって異なる内容なので適宜変更して下さい。
既にService POlicyを指定してLIFは作成されている環境の例となってます。

  • 仮想Storage(SVM)名:cifs100

  • 仮想Storage(SVM)の管理IP:172.16.10.147

  • ONTAP側管理ユーザ:vsadmin

  • PortScanを実行する端末(Kali Linux):172.16.10.145

  • SSHが許可されているIP:172.16.10.143

コマンド例では、SSH用のLIFにアクセス制限を実行する設定例です。

1. Service Policy変更前の状態で、ClientからPort Scanの実行

> sudo nmap -sS -sV -nvv -O 172.16.10.147
[sudo] user01 のパスワード:
Starting Nmap 7.93 ( https://nmap.org ) at 2022-11-11 18:17 JST
NSE: Loaded 45 scripts for scanning.
Initiating ARP Ping Scan at 18:17
Scanning 172.16.10.147 [1 port]
Completed ARP Ping Scan at 18:17, 0.04s elapsed (1 total hosts)
Initiating SYN Stealth Scan at 18:17
Scanning 172.16.10.147 [1000 ports]
Discovered open port 443/tcp on 172.16.10.147
Discovered open port 22/tcp on 172.16.10.147  <=="SSHサービスが実行されているのが確認できる"
Discovered open port 30000/tcp on 172.16.10.147
Discovered open port 10000/tcp on 172.16.10.147
                    (中略)

2. Storage側でService Policy変更

この手順例では、特定のClient IPからのアクセスを許可します。
SSHに関する設定は、Policy内のmanagement-sshというサービスになります。

> set advanced
Warning: These advanced commands are potentially dangerous; use them only when directed to do so by NetApp personnel.
Do you want to continue? {y|n}: y <=="yを入力します"

> network interface service-policy modify-service -vserver cifs100 -policy default-management -service management-ssh -allowed-addresses 172.16.10.143/32

設定値の確認

> network interface service-policy show -vserver cifs100 -policy default-management

                   Vserver: cifs100
               Policy Name: default-management
         Included Services: data-core, management-ssh, management-https
Service: Allowed Addresses: data-core: 0.0.0.0/0
                            management-ssh: 172.16.10.143/32
                            management-https: 0.0.0.0/0

3. Service Policy変更後、ClientからPort Scanの実行

Discovered open port 22/tcp on 172.16.10.147の行が表示されなくなる事が確認できます。

> sudo nmap -sS -sV -nvv -O 172.16.10.147
Starting Nmap 7.93 ( https://nmap.org ) at 2022-11-11 18:28 JST
NSE: Loaded 45 scripts for scanning.
Initiating ARP Ping Scan at 18:28
Scanning 172.16.10.147 [1 port]
Completed ARP Ping Scan at 18:28, 0.06s elapsed (1 total hosts)
Initiating SYN Stealth Scan at 18:28
Scanning 172.16.10.147 [1000 ports]
Discovered open port 443/tcp on 172.16.10.147
Discovered open port 30000/tcp on 172.16.10.147
Discovered open port 10000/tcp on 172.16.10.147
                    (中略)

3. 許可されたClientからSSHが実施できる事の確認

qiita-square

Service PolicyはNFSやCIFS用のLIFに設定できないのか?

設定しようとすると、サポート外ということでエラーとなります。

> network interface service-policy modify-service -vserver cifs100 -policy default-data-files -service data-nfs -allowed-addresses 172.16.10.143/32
 
Error: command failed: Service "data-nfs" cannot be added to service policy "default-data-files" on Vserver "cifs100" with allowed
       addresses "172.16.10.143/32" because this service does not support custom allowed address lists. Try the command again
       without specifying an allowed address list and the system will supply an appropriate setting.

これは、ONTAPの仮想ストレージ自体にログインしてもLinux用のスクリプトや、WindowsのPowershellファイルの実行が出来ないので、空きポートを検知してもリモート接続しての攻撃に繋がらない形となり、Service Policyよりもファイルやフォルダのアクセス権設定で十分ともいえる内容になります。
むしろ、ONTAPにとっては、SSHログインをされてSnapshot削除やVolume削除をされるほうが致命的と言えるかと思います。

参考及びリンク

LIFのservice policy設定

ONTAP 9.6 以降の LIF とサービスポリシー

2
0
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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?