富士通

Interstage Application Serverにおけるクロスサイトスクリプティング(XSS)脆弱性の問題 (2009年3月3日)


本セキュリティサイトについてのご注意

1.背景と問題点

ServletサービスおよびInterstage管理コンソール用Servletサービス(注1)において、 新たにクロスサイトスクリプティング(XSS)脆弱性の問題が確認されました。

(注1)ご利用の製品バージョンによっては「Interstage運用管理用Servletサービス」と 呼ばれます。以降、必要に応じ読み換えてください。

クロスサイト・スクリプティングの脆弱性を利用すると、悪意のあるサイト運用者が ユーザーのコンピュータ上で任意のコードを実行することができます。 また、そのコードは信頼できるサイトのものとして実行される可能性があります。 危険なコードには以下のようなものがあります。


  • ユーザ入力の読み取り
  • cookieの読み取り/上書き
  • 第三者への情報の転送


Interstage製品については以下のページを参照してください。
http://interstage.fujitsu.com/jp/products/


2. 一時的な回避方法

2.1  Tomcat 3.1ベースのServletサービス(注2)の回避方法
ServletサービスのWebアプリケーション環境定義ファイル(deployment descriptor:web.xml)内に、HTTPステータスコード404および500に対するエラーページを設定します。(設定のみ行います。Locationタグで指定したリソースを格納する必要はありません。)設定後、Servletサービスを再起動してください。再起動方法につきましては、通常ご利用いただいている方法で実施してください。
(注2)V3系からV5系のServletサービスおよびV6系からV7系に含まれる旧バージョンのServletサービス

2.1.1  Tomcat 3.1ベースのServletサービスの設定変更方法
Tomcat 3.1ベースのServletサービスのWebアプリケーション環境定義ファイル(deployment descriptor:web.xml)は以下の場所に格納されています。mime-mapping設定の最終行の後に設定してください。

  • Windowsの場合
    "Interstageのインストールフォルダ"\F3FMjs2\conf\web.xml
  • Solaris/Linuxの場合
    /opt/FJSVjs2/conf/web.xml

【設定例】Tomcat 3.1ベースのServletサービスのWebアプリケーション環境定義ファイル(deployment descriptor:web.xml)
  <web-app>
             :
             :
       <mime-mapping>
             <extension>
               mpv2
             </extension>
             <mime-type>
               video/mpeg2
             </mime-type>
       </mime-mapping>

     <error-page>
           <error-code>
             404
           </error-code>
           <location>
             /error/http/404.html(任意のページを指定してください。)
           </location>
      </error-page>
      <error-page>
           <error-code>
              500
           </error-code>
       <location>
             /error/http/500.html(任意のページを指定してください。)
           </location>
       </error-page>

   </web-app>

2.2 Tomcat 4.1ベースのServletサービス(注3)の回避方法
各IJServerのデフォルトのWebアプリケーション環境定義ファイル(deployment descriptor:web.xml)内に、HTTPステータスコード404および500に対するエラーページを設定します。 (設定のみ行います。Locationタグで指定したリソースを格納する必要はありません。) 設定後、各IJServerを再起動してください。再起動方法につきましては、通常ご利用いただいている方法で実施してください。

(注3)V6系~V8系のServletサービス

2.2.1  Tomcat 4.1ベースのServletサービスの設定変更方法
各IJServerのデフォルトのWebアプリケーション環境定義ファイル(deployment descriptor:web.xml)は以下の場所に格納されています。welcome-file-list設定の後に設定してください。

  • Windowsの場合
    "J2EE共通ディレクトリ"\ijserver\[IJServer名]\web.xml
  • Solaris/Linuxの場合
    /opt/FJSVj2ee/var/deployment/ijserver/[IJServer名]/web.xml

【設定例】IJServerのデフォルトのWebアプリケーション環境定義ファイル(deployment descriptor:web.xml)

   <web-app>
             :
             :
       <welcome-file-list>
             <welcome-file>index.html</welcome-file>
             <welcome-file>index.htm</welcome-file>
             <welcome-file>index.jsp</welcome-file>
       </welcome-file-list>

       <error-page>
             <error-code>
               404
             </error-code>
             <location>
               /error/http/404.html(任意のページを指定してください。)
             </location>
       </error-page>
       <error-page>
             <error-code>
               500
             </error-code>
             <location>
               /error/http/500.html(任意のページを指定してください。)
             </location>
       </error-page>

   </web-app>

2.3  Interstage管理コンソール用Servletサービスの回避方法
Interstage管理コンソール用ServletサービスのWebアプリケーション環境定義ファイル(deployment descriptor:web.xml)内に、HTTPステータスコード404および500に対するエラーページを設定します。 (設定のみ行います。Locationタグで指定したリソースを格納する必要はありません。) 設定後、Interstage管理コンソール用Servletサービスを再起動してください。再起動方法につきましては、「Interstage Application Server運用ガイド」を参照してください。

2.3.1  Interstage管理コンソール用Servletサービスの設定変更方法
Interstage管理コンソール用ServletサービスのWebアプリケーション環境定義ファイル(deployment descriptor:web.xml)は以下の場所に格納されています。mime-mapping設定の最終行の後に設定してください。

  • Windowsの場合
    "Interstageのインストールフォルダ"\F3FMjs2su\conf\web.xml
  • Solaris/Linuxの場合
    /opt/FJSVjs2su/conf/web.xml

【設定例】Interstage管理コンソール用ServletサービスのWebアプリケーション環境定義ファイル(deployment descriptor:web.xml)

   <web-app>
             :
             :
       <mime-mapping>
            <extension>
              mpv2
            </extension>
            <mime-type>
              video/mpeg2
            </mime-type>
       </mime-mapping>

       <error-page>
            <error-code>
              404
            </error-code>
            <location>
              /error/http/404.html(任意のページを指定してください。)
            </location>
       </error-page>
       <error-page>
            <error-code>
              500
            </error-code>
            <location>
              /error/http/500.html(任意のページを指定してください。)
            </location>
       </error-page>

   </web-app>


3. 該当システム・パッチ情報


該当システム
GP7000F, PRIMEPOWER, GP-S, PRIMERGY, GP5000, CELSIUS, FMVシリーズ, AT互換機, PRIMEQUEST


Interstage Application Framework Suite
Interstage Application Server
Interstage Apworks
Interstage Business Application Server
Interstage Job Workload Server
Interstage Application Framework Suite
製品名 対象OS パッケージ名 Patch ID
Interstage Application Framework Suite Enterprise Edition 6.0 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Framework Suite Enterprise Edition 6.0 Solaris 8, 9 FJSVjs4 後日提供
Interstage Application Framework Suite Enterprise Edition 6.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Standard Edition 6.0 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Framework Suite Standard Edition 6.0 Solaris 8, 9 FJSVjs4 後日提供
Interstage Application Framework Suite Standard Edition 6.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Web Edition 6.0 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Framework Suite Web Edition 6.0 Solaris 8, 9 FJSVjs4 後日提供
Interstage Application Framework Suite Web Edition 6.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Enterprise Edition 6.0.1 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Framework Suite Enterprise Edition 6.0.1 Solaris 8, 9 FJSVjs4 T0163S-07
Interstage Application Framework Suite Enterprise Edition 6.0.1 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Standard Edition 6.0.1 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Framework Suite Standard Edition 6.0.1 Solaris 8, 9 FJSVjs4 T0163S-07
Interstage Application Framework Suite Standard Edition 6.0.1 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Web Edition 6.0.1 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Framework Suite Web Edition 6.0.1 Solaris 8, 9 FJSVjs4 T0163S-07
Interstage Application Framework Suite Web Edition 6.0.1 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Enterprise Edition 6.0.2 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Framework Suite Enterprise Edition 6.0.2 Solaris 8, 9 FJSVjs4 ダウンロードデータT0315S-01 (INTS-APSREE6.0.2_PUF_T0315S-01.tar.Z: 1.8MB)
Interstage Application Framework Suite Enterprise Edition 6.0.2 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Standard Edition 6.0.2 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Framework Suite Standard Edition 6.0.2 Solaris 8, 9 FJSVjs4 ダウンロードデータT0315S-01 (INTS-APSREE6.0.2_PUF_T0315S-01.tar.Z: 1.8MB)
Interstage Application Framework Suite Standard Edition 6.0.2 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Web Edition 6.0.2 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Framework Suite Web Edition 6.0.2 Solaris 8, 9 FJSVjs4 ダウンロードデータT0315S-01 (INTS-APSREE6.0.2_PUF_T0315S-01.tar.Z: 1.8MB)
Interstage Application Framework Suite Web Edition 6.0.2 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Standard Edition 7.0 Solaris 8, 9 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Framework Suite Standard Edition 7.0 Solaris 8, 9 FJSVjs4 T020LS-07
Interstage Application Framework Suite Standard Edition 7.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Web Edition 7.0 Solaris 8, 9 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Framework Suite Web Edition 7.0 Solaris 8, 9 FJSVjs4 T020LS-07
Interstage Application Framework Suite Web Edition 7.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Framework Suite Enterprise Edition 7.0.1 Solaris 8, 9, 10 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Framework Suite Enterprise Edition 7.0.1 Solaris 8, 9, 10 FJSVjs4 T020LS-07
Interstage Application Framework Suite Enterprise Edition 7.0.1 Solaris 8, 9, 10 FJSVjs2su 後日提供
Interstage Application Framework Suite Standard Edition 7.0.2 Solaris 8, 9, 10 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Framework Suite Standard Edition 7.0.2 Solaris 8, 9, 10 FJSVjs4 T020LS-07
Interstage Application Framework Suite Standard Edition 7.0.2 Solaris 8, 9, 10 FJSVjs2su 後日提供
Interstage Application Framework Suite Web Edition 7.0.2 Solaris 8, 9, 10 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Framework Suite Web Edition 7.0.2 Solaris 8, 9, 10 FJSVjs4 T020LS-07
Interstage Application Framework Suite Web Edition 7.0.2 Solaris 8, 9, 10 FJSVjs2su 後日提供
Interstage Application Framework Suite Enterprise Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Enterprise Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Enterprise Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Standard Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Standard Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Standard Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Web Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Web Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Web Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Web Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Web Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Web Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Enterprise Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Enterprise Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Enterprise Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Standard Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Standard Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Standard Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Web Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Web Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Web Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Enterprise Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Enterprise Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Enterprise Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Standard Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Standard Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Standard Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Web Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Framework Suite Web Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Framework Suite Web Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Framework Suite Standard Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Framework Suite Standard Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Framework Suite Standard Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Framework Suite Web Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Framework Suite Web Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Framework Suite Web Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Framework Suite Standard Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Framework Suite Standard Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Framework Suite Standard Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Framework Suite Web Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Framework Suite Web Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Framework Suite Web Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Framework Suite Enterprise Edition V6.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 T00408-04
Interstage Application Framework Suite Enterprise Edition V6.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00274-06
Interstage Application Framework Suite Enterprise Edition V6.0L10 RHEL-AS3(x86)/ AS3(x86) FJSVjs2su T01188-01
Interstage Application Framework Suite Standard Edition V6.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 T00408-04
Interstage Application Framework Suite Standard Edition V6.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00274-06
Interstage Application Framework Suite Standard Edition V6.0L10 RHEL-AS3(x86)/ AS3(x86) FJSVjs2su T01188-01
Interstage Application Framework Suite Web Edition V6.0L10 RHEL-AS2.1(x86)/ ES2.1(x86) FJSVjs2 T00408-04
Interstage Application Framework Suite Web Edition V6.0L10 RHEL-AS2.1(x86)/ ES2.1(x86) FJSVjs4 T00274-06
Interstage Application Framework Suite Web Edition V6.0L10 RHEL-AS2.1(x86)/ ES2.1(x86) FJSVjs2su T01188-01
Interstage Application Framework Suite Web Edition V6.0L11 RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86) FJSVjs2 T00408-04
Interstage Application Framework Suite Web Edition V6.0L11 RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86) FJSVjs4 T00274-06
Interstage Application Framework Suite Web Edition V6.0L11 RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86) FJSVjs2su T01188-01
Interstage Application Framework Suite Standard Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 後日提供
Interstage Application Framework Suite Standard Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00836-06
Interstage Application Framework Suite Standard Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2su 後日提供
Interstage Application Framework Suite Web Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 後日提供
Interstage Application Framework Suite Web Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00836-06
Interstage Application Framework Suite Web Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2su 後日提供
Interstage Application Framework Suite Standard Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2 後日提供
Interstage Application Framework Suite Standard Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs4 T00836-06
Interstage Application Framework Suite Standard Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2su 後日提供
Interstage Application Framework Suite Web Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2 後日提供
Interstage Application Framework Suite Web Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs4 T00836-06
Interstage Application Framework Suite Web Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2su 後日提供
Interstage Application Server
製品名 対象OS パッケージ名 Patch ID
INTERSTAGE Application Server Enterprise Edition 3.0 Solaris 2.6, 7, 8 FJSVjs2 後日提供
INTERSTAGE Application Server Standard Edition 3.0 Solaris 2.6, 7, 8 FJSVjs2 後日提供
INTERSTAGE Application Server Enterprise Edition 3.1 Solaris 2.6, 7, 8 FJSVjs2 ダウンロードデータ911111-20 (911111-20.tar.Z: 2.3MB)
INTERSTAGE Application Server Standard Edition 3.1 Solaris 2.6, 7, 8 FJSVjs2 ダウンロードデータ911112-20 (911112-20.tar.Z: 2.3MB)
INTERSTAGE Application Server Web-J Edition 3.1 Solaris 2.6, 7, 8 FJSVjs2 ダウンロードデータ911120-20 (911120-20.tar.Z: 2.3MB)
INTERSTAGE Application Server Enterprise Edition 4.0 Solaris 2.6, 7, 8 FJSVjs2 ダウンロードデータ911367-11 (911367-11.tar.Z: 3.4MB)
INTERSTAGE Application Server Standard Edition 4.0 Solaris 2.6, 7, 8 FJSVjs2 ダウンロードデータ911368-11 (911368-11.tar.Z: 3.4MB)
INTERSTAGE Application Server Web-J Edition 4.0 Solaris 2.6, 7, 8 FJSVjs2 ダウンロードデータ911562-10 (911562-10.tar.Z: 3.4MB)
INTERSTAGE Application Server Enterprise Edition 4.1 Solaris 2.6, 7, 8 FJSVjs2 911892-16
INTERSTAGE Application Server Standard Edition 4.1 Solaris 2.6, 7, 8 FJSVjs2 911893-16
INTERSTAGE Application Server Web-J Edition 4.1 Solaris 2.6, 7, 8 FJSVjs2 911894-15
Interstage Application Server Enterprise Edition 5.0 Solaris 7, 8, 9 FJSVjs2 後日提供
Interstage Application Server Enterprise Edition 5.0 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Standard Edition 5.0 Solaris 7, 8, 9 FJSVjs2 後日提供
Interstage Application Server Standard Edition 5.0 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 5.0 Solaris 7, 8, 9 FJSVjs2 後日提供
Interstage Application Server Web-J Edition 5.0 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 5.0.1 Solaris 7, 8, 9 FJSVjs2 後日提供
Interstage Application Server Enterprise Edition 5.0.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Standard Edition 5.0.1 Solaris 7, 8, 9 FJSVjs2 後日提供
Interstage Application Server Standard Edition 5.0.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 5.0.1 Solaris 7, 8, 9 FJSVjs2 後日提供
Interstage Application Server Web-J Edition 5.0.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 5.1 Solaris 7, 8, 9 FJSVjs2 ダウンロードデータ912877-15 (912877-15.tar.Z: 2.5MB)
Interstage Application Server Enterprise Edition 5.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Standard Edition 5.1 Solaris 7, 8, 9 FJSVjs2 ダウンロードデータ912878-15 (912878-15.tar.Z: 2.5MB)
Interstage Application Server Standard Edition 5.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 5.1 Solaris 7, 8, 9 FJSVjs2 ダウンロードデータ912879-12 (912879-12.tar.Z: 2.5MB)
Interstage Application Server Web-J Edition 5.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Plus 5.1 Solaris 7, 8, 9 FJSVjs2 ダウンロードデータ912880-15 (912880-15.tar.Z: 2.5MB)
Interstage Application Server Plus 5.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 5.1.1 Solaris 7, 8, 9 FJSVjs2 ダウンロードデータ912877-15 (912877-15.tar.Z: 2.5MB)
Interstage Application Server Enterprise Edition 5.1.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Standard Edition 5.1.1 Solaris 7, 8, 9 FJSVjs2 ダウンロードデータ912878-15 (912878-15.tar.Z: 2.5MB)
Interstage Application Server Standard Edition 5.1.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 5.1.1 Solaris 7, 8, 9 FJSVjs2 ダウンロードデータ912879-12 (912879-12.tar.Z: 2.5MB)
Interstage Application Server Web-J Edition 5.1.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Plus 5.1.1 Solaris 7, 8, 9 FJSVjs2 ダウンロードデータ912880-15 (912880-15.tar.Z: 2.5MB)
Interstage Application Server Plus 5.1.1 Solaris 7, 8, 9 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 6.0 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Enterprise Edition 6.0 Solaris 8, 9 FJSVjs4 ダウンロードデータT0114S-06 (INTS-APSREE6.0_PUF_T0114S-06.tar.Z: 2.2MB)
Interstage Application Server Enterprise Edition 6.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Standard Edition 6.0 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Standard Edition 6.0 Solaris 8, 9 FJSVjs4 ダウンロードデータT0114S-06 (INTS-APSREE6.0_PUF_T0114S-06.tar.Z: 2.2MB)
Interstage Application Server Standard Edition 6.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 6.0 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Web-J Edition 6.0 Solaris 8, 9 FJSVjs4 ダウンロードデータT0114S-06 (INTS-APSREE6.0_PUF_T0114S-06.tar.Z: 2.2MB)
Interstage Application Server Web-J Edition 6.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Plus 6.0 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Plus 6.0 Solaris 8, 9 FJSVjs4 ダウンロードデータT0114S-06 (INTS-APSREE6.0_PUF_T0114S-06.tar.Z: 2.2MB)
Interstage Application Server Plus 6.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 6.0.1 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Enterprise Edition 6.0.1 Solaris 8, 9 FJSVjs4 T0163S-07
Interstage Application Server Enterprise Edition 6.0.1 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Standard Edition 6.0.1 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Standard Edition 6.0.1 Solaris 8, 9 FJSVjs4 T0163S-07
Interstage Application Server Standard Edition 6.0.1 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 6.0.1 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Web-J Edition 6.0.1 Solaris 8, 9 FJSVjs4 T0163S-07
Interstage Application Server Web-J Edition 6.0.1 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Plus 6.0.1 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Plus 6.0.1 Solaris 8, 9 FJSVjs4 T0163S-07
Interstage Application Server Plus 6.0.1 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 6.0.2 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Enterprise Edition 6.0.2 Solaris 8, 9 FJSVjs4 ダウンロードデータT0315S-01 (INTS-APSREE6.0.2_PUF_T0315S-01.tar.Z: 1.8MB)
Interstage Application Server Enterprise Edition 6.0.2 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Standard Edition 6.0.2 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Standard Edition 6.0.2 Solaris 8, 9 FJSVjs4 ダウンロードデータT0315S-01 (INTS-APSREE6.0.2_PUF_T0315S-01.tar.Z: 1.8MB)
Interstage Application Server Standard Edition 6.0.2 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 6.0.2 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Web-J Edition 6.0.2 Solaris 8, 9 FJSVjs4 ダウンロードデータT0315S-01 (INTS-APSREE6.0.2_PUF_T0315S-01.tar.Z: 1.8MB)
Interstage Application Server Web-J Edition 6.0.2 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Plus 6.0.2 Solaris 8, 9 FJSVjs2 後日提供
Interstage Application Server Plus 6.0.2 Solaris 8, 9 FJSVjs4 ダウンロードデータT0315S-01 (INTS-APSREE6.0.2_PUF_T0315S-01.tar.Z: 1.8MB)
Interstage Application Server Plus 6.0.2 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 7.0 Solaris 8, 9 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Server Enterprise Edition 7.0 Solaris 8, 9 FJSVjs4 T020LS-07
Interstage Application Server Enterprise Edition 7.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Standard Edition 7.0 Solaris 8, 9 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Server Standard Edition 7.0 Solaris 8, 9 FJSVjs4 T020LS-07
Interstage Application Server Standard Edition 7.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 7.0 Solaris 8, 9 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Server Web-J Edition 7.0 Solaris 8, 9 FJSVjs4 T020LS-07
Interstage Application Server Web-J Edition 7.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Plus 7.0 Solaris 8, 9 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Server Plus 7.0 Solaris 8, 9 FJSVjs4 T020LS-07
Interstage Application Server Plus 7.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 7.0.1 Solaris 8, 9, 10 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Server Enterprise Edition 7.0.1 Solaris 8, 9, 10 FJSVjs4 T020LS-07
Interstage Application Server Enterprise Edition 7.0.1 Solaris 8, 9, 10 FJSVjs2su 後日提供
Interstage Application Server Standard Edition 7.0.1 Solaris 8, 9, 10 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Server Standard Edition 7.0.1 Solaris 8, 9, 10 FJSVjs4 T020LS-07
Interstage Application Server Standard Edition 7.0.1 Solaris 8, 9, 10 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 7.0.1 Solaris 8, 9, 10 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Server Web-J Edition 7.0.1 Solaris 8, 9, 10 FJSVjs4 T020LS-07
Interstage Application Server Web-J Edition 7.0.1 Solaris 8, 9, 10 FJSVjs2su 後日提供
Interstage Application Server Plus 7.0.1 Solaris 8, 9, 10 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Application Server Plus 7.0.1 Solaris 8, 9, 10 FJSVjs4 T020LS-07
Interstage Application Server Plus 7.0.1 Solaris 8, 9, 10 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 8.0.0 Solaris 9, 10 FJSVjs4 T000572SP-06
Interstage Application Server Enterprise Edition 8.0.0 Solaris 9, 10 FJSVjs2su 後日提供
Interstage Application Server Standard-J Edition 8.0.0 Solaris 9, 10 FJSVjs4 T000573SP-06
Interstage Application Server Standard-J Edition 8.0.0 Solaris 9, 10 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 8.0.0 Solaris 9, 10 FJSVjs4 T000574SP-06
Interstage Application Server Web-J Edition 8.0.0 Solaris 9, 10 FJSVjs2su 後日提供
INTERSTAGE Application Server Enterprise Edition V3.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Standard Edition V3.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Web Edition V3.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Enterprise Edition V3.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Standard Edition V3.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Web Edition V3.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Web-J Edition V3.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Enterprise Edition V4.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Standard Edition V4.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Web-J Edition V4.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Enterprise Edition V4.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Standard Edition V4.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
INTERSTAGE Application Server Web-J Edition V4.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V5.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Standard Edition V5.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V5.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V5.0L10 Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition V5.0L10A Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L10A Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V5.0L10A Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Standard Edition V5.0L10A Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V5.0L10A Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V5.0L10A Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition V5.0L10B Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L10B Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V5.0L10B Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Standard Edition V5.0L10B Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V5.0L10B Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V5.0L10B Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition V5.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V5.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Standard Edition V5.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V5.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V5.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Plus V5.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Plus V5.0L20 Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Plus Developer V5.0L20 Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2 後日提供
Interstage Application Server Plus Developer V5.0L20 Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition V5.0L20A Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L20A Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V5.0L20A Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Standard Edition V5.0L20A Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V5.0L20A Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V5.0L20A Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Plus V5.0L20A Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Plus V5.0L20A Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Enterprise Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Standard Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Standard Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Web-J Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Plus V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Plus V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Plus V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Plus Developer V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs4 TP09743
Interstage Application Server Plus Developer V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Web-J Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Plus V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Plus V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Plus V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Enterprise Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Standard Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Standard Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Web-J Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Plus V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Plus V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Plus V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Enterprise Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Standard Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Standard Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Web-J Edition V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Plus V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2 後日提供
Interstage Application Server Plus V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs4 TP09743
Interstage Application Server Plus V6.0L10C Windows Server 2003/ Windows 2000/ Windows NT Server 4.0 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Server Enterprise Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Server Standard Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Server Standard Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Server Web-J Edition V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Plus V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Server Plus V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Server Plus V7.0L10 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Plus Developer V7.0L10 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs4 TP09768
Interstage Application Server Plus Developer V7.0L10 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V7.0L10A Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V7.0L10A Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Server Web-J Edition V7.0L10A Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Server Enterprise Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Server Enterprise Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Standard Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Server Standard Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Server Standard Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Server Web-J Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Server Web-J Edition V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Plus V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2 後日提供
Interstage Application Server Plus V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs4 TP09768
Interstage Application Server Plus V7.0L11 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition 8.0.0 Windows Server 2003/ Windows 2000 F3FMjs4 T000685WP-02
Interstage Application Server Enterprise Edition 8.0.0 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Standard-J Edition 8.0.0 Windows Server 2003/ Windows 2000 F3FMjs4 T000686WP-02
Interstage Application Server Standard-J Edition 8.0.0 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition 8.0.0 Windows Server 2003/ Windows 2000 F3FMjs4 T000687WP-02
Interstage Application Server Web-J Edition 8.0.0 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition 8.0.1 Windows Server 2003/ Windows 2000 F3FMjs4 T000685WP-02
Interstage Application Server Enterprise Edition 8.0.1 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Standard-J Edition 8.0.1 Windows Server 2003/ Windows 2000 F3FMjs4 T000686WP-02
Interstage Application Server Standard-J Edition 8.0.1 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition 8.0.1 Windows Server 2003/ Windows 2000 F3FMjs4 T000687WP-02
Interstage Application Server Web-J Edition 8.0.1 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Enterprise Edition 8.0.3 Windows Server 2003/ Windows 2000 F3FMjs4 T000685WP-02
Interstage Application Server Enterprise Edition 8.0.3 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Standard-J Edition 8.0.3 Windows Server 2003/ Windows 2000 F3FMjs4 T000686WP-02
Interstage Application Server Standard-J Edition 8.0.3 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Application Server Web-J Edition 8.0.3 Windows Server 2003/ Windows 2000 F3FMjs4 T000687WP-02
Interstage Application Server Web-J Edition 8.0.3 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
INTERSTAGE Application Server Web-J Edition 3.1 Turbolinux 6.1 FJSVjs2 後日提供
INTERSTAGE Application Server Web-J Edition 3.1.1 Turbolinux 6.1/ RedHat Linux 6.2J/ 7J FJSVjs2 後日提供
INTERSTAGE Application Server Web-J Edition 4.0 Turbolinux 6.1/ 6.5 FJSVjs2 後日提供
INTERSTAGE Application Server Enterprise Edition 4.1 Turbolinux 7/ RedHat Linux 7.2 FJSVjs2 後日提供
INTERSTAGE Application Server Standard Edition 4.1 Turbolinux 7/ RedHat Linux 7.2 FJSVjs2 後日提供
INTERSTAGE Application Server Web-J Edition 4.1 Turbolinux 6.1/ 6.5/ 7/ RedHat Linux 7.2 FJSVjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L10 Turbolinux 7 FJSVjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L10 Turbolinux 7 FJSVjs2su 後日提供
Interstage Application Server Standard Edition V5.0L10 Turbolinux 7 FJSVjs2 後日提供
Interstage Application Server Standard Edition V5.0L10 Turbolinux 7 FJSVjs2su 後日提供
Interstage Application Server Web-J Edition V5.0L10 Turbolinux 7 FJSVjs2 後日提供
Interstage Application Server Web-J Edition V5.0L10 Turbolinux 7 FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition V5.0L11 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L11 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2su 後日提供
Interstage Application Server Standard Edition V5.0L11 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2 後日提供
Interstage Application Server Standard Edition V5.0L11 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2su 後日提供
Interstage Application Server Web-J Edition V5.0L11 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2 後日提供
Interstage Application Server Web-J Edition V5.0L11 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition V5.0L20 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2 後日提供
Interstage Application Server Enterprise Edition V5.0L20 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2su 後日提供
Interstage Application Server Standard Edition V5.0L20 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2 後日提供
Interstage Application Server Standard Edition V5.0L20 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2su 後日提供
Interstage Application Server Web-J Edition V5.0L20 Turbolinux 7/ 8/ RHEL-AS2.1(x86) FJSVjs2 後日提供
Interstage Application Server Web-J Edition V5.0L20 Turbolinux 7/ 8/ RHEL-AS2.1(x86) FJSVjs2su 後日提供
Interstage Application Server Plus V5.0L20 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2 後日提供
Interstage Application Server Plus V5.0L20 Turbolinux 7/ RHEL-AS2.1(x86) FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition V6.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 T00408-04
Interstage Application Server Enterprise Edition V6.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00274-06
Interstage Application Server Enterprise Edition V6.0L10 RHEL-AS3(x86)/ AS3(x86) FJSVjs2su T01188-01
Interstage Application Server Standard Edition V6.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 T00408-04
Interstage Application Server Standard Edition V6.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00274-06
Interstage Application Server Standard Edition V6.0L10 RHEL-AS3(x86)/ AS3(x86) FJSVjs2su T01188-01
Interstage Application Server Web-J Edition V6.0L10 RHEL-AS2.1(x86)/ ES2.1(x86) FJSVjs2 T00408-04
Interstage Application Server Web-J Edition V6.0L10 RHEL-AS2.1(x86)/ ES2.1(x86) FJSVjs4 T00274-06
Interstage Application Server Web-J Edition V6.0L10 RHEL-AS2.1(x86)/ ES2.1(x86) FJSVjs2su T01188-01
Interstage Application Server Plus V6.0L10 RHEL-AS2.1(x86)/ ES2.1(x86) FJSVjs2 T00408-04
Interstage Application Server Plus V6.0L10 RHEL-AS2.1(x86)/ ES2.1(x86) FJSVjs4 T00274-06
Interstage Application Server Plus V6.0L10 RHEL-AS2.1(x86)/ ES2.1(x86) FJSVjs2su T01188-01
Interstage Application Server Web-J Edition V6.0L11 RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86) FJSVjs2 T00408-04
Interstage Application Server Web-J Edition V6.0L11 RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86) FJSVjs4 T00274-06
Interstage Application Server Web-J Edition V6.0L11 RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86) FJSVjs2su T01188-01
Interstage Application Server Plus V6.0L11 RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86) FJSVjs2 T00408-04
Interstage Application Server Plus V6.0L11 RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86) FJSVjs4 T00274-06
Interstage Application Server Plus V6.0L11 RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86) FJSVjs2su T01188-01
Interstage Application Server Enterprise Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 後日提供
Interstage Application Server Enterprise Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00836-06
Interstage Application Server Enterprise Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2su 後日提供
Interstage Application Server Standard Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 後日提供
Interstage Application Server Standard Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00836-06
Interstage Application Server Standard Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2su 後日提供
Interstage Application Server Web-J Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 後日提供
Interstage Application Server Web-J Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00836-06
Interstage Application Server Web-J Edition V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2su 後日提供
Interstage Application Server Plus V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2 後日提供
Interstage Application Server Plus V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs4 T00836-06
Interstage Application Server Plus V7.0L10 RHEL-AS3(x86)/ ES3(x86) FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2 後日提供
Interstage Application Server Enterprise Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs4 T00836-06
Interstage Application Server Enterprise Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2su 後日提供
Interstage Application Server Standard Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2 後日提供
Interstage Application Server Standard Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs4 T00836-06
Interstage Application Server Standard Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2su 後日提供
Interstage Application Server Web-J Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2 後日提供
Interstage Application Server Web-J Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs4 T00836-06
Interstage Application Server Web-J Edition V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2su 後日提供
Interstage Application Server Plus V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2 後日提供
Interstage Application Server Plus V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs4 T00836-06
Interstage Application Server Plus V7.0L11 RHEL-AS3(x86)/ ES3(x86)/ AS4(x86) FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 8.0.0 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs4 T000682LP-02
Interstage Application Server Enterprise Edition 8.0.0 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs2su 後日提供
Interstage Application Server Standard-J Edition 8.0.0 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs4 T000683LP-02
Interstage Application Server Standard-J Edition 8.0.0 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 8.0.0 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs4 T000684LP-02
Interstage Application Server Web-J Edition 8.0.0 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 8.0.3 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs4 T000682LP-02
Interstage Application Server Enterprise Edition 8.0.3 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs2su 後日提供
Interstage Application Server Standard-J Edition 8.0.3 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs4 T000683LP-02
Interstage Application Server Standard-J Edition 8.0.3 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs2su 後日提供
Interstage Application Server Web-J Edition 8.0.3 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs4 T000684LP-02
Interstage Application Server Web-J Edition 8.0.3 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition V7.0L10 RHEL-AS4(IPF) FJSVjs4 T001343QP-01
Interstage Application Server Enterprise Edition V7.0L10 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 8.0.0 RHEL-AS4(IPF) FJSVjs4 T000109QP-03
Interstage Application Server Enterprise Edition 8.0.0 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 8.0.1 RHEL-AS4(IPF) FJSVjs4 T000681QP-02
Interstage Application Server Enterprise Edition 8.0.1 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Application Server Enterprise Edition 8.0.3 RHEL-AS4(IPF) FJSVjs4 T000681QP-02
Interstage Application Server Enterprise Edition 8.0.3 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Apworks
製品名 対象OS パッケージ名 Patch ID
Interstage Apworks Enterprise Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs4 TP09743
Interstage Apworks Enterprise Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Standard Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs4 TP09743
Interstage Apworks Standard Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Modelers-J Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs4 TP09743
Interstage Apworks Modelers-J Edition V6.0L10 Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Enterprise Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs4 TP09743
Interstage Apworks Enterprise Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Standard Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs4 TP09743
Interstage Apworks Standard Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Modelers-J Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs4 TP09743
Interstage Apworks Modelers-J Edition V6.0L10A Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Enterprise Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs4 TP09743
Interstage Apworks Enterprise Edition V6.0L10B Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Enterprise Edition V7.0L10 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs4 TP09768
Interstage Apworks Enterprise Edition V7.0L10 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Standard Edition V7.0L10 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs4 TP09768
Interstage Apworks Standard Edition V7.0L10 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Modelers-J Edition V7.0L10 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs4 TP09768
Interstage Apworks Modelers-J Edition V7.0L10 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Enterprise Edition 8.0.0 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs4 T000685WP-02
Interstage Apworks Enterprise Edition 8.0.0 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Standard-J Edition 8.0.1 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs4 T000686WP-02
Interstage Apworks Standard-J Edition 8.0.1 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs2su 後日提供
Interstage Apworks Enterprise Edition 8.1.0 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs4 T000685WP-02
Interstage Apworks Enterprise Edition 8.1.0 Windows Server 2003/ Windows 2000/ Windows XP F3FMjs2su 後日提供
Interstage Business Application Server
製品名 対象OS パッケージ名 Patch ID
Interstage Business Application Server Enterprise Edition 7.0 Solaris 8, 9 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Business Application Server Enterprise Edition 7.0 Solaris 8, 9 FJSVjs4 T020LS-07
Interstage Business Application Server Enterprise Edition 7.0 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Business Application Server Enterprise Edition 7.0.1 Solaris 8, 9 FJSVjs2 ダウンロードデータT031ES-01 (INTS-APSREE7.0_PUF_T031ES-01.tar.Z: 1.6MB)
Interstage Business Application Server Enterprise Edition 7.0.1 Solaris 8, 9 FJSVjs4 T020LS-07
Interstage Business Application Server Enterprise Edition 7.0.1 Solaris 8, 9 FJSVjs2su 後日提供
Interstage Business Application Server Enterprise Edition 8.0.0 Solaris 9, 10 FJSVjs4 T000572SP-06
Interstage Business Application Server Enterprise Edition 8.0.0 Solaris 9, 10 FJSVjs2su 後日提供
Interstage Business Application Server Enterprise Edition 8.0.1 Solaris 9, 10 FJSVjs4 T000572SP-06
Interstage Business Application Server Enterprise Edition 8.0.1 Solaris 9, 10 FJSVjs2su 後日提供
Interstage Business Application Server Standard Edition 8.0.0 Solaris 9, 10 FJSVjs4 T000572SP-06
Interstage Business Application Server Standard Edition 8.0.0 Solaris 9, 10 FJSVjs2su 後日提供
Interstage Business Application Server Standard Edition 8.0.0 Windows Server 2003/ Windows 2000 F3FMjs4 T000685WP-02
Interstage Business Application Server Standard Edition 8.0.0 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Business Application Server Standard Edition 8.0.1 Windows Server 2003/ Windows 2000 F3FMjs4 T000685WP-02
Interstage Business Application Server Standard Edition 8.0.1 Windows Server 2003/ Windows 2000 F3FMjs2su 後日提供
Interstage Business Application Server Standard Edition 8.0.0 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs4 T000682LP-02
Interstage Business Application Server Standard Edition 8.0.0 RHEL-AS4(x86)/ AS4(EM64T) FJSVjs2su 後日提供
Interstage Business Application Server Enterprise Edition 8.0.0 RHEL-AS4(IPF) FJSVjs4 T000109QP-03
Interstage Business Application Server Enterprise Edition 8.0.0 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Business Application Server Enterprise Edition 8.0.1 RHEL-AS4(IPF) FJSVjs4 T000681QP-02
Interstage Business Application Server Enterprise Edition 8.0.1 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Business Application Server Standard Edition 8.0.0 RHEL-AS4(IPF) FJSVjs4 T000109QP-03
Interstage Business Application Server Standard Edition 8.0.0 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Business Application Server Standard Edition 8.0.1 RHEL-AS4(IPF) FJSVjs4 T000109QP-03
Interstage Business Application Server Standard Edition 8.0.1 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Job Workload Server
製品名 対象OS パッケージ名 Patch ID
Interstage Job Workload Server 8.1.1 Solaris 9, 10 FJSVjs4 T000572SP-06
Interstage Job Workload Server 8.1.1 Solaris 9, 10 FJSVjs2su 後日提供
Interstage Job Workload Server 8.0.0 RHEL-AS4(IPF) FJSVjs4 T000109QP-03
Interstage Job Workload Server 8.0.0 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Job Workload Server 8.0.1 RHEL-AS4(IPF) FJSVjs4 T000109QP-03
Interstage Job Workload Server 8.0.1 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Job Workload Server 8.1.0 RHEL-AS4(IPF) FJSVjs4 T000109QP-03
Interstage Job Workload Server 8.1.0 RHEL-AS4(IPF) FJSVjs2su 後日提供
Interstage Job Workload Server 8.1.1 RHEL-AS4(IPF) FJSVjs4 T000681QP-02
Interstage Job Workload Server 8.1.1 RHEL-AS4(IPF) FJSVjs2su 後日提供
 Patch IDの表記のみの製品に関しては、当社サポートセンターにお問い合わせください。

4. 謝辞


この脆弱性情報をご指摘くださいました 株式会社セキュアスカイ・テクノロジー 福森 大喜 氏に謝意を評します。


5. 改版履歴


  • 2009年3月3日 第5版
    • 「3. 該当システム・パッチ情報」の「Patch ID」追加公開。
  • 2007年11月29日 第4版
    • 「3. 該当システム・パッチ情報」の下記製品のパッチを公開停止。
      「Interstage Application Server Enterprise Edition 7.0」 「T020LS-06」
      「Interstage Application Server Standard Edition 7.0」 「T020LS-06」
      「Interstage Application Server Web-J Edition 7.0」 「T020LS-06」
      「Interstage Application Server Plus 7.0」 「T020LS-06」
      「Interstage Application Server Enterprise Edition 7.0.1」 「T020LS-06」
      「Interstage Application Server Standard Edition 7.0.1」 「T020LS-06」
      「Interstage Application Server Web-J Edition 7.0.1」 「T020LS-06」
      「Interstage Application Server Plus 7.0.1」 「T020LS-06」
      「Interstage Application Server Enterprise Edition 8.0.0」 「T000572SP-01」
      「Interstage Application Server Standard-J Edition 8.0.0」 「T000573SP-01」
      「Interstage Application Server Web-J Edition 8.0.0」 「T000574SP-01」
      「Interstage Application Server Enterprise Edition V6.0L10」 「TP09494」
      「Interstage Application Server Standard Edition V6.0L10」 「TP09494」
      「Interstage Application Server Web-J Edition V6.0L10」 「TP09494」
      「Interstage Application Server Plus V6.0L10」 「TP09494」
      「Interstage Application Server Plus Developer V6.0L10」 「TP09494」
      「Interstage Application Server Web-J Edition V6.0L10A」 「TP09494」
      「Interstage Application Server Plus V6.0L10A」 「TP09494」
      「Interstage Application Server Enterprise Edition V6.0L10B」 「TP09494」
      「Interstage Application Server Standard Edition V6.0L10B」 「TP09494」
      「Interstage Application Server Web-J Edition V6.0L10B」 「TP09494」
      「Interstage Application Server Plus V6.0L10B」 「TP09494」
      「Interstage Application Server Enterprise Edition V6.0L10C」 「TP09494」
      「Interstage Application Server Standard Edition V6.0L10C」 「TP09494」
      「Interstage Application Server Web-J Edition V6.0L10C」 「TP09494」
      「Interstage Application Server Plus V6.0L10C」 「TP09494」
      「Interstage Application Server Enterprise Edition V6.0L10」 「T00274-05」
      「Interstage Application Server Standard Edition V6.0L10」 「T00274-05」
      「Interstage Application Server Web-J Edition V6.0L10」 「T00274-05」
      「Interstage Application Server Plus V6.0L10」 「T00274-05」
      「Interstage Application Server Web-J Edition V6.0L11」 「T00274-05」
      「Interstage Application Server Plus V6.0L11」 「T00274-05」
      「Interstage Application Server Enterprise Edition V7.0L10」 「T00836-04」
      「Interstage Application Server Standard Edition V7.0L10」 「T00836-04」
      「Interstage Application Server Web-J Edition V7.0L10」 「T00836-04」
      「Interstage Application Server Plus V7.0L10」 「T00836-04」
      「Interstage Application Server Enterprise Edition V7.0L11」 「T00836-04」
      「Interstage Application Server Standard Edition V7.0L11」 「T00836-04」
      「Interstage Application Server Web-J Edition V7.0L11」 「T00836-04」
      「Interstage Application Server Plus V7.0L11」 「T00836-04」
      「Interstage Application Framework Suite Standard Edition 7.0」 「T020LS-06」
      「Interstage Application Framework Suite Web Edition 7.0」 「T020LS-06」
      「Interstage Application Framework Suite Enterprise Edition 7.0.1」 「T020LS-06」
      「Interstage Application Framework Suite Standard Edition 7.0.2」 「T020LS-06」
      「Interstage Application Framework Suite Web Edition 7.0.2」 「T020LS-06」
      「Interstage Application Framework Suite Enterprise Edition V6.0L10」 「TP09494」
      「Interstage Application Framework Suite Standard Edition V6.0L10」 「TP09494」
      「Interstage Application Framework Suite Web Edition V6.0L10」 「TP09494」
      「Interstage Application Framework Suite Web Edition V6.0L10A」 「TP09494」
      「Interstage Application Framework Suite Enterprise Edition V6.0L10B」 「TP09494」
      「Interstage Application Framework Suite Standard Edition V6.0L10B」 「TP09494」
      「Interstage Application Framework Suite Web Edition V6.0L10B」 「TP09494」
      「Interstage Application Framework Suite Enterprise Edition V6.0L10C」 「TP09494」
      「Interstage Application Framework Suite Standard Edition V6.0L10C」 「TP09494」
      「Interstage Application Framework Suite Web Edition V6.0L10C」 「TP09494」
      「Interstage Application Framework Suite Enterprise Edition V6.0L10」 「T00274-05」
      「Interstage Application Framework Suite Standard Edition V6.0L10」 「T00274-05」
      「Interstage Application Framework Suite Web Edition V6.0L10」 「T00274-05」
      「Interstage Application Framework Suite Web Edition V6.0L11」 「T00274-05」
      「Interstage Application Framework Suite Standard Edition V7.0L10」 「T00836-04」
      「Interstage Application Framework Suite Web Edition V7.0L10」 「T00836-04」
      「Interstage Application Framework Suite Standard Edition V7.0L11」 「T00836-04」
      「Interstage Application Framework Suite Web Edition V7.0L11」 「T00836-04」
      「Interstage Apworks Enterprise Edition V6.0L10」 「TP09494」
      「Interstage Apworks Standard Edition V6.0L10」 「TP09494」
      「Interstage Apworks Modelers-J Edition V6.0L10」 「TP09494」
      「Interstage Apworks Enterprise Edition V6.0L10A」 「TP09494」
      「Interstage Apworks Standard Edition V6.0L10A」 「TP09494」
      「Interstage Apworks Modelers-J Edition V6.0L10A」 「TP09494」
      「Interstage Apworks Enterprise Edition V6.0L10B」 「TP09494」
      「Interstage Business Application Server Enterprise Edition 7.0」 「T020LS-06」
      「Interstage Business Application Server Enterprise Edition 7.0.1」 「T020LS-06」
      「Interstage Business Application Server Enterprise Edition 8.0.0」 「T000572SP-01」
      「Interstage Business Application Server Enterprise Edition 8.0.1」 「T000572SP-01」
      「Interstage Business Application Server Standard Edition 8.0.0」 「T000572SP-01」
      「Interstage Job Workload Server 8.1.1」 「T000572SP-01」
  • 2007年9月20日 第3版
    • 「3. 該当システム・パッチ情報」の下記製品のパッチを公開停止。
      「INTERSTAGE Application Server Enterprise Edition 4.1」「911892-15」
      「INTERSTAGE Application Server Standard Edition 4.1」「911893-15」
      「INTERSTAGE Application Server Web-J Edition 4.1」「911894-14」
    • 「3. 該当システム・パッチ情報」に 提供開始した 「Patch ID」 を追加。
    • 「3. 該当システム・パッチ情報」に下記製品を追加。
      「Interstage Application Server Enterprise Edition 8.0.3」
      「Interstage Application Server Standard-J Edition 8.0.3」
      「Interstage Application Server Web-J Edition 8.0.3」
      「Interstage Apworks Enterprise Edition V6.0L10B」
      「Interstage Apworks Enterprise Edition 8.1.0」
      「Interstage Business Application Server Enterprise Edition 8.0.1」
      「Interstage Job Workload Server 8.0.0」
      「Interstage Job Workload Server 8.0.1」
    • 「3. 該当システム・パッチ情報」から下記製品を削除。
      「Interstage Application Server Plus 8.0.0」
      「Interstage Business Application Server Enterprise Edition 7.0.2」
  • 2007年5月31日 第2版
    • 「3. 該当システム・パッチ情報」の「Patch ID」の一部を提供開始。
    • 「3. 該当システム・パッチ情報」に「Interstage Business Application Server Enterprise Edition 8.0.1」を追加。
  • 2007年3月19日 新規掲載