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

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

1.背景と問題点

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

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

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

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

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

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.0Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Framework Suite Enterprise Edition 6.0Solaris 7, 8, 9FJSVjs4-
Interstage Application Framework Suite Enterprise Edition 6.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Framework Suite Standard Edition 6.0Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Framework Suite Standard Edition 6.0Solaris 7, 8, 9FJSVjs4-
Interstage Application Framework Suite Standard Edition 6.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Framework Suite Web Edition 6.0Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Framework Suite Web Edition 6.0Solaris 7, 8, 9FJSVjs4-
Interstage Application Framework Suite Web Edition 6.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Framework Suite Enterprise Edition 6.0.1Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Framework Suite Enterprise Edition 6.0.1Solaris 7, 8, 9FJSVjs4T0163S-07
Interstage Application Framework Suite Enterprise Edition 6.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Framework Suite Standard Edition 6.0.1Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Framework Suite Standard Edition 6.0.1Solaris 7, 8, 9FJSVjs4T0163S-07
Interstage Application Framework Suite Standard Edition 6.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Framework Suite Web Edition 6.0.1Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Framework Suite Web Edition 6.0.1Solaris 7, 8, 9FJSVjs4T0163S-07
Interstage Application Framework Suite Web Edition 6.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Framework Suite Enterprise Edition 6.0.2Solaris 7, 8, 9FJSVjs2T036BS-01
Interstage Application Framework Suite Enterprise Edition 6.0.2Solaris 7, 8, 9FJSVjs4T0315S-01
Interstage Application Framework Suite Enterprise Edition 6.0.2Solaris 7, 8, 9FJSVjs2su-
Interstage Application Framework Suite Standard Edition 6.0.2Solaris 7, 8, 9FJSVjs2T036BS-01
Interstage Application Framework Suite Standard Edition 6.0.2Solaris 7, 8, 9FJSVjs4T0315S-01
Interstage Application Framework Suite Standard Edition 6.0.2Solaris 7, 8, 9FJSVjs2su-
Interstage Application Framework Suite Web Edition 6.0.2Solaris 7, 8, 9FJSVjs2T036BS-01
Interstage Application Framework Suite Web Edition 6.0.2Solaris 7, 8, 9FJSVjs4T0315S-01
Interstage Application Framework Suite Web Edition 6.0.2Solaris 7, 8, 9FJSVjs2su-
Interstage Application Framework Suite Standard Edition 7.0Solaris 8, 9FJSVjs2T031ES-01
Interstage Application Framework Suite Standard Edition 7.0Solaris 8, 9FJSVjs4T020LS-07
Interstage Application Framework Suite Standard Edition 7.0Solaris 8, 9FJSVjs2su-
Interstage Application Framework Suite Web Edition 7.0Solaris 8, 9FJSVjs2T031ES-01
Interstage Application Framework Suite Web Edition 7.0Solaris 8, 9FJSVjs4T020LS-07
Interstage Application Framework Suite Web Edition 7.0Solaris 8, 9FJSVjs2su-
Interstage Application Framework Suite Enterprise Edition 7.0.1Solaris 8, 9, 10FJSVjs2T031ES-01
Interstage Application Framework Suite Enterprise Edition 7.0.1Solaris 8, 9, 10FJSVjs4T020LS-07
Interstage Application Framework Suite Enterprise Edition 7.0.1Solaris 8, 9, 10FJSVjs2su-
Interstage Application Framework Suite Standard Edition 7.0.2Solaris 8, 9, 10FJSVjs2T031ES-01
Interstage Application Framework Suite Standard Edition 7.0.2Solaris 8, 9, 10FJSVjs4T020LS-07
Interstage Application Framework Suite Standard Edition 7.0.2Solaris 8, 9, 10FJSVjs2su-
Interstage Application Framework Suite Web Edition 7.0.2Solaris 8, 9, 10FJSVjs2T031ES-01
Interstage Application Framework Suite Web Edition 7.0.2Solaris 8, 9, 10FJSVjs4T020LS-07
Interstage Application Framework Suite Web Edition 7.0.2Solaris 8, 9, 10FJSVjs2su-
Interstage Application Framework Suite Enterprise Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Enterprise Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Enterprise Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Standard Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Standard Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Standard Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Web Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Web Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Web Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Web Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Web Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Web Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Enterprise Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Enterprise Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Enterprise Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Standard Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Standard Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Standard Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Web Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Web Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Web Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Enterprise Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Enterprise Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Enterprise Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Standard Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Standard Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Standard Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Web Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Framework Suite Web Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Framework Suite Web Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Framework Suite Standard Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Framework Suite Standard Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Framework Suite Standard Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Framework Suite Web Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Framework Suite Web Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Framework Suite Web Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Framework Suite Standard Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Framework Suite Standard Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Framework Suite Standard Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Framework Suite Web Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Framework Suite Web Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Framework Suite Web Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Framework Suite Enterprise Edition V6.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T00408-04
Interstage Application Framework Suite Enterprise Edition V6.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00274-06
Interstage Application Framework Suite Enterprise Edition V6.0L10RHEL-AS3(x86)/ AS3(x86)FJSVjs2suT01188-01
Interstage Application Framework Suite Standard Edition V6.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T00408-04
Interstage Application Framework Suite Standard Edition V6.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00274-06
Interstage Application Framework Suite Standard Edition V6.0L10RHEL-AS3(x86)/ AS3(x86)FJSVjs2suT01188-01
Interstage Application Framework Suite Web Edition V6.0L10RHEL-AS2.1(x86)/ ES2.1(x86)FJSVjs2T00408-04
Interstage Application Framework Suite Web Edition V6.0L10RHEL-AS2.1(x86)/ ES2.1(x86)FJSVjs4T00274-06
Interstage Application Framework Suite Web Edition V6.0L10RHEL-AS2.1(x86)/ ES2.1(x86)FJSVjs2suT01188-01
Interstage Application Framework Suite Web Edition V6.0L11RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86)FJSVjs2T00408-04
Interstage Application Framework Suite Web Edition V6.0L11RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86)FJSVjs4T00274-06
Interstage Application Framework Suite Web Edition V6.0L11RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86)FJSVjs2suT01188-01
Interstage Application Framework Suite Standard Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T01465-01
Interstage Application Framework Suite Standard Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00836-06
Interstage Application Framework Suite Standard Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2su-
Interstage Application Framework Suite Web Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T01465-01
Interstage Application Framework Suite Web Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00836-06
Interstage Application Framework Suite Web Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2su-
Interstage Application Framework Suite Standard Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2T01465-01
Interstage Application Framework Suite Standard Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs4T00836-06
Interstage Application Framework Suite Standard Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2su-
Interstage Application Framework Suite Web Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2T01465-01
Interstage Application Framework Suite Web Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs4T00836-06
Interstage Application Framework Suite Web Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2su-
Interstage Application Server
製品名対象OSパッケージ名Patch ID
INTERSTAGE Application Server Enterprise Edition 3.0Solaris 2.6, 7, 8FJSVjs2910679-19
INTERSTAGE Application Server Standard Edition 3.0Solaris 2.6, 7, 8FJSVjs2910675-19
INTERSTAGE Application Server Enterprise Edition 3.1Solaris 2.6, 7, 8FJSVjs2911111-20
INTERSTAGE Application Server Standard Edition 3.1Solaris 2.6, 7, 8FJSVjs2911112-20
INTERSTAGE Application Server Web-J Edition 3.1Solaris 2.6, 7, 8FJSVjs2911120-20
INTERSTAGE Application Server Enterprise Edition 4.0Solaris 2.6, 7, 8FJSVjs2911367-11
INTERSTAGE Application Server Standard Edition 4.0Solaris 2.6, 7, 8FJSVjs2911368-11
INTERSTAGE Application Server Web-J Edition 4.0Solaris 2.6, 7, 8FJSVjs2911562-10
INTERSTAGE Application Server Enterprise Edition 4.1Solaris 2.6, 7, 8FJSVjs2911892-16
INTERSTAGE Application Server Standard Edition 4.1Solaris 2.6, 7, 8FJSVjs2911893-16
INTERSTAGE Application Server Web-J Edition 4.1Solaris 2.6, 7, 8FJSVjs2911894-15
Interstage Application Server Enterprise Edition 5.0Solaris 7, 8, 9FJSVjs2912193-11
Interstage Application Server Enterprise Edition 5.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Standard Edition 5.0Solaris 7, 8, 9FJSVjs2912194-11
Interstage Application Server Standard Edition 5.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Web-J Edition 5.0Solaris 7, 8, 9FJSVjs2912195-11
Interstage Application Server Web-J Edition 5.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Enterprise Edition 5.0.1Solaris 7, 8, 9FJSVjs2912616-10
Interstage Application Server Enterprise Edition 5.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Standard Edition 5.0.1Solaris 7, 8, 9FJSVjs2912617-10
Interstage Application Server Standard Edition 5.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Web-J Edition 5.0.1Solaris 7, 8, 9FJSVjs2912618-10
Interstage Application Server Web-J Edition 5.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Enterprise Edition 5.1Solaris 7, 8, 9FJSVjs2912877-15
Interstage Application Server Enterprise Edition 5.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Standard Edition 5.1Solaris 7, 8, 9FJSVjs2912878-15
Interstage Application Server Standard Edition 5.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Web-J Edition 5.1Solaris 7, 8, 9FJSVjs2912879-12
Interstage Application Server Web-J Edition 5.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Plus 5.1Solaris 7, 8, 9FJSVjs2912880-15
Interstage Application Server Plus 5.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Enterprise Edition 5.1.1Solaris 7, 8, 9FJSVjs2912877-15
Interstage Application Server Enterprise Edition 5.1.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Standard Edition 5.1.1Solaris 7, 8, 9FJSVjs2912878-15
Interstage Application Server Standard Edition 5.1.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Web-J Edition 5.1.1Solaris 7, 8, 9FJSVjs2912879-12
Interstage Application Server Web-J Edition 5.1.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Plus 5.1.1Solaris 7, 8, 9FJSVjs2912880-15
Interstage Application Server Plus 5.1.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Enterprise Edition 6.0Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Server Enterprise Edition 6.0Solaris 7, 8, 9FJSVjs4T0114S-06
Interstage Application Server Enterprise Edition 6.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Standard Edition 6.0Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Server Standard Edition 6.0Solaris 7, 8, 9FJSVjs4T0114S-06
Interstage Application Server Standard Edition 6.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Web-J Edition 6.0Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Server Web-J Edition 6.0Solaris 7, 8, 9FJSVjs4T0114S-06
Interstage Application Server Web-J Edition 6.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Plus 6.0Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Server Plus 6.0Solaris 7, 8, 9FJSVjs4T0114S-06
Interstage Application Server Plus 6.0Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Enterprise Edition 6.0.1Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Server Enterprise Edition 6.0.1Solaris 7, 8, 9FJSVjs4T0163S-07
Interstage Application Server Enterprise Edition 6.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Standard Edition 6.0.1Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Server Standard Edition 6.0.1Solaris 7, 8, 9FJSVjs4T0163S-07
Interstage Application Server Standard Edition 6.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Web-J Edition 6.0.1Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Server Web-J Edition 6.0.1Solaris 7, 8, 9FJSVjs4T0163S-07
Interstage Application Server Web-J Edition 6.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Plus 6.0.1Solaris 7, 8, 9FJSVjs2T011US-06
Interstage Application Server Plus 6.0.1Solaris 7, 8, 9FJSVjs4T0163S-07
Interstage Application Server Plus 6.0.1Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Enterprise Edition 6.0.2Solaris 7, 8, 9FJSVjs2T036BS-01
Interstage Application Server Enterprise Edition 6.0.2Solaris 7, 8, 9FJSVjs4T0315S-01
Interstage Application Server Enterprise Edition 6.0.2Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Standard Edition 6.0.2Solaris 7, 8, 9FJSVjs2T036BS-01
Interstage Application Server Standard Edition 6.0.2Solaris 7, 8, 9FJSVjs4T0315S-01
Interstage Application Server Standard Edition 6.0.2Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Web-J Edition 6.0.2Solaris 7, 8, 9FJSVjs2T036BS-01
Interstage Application Server Web-J Edition 6.0.2Solaris 7, 8, 9FJSVjs4T0315S-01
Interstage Application Server Web-J Edition 6.0.2Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Plus 6.0.2Solaris 7, 8, 9FJSVjs2T036BS-01
Interstage Application Server Plus 6.0.2Solaris 7, 8, 9FJSVjs4T0315S-01
Interstage Application Server Plus 6.0.2Solaris 7, 8, 9FJSVjs2su-
Interstage Application Server Enterprise Edition 7.0Solaris 8, 9FJSVjs2T031ES-01
Interstage Application Server Enterprise Edition 7.0Solaris 8, 9FJSVjs4T020LS-07
Interstage Application Server Enterprise Edition 7.0Solaris 8, 9FJSVjs2su-
Interstage Application Server Standard Edition 7.0Solaris 8, 9FJSVjs2T031ES-01
Interstage Application Server Standard Edition 7.0Solaris 8, 9FJSVjs4T020LS-07
Interstage Application Server Standard Edition 7.0Solaris 8, 9FJSVjs2su-
Interstage Application Server Web-J Edition 7.0Solaris 8, 9FJSVjs2T031ES-01
Interstage Application Server Web-J Edition 7.0Solaris 8, 9FJSVjs4T020LS-07
Interstage Application Server Web-J Edition 7.0Solaris 8, 9FJSVjs2su-
Interstage Application Server Plus 7.0Solaris 8, 9FJSVjs2T031ES-01
Interstage Application Server Plus 7.0Solaris 8, 9FJSVjs4T020LS-07
Interstage Application Server Plus 7.0Solaris 8, 9FJSVjs2su-
Interstage Application Server Enterprise Edition 7.0.1Solaris 8, 9, 10FJSVjs2T031ES-01
Interstage Application Server Enterprise Edition 7.0.1Solaris 8, 9, 10FJSVjs4T020LS-07
Interstage Application Server Enterprise Edition 7.0.1Solaris 8, 9, 10FJSVjs2su-
Interstage Application Server Standard Edition 7.0.1Solaris 8, 9, 10FJSVjs2T031ES-01
Interstage Application Server Standard Edition 7.0.1Solaris 8, 9, 10FJSVjs4T020LS-07
Interstage Application Server Standard Edition 7.0.1Solaris 8, 9, 10FJSVjs2su-
Interstage Application Server Web-J Edition 7.0.1Solaris 8, 9, 10FJSVjs2T031ES-01
Interstage Application Server Web-J Edition 7.0.1Solaris 8, 9, 10FJSVjs4T020LS-07
Interstage Application Server Web-J Edition 7.0.1Solaris 8, 9, 10FJSVjs2su-
Interstage Application Server Plus 7.0.1Solaris 8, 9, 10FJSVjs2T031ES-01
Interstage Application Server Plus 7.0.1Solaris 8, 9, 10FJSVjs4T020LS-07
Interstage Application Server Plus 7.0.1Solaris 8, 9, 10FJSVjs2su-
Interstage Application Server Enterprise Edition 8.0.0Solaris 9, 10FJSVjs4T000572SP-06
Interstage Application Server Enterprise Edition 8.0.0Solaris 9, 10FJSVjs2su-
Interstage Application Server Standard-J Edition 8.0.0Solaris 9, 10FJSVjs4T000573SP-06
Interstage Application Server Standard-J Edition 8.0.0Solaris 9, 10FJSVjs2su-
Interstage Application Server Web-J Edition 8.0.0Solaris 9, 10FJSVjs4T000574SP-06
Interstage Application Server Web-J Edition 8.0.0Solaris 9, 10FJSVjs2su-
INTERSTAGE Application Server Enterprise Edition V3.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2TK00469
INTERSTAGE Application Server Standard Edition V3.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2TK00469
INTERSTAGE Application Server Web Edition V3.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2TK00469
INTERSTAGE Application Server Enterprise Edition V3.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK00454
INTERSTAGE Application Server Standard Edition V3.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK00454
INTERSTAGE Application Server Web Edition V3.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK00454
INTERSTAGE Application Server Web-J Edition V3.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK00454
INTERSTAGE Application Server Enterprise Edition V4.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2TK10454
INTERSTAGE Application Server Standard Edition V4.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2TK10454
INTERSTAGE Application Server Web-J Edition V4.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2TK10454
INTERSTAGE Application Server Enterprise Edition V4.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK20454
INTERSTAGE Application Server Standard Edition V4.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK20454
INTERSTAGE Application Server Web-J Edition V4.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK20454
Interstage Application Server Enterprise Edition V5.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Enterprise Edition V5.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Standard Edition V5.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Standard Edition V5.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Web-J Edition V5.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Web-J Edition V5.0L10Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Enterprise Edition V5.0L10AWindows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Enterprise Edition V5.0L10AWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Standard Edition V5.0L10AWindows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Standard Edition V5.0L10AWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Web-J Edition V5.0L10AWindows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Web-J Edition V5.0L10AWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Enterprise Edition V5.0L10BWindows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Enterprise Edition V5.0L10BWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Standard Edition V5.0L10BWindows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Standard Edition V5.0L10BWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Web-J Edition V5.0L10BWindows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Web-J Edition V5.0L10BWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Enterprise Edition V5.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK00458
Interstage Application Server Enterprise Edition V5.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Standard Edition V5.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK10458
Interstage Application Server Standard Edition V5.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Web-J Edition V5.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK10458
Interstage Application Server Web-J Edition V5.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Plus V5.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2TK10458
Interstage Application Server Plus V5.0L20Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Plus Developer V5.0L20Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2TK10458
Interstage Application Server Plus Developer V5.0L20Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2su-
Interstage Application Server Enterprise Edition V5.0L20AWindows 2000/ Windows NT Server 4.0F3FMjs2TK10458
Interstage Application Server Enterprise Edition V5.0L20AWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Standard Edition V5.0L20AWindows 2000/ Windows NT Server 4.0F3FMjs2TK10458
Interstage Application Server Standard Edition V5.0L20AWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Web-J Edition V5.0L20AWindows 2000/ Windows NT Server 4.0F3FMjs2TK10458
Interstage Application Server Web-J Edition V5.0L20AWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Plus V5.0L20AWindows 2000/ Windows NT Server 4.0F3FMjs2TK10458
Interstage Application Server Plus V5.0L20AWindows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Enterprise Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Enterprise Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Enterprise Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Standard Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Standard Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Standard Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Web-J Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Web-J Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Web-J Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Plus V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Plus V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Plus V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Plus Developer V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs4TP09743
Interstage Application Server Plus Developer V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2su-
Interstage Application Server Web-J Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Web-J Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Web-J Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Plus V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Plus V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Plus V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Enterprise Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Enterprise Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Enterprise Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Standard Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Standard Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Standard Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Web-J Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Web-J Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Web-J Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Plus V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Plus V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Plus V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Enterprise Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Enterprise Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Enterprise Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Standard Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Standard Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Standard Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Web-J Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Web-J Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Web-J Edition V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Plus V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2TK20458
Interstage Application Server Plus V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs4TP09743
Interstage Application Server Plus V6.0L10CWindows Server 2003/ Windows 2000/ Windows NT Server 4.0F3FMjs2su-
Interstage Application Server Enterprise Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Server Enterprise Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Server Enterprise Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Standard Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Server Standard Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Server Standard Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Web-J Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Server Web-J Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Server Web-J Edition V7.0L10Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Plus V7.0L10Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Server Plus V7.0L10Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Server Plus V7.0L10Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Plus Developer V7.0L10Windows Server 2003/ Windows 2000/ Windows XPF3FMjs4TP09768
Interstage Application Server Plus Developer V7.0L10Windows Server 2003/ Windows 2000/ Windows XPF3FMjs2su-
Interstage Application Server Web-J Edition V7.0L10AWindows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Server Web-J Edition V7.0L10AWindows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Server Web-J Edition V7.0L10AWindows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Enterprise Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Server Enterprise Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Server Enterprise Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Standard Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Server Standard Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Server Standard Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Web-J Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Server Web-J Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Server Web-J Edition V7.0L11Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Plus V7.0L11Windows Server 2003/ Windows 2000F3FMjs2TK00468
Interstage Application Server Plus V7.0L11Windows Server 2003/ Windows 2000F3FMjs4TP09768
Interstage Application Server Plus V7.0L11Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Enterprise Edition 8.0.0Windows Server 2003/ Windows 2000F3FMjs4T000685WP-02
Interstage Application Server Enterprise Edition 8.0.0Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Standard-J Edition 8.0.0Windows Server 2003/ Windows 2000F3FMjs4T000686WP-02
Interstage Application Server Standard-J Edition 8.0.0Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Web-J Edition 8.0.0Windows Server 2003/ Windows 2000F3FMjs4T000687WP-02
Interstage Application Server Web-J Edition 8.0.0Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Enterprise Edition 8.0.1Windows Server 2003/ Windows 2000F3FMjs4T000685WP-02
Interstage Application Server Enterprise Edition 8.0.1Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Standard-J Edition 8.0.1Windows Server 2003/ Windows 2000F3FMjs4T000686WP-02
Interstage Application Server Standard-J Edition 8.0.1Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Web-J Edition 8.0.1Windows Server 2003/ Windows 2000F3FMjs4T000687WP-02
Interstage Application Server Web-J Edition 8.0.1Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Enterprise Edition 8.0.3Windows Server 2003/ Windows 2000F3FMjs4T000685WP-02
Interstage Application Server Enterprise Edition 8.0.3Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Standard-J Edition 8.0.3Windows Server 2003/ Windows 2000F3FMjs4T000686WP-02
Interstage Application Server Standard-J Edition 8.0.3Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Application Server Web-J Edition 8.0.3Windows Server 2003/ Windows 2000F3FMjs4T000687WP-02
Interstage Application Server Web-J Edition 8.0.3Windows Server 2003/ Windows 2000F3FMjs2su-
INTERSTAGE Application Server Web-J Edition 3.1Turbolinux 6.1FJSVjs2-
INTERSTAGE Application Server Web-J Edition 3.1.1Turbolinux 6.1/ RedHat Linux 6.2J/ 7JFJSVjs2-
INTERSTAGE Application Server Web-J Edition 4.0Turbolinux 6.1/ 6.5FJSVjs2-
INTERSTAGE Application Server Enterprise Edition 4.1Turbolinux 7/ RedHat Linux 7.2FJSVjs2-
INTERSTAGE Application Server Standard Edition 4.1Turbolinux 7/ RedHat Linux 7.2FJSVjs2-
INTERSTAGE Application Server Web-J Edition 4.1Turbolinux 6.1/ 6.5/ 7/ RedHat Linux 7.2FJSVjs2-
Interstage Application Server Enterprise Edition V5.0L10Turbolinux 7FJSVjs2-
Interstage Application Server Enterprise Edition V5.0L10Turbolinux 7FJSVjs2su-
Interstage Application Server Standard Edition V5.0L10Turbolinux 7FJSVjs2T00116-04
Interstage Application Server Standard Edition V5.0L10Turbolinux 7FJSVjs2su-
Interstage Application Server Web-J Edition V5.0L10Turbolinux 7FJSVjs2T00116-04
Interstage Application Server Web-J Edition V5.0L10Turbolinux 7FJSVjs2su-
Interstage Application Server Enterprise Edition V5.0L11Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2T00024-05
Interstage Application Server Enterprise Edition V5.0L11Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2su-
Interstage Application Server Standard Edition V5.0L11Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2T00024-05
Interstage Application Server Standard Edition V5.0L11Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2su-
Interstage Application Server Web-J Edition V5.0L11Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2T00024-05
Interstage Application Server Web-J Edition V5.0L11Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2su-
Interstage Application Server Enterprise Edition V5.0L20Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2T00117-05
Interstage Application Server Enterprise Edition V5.0L20Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2su-
Interstage Application Server Standard Edition V5.0L20Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2T00117-05
Interstage Application Server Standard Edition V5.0L20Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2su-
Interstage Application Server Web-J Edition V5.0L20Turbolinux 7, 8/ RHEL-AS2.1(x86)FJSVjs2T00117-05
Interstage Application Server Web-J Edition V5.0L20Turbolinux 7, 8/ RHEL-AS2.1(x86)FJSVjs2su-
Interstage Application Server Plus V5.0L20Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2T00117-05
Interstage Application Server Plus V5.0L20Turbolinux 7/ RHEL-AS2.1(x86)FJSVjs2su-
Interstage Application Server Enterprise Edition V6.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T00408-04
Interstage Application Server Enterprise Edition V6.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00274-06
Interstage Application Server Enterprise Edition V6.0L10RHEL-AS3(x86)/ AS3(x86)FJSVjs2suT01188-01
Interstage Application Server Standard Edition V6.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T00408-04
Interstage Application Server Standard Edition V6.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00274-06
Interstage Application Server Standard Edition V6.0L10RHEL-AS3(x86)/ AS3(x86)FJSVjs2suT01188-01
Interstage Application Server Web-J Edition V6.0L10RHEL-AS2.1(x86)/ ES2.1(x86)FJSVjs2T00408-04
Interstage Application Server Web-J Edition V6.0L10RHEL-AS2.1(x86)/ ES2.1(x86)FJSVjs4T00274-06
Interstage Application Server Web-J Edition V6.0L10RHEL-AS2.1(x86)/ ES2.1(x86)FJSVjs2suT01188-01
Interstage Application Server Plus V6.0L10RHEL-AS2.1(x86)/ ES2.1(x86)FJSVjs2T00408-04
Interstage Application Server Plus V6.0L10RHEL-AS2.1(x86)/ ES2.1(x86)FJSVjs4T00274-06
Interstage Application Server Plus V6.0L10RHEL-AS2.1(x86)/ ES2.1(x86)FJSVjs2suT01188-01
Interstage Application Server Web-J Edition V6.0L11RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86)FJSVjs2T00408-04
Interstage Application Server Web-J Edition V6.0L11RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86)FJSVjs4T00274-06
Interstage Application Server Web-J Edition V6.0L11RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86)FJSVjs2suT01188-01
Interstage Application Server Plus V6.0L11RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86)FJSVjs2T00408-04
Interstage Application Server Plus V6.0L11RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86)FJSVjs4T00274-06
Interstage Application Server Plus V6.0L11RHEL-AS2.1(x86)/ ES2.1(x86)/ AS3(x86)/ ES3(x86)FJSVjs2suT01188-01
Interstage Application Server Enterprise Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T01465-01
Interstage Application Server Enterprise Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00836-06
Interstage Application Server Enterprise Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2su-
Interstage Application Server Standard Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T01465-01
Interstage Application Server Standard Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00836-06
Interstage Application Server Standard Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2su-
Interstage Application Server Web-J Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T01465-01
Interstage Application Server Web-J Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00836-06
Interstage Application Server Web-J Edition V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2su-
Interstage Application Server Plus V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2T01465-01
Interstage Application Server Plus V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs4T00836-06
Interstage Application Server Plus V7.0L10RHEL-AS3(x86)/ ES3(x86)FJSVjs2su-
Interstage Application Server Enterprise Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2T01465-01
Interstage Application Server Enterprise Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs4T00836-06
Interstage Application Server Enterprise Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2su-
Interstage Application Server Standard Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2T01465-01
Interstage Application Server Standard Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs4T00836-06
Interstage Application Server Standard Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2su-
Interstage Application Server Web-J Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2T01465-01
Interstage Application Server Web-J Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs4T00836-06
Interstage Application Server Web-J Edition V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2su-
Interstage Application Server Plus V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2T01465-01
Interstage Application Server Plus V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs4T00836-06
Interstage Application Server Plus V7.0L11RHEL-AS3(x86)/ ES3(x86)/ AS4(x86)FJSVjs2su-
Interstage Application Server Enterprise Edition 8.0.0RHEL-AS4(x86)/ AS4(EM64T)FJSVjs4T000682LP-02
Interstage Application Server Enterprise Edition 8.0.0RHEL-AS4(x86)/ AS4(EM64T)FJSVjs2su-
Interstage Application Server Standard-J Edition 8.0.0RHEL-AS4(x86)/ AS4(EM64T)FJSVjs4T000683LP-02
Interstage Application Server Standard-J Edition 8.0.0RHEL-AS4(x86)/ AS4(EM64T)FJSVjs2su-
Interstage Application Server Web-J Edition 8.0.0RHEL-AS4(x86)/ AS4(EM64T)FJSVjs4T000684LP-02
Interstage Application Server Web-J Edition 8.0.0RHEL-AS4(x86)/ AS4(EM64T)FJSVjs2su-
Interstage Application Server Enterprise Edition 8.0.3RHEL-AS4(x86)/ AS4(EM64T)FJSVjs4T000682LP-02
Interstage Application Server Enterprise Edition 8.0.3RHEL-AS4(x86)/ AS4(EM64T)FJSVjs2su-
Interstage Application Server Standard-J Edition 8.0.3RHEL-AS4(x86)/ AS4(EM64T)FJSVjs4T000683LP-02
Interstage Application Server Standard-J Edition 8.0.3RHEL-AS4(x86)/ AS4(EM64T)FJSVjs2su-
Interstage Application Server Web-J Edition 8.0.3RHEL-AS4(x86)/ AS4(EM64T)FJSVjs4T000684LP-02
Interstage Application Server Web-J Edition 8.0.3RHEL-AS4(x86)/ AS4(EM64T)FJSVjs2su-
Interstage Application Server Enterprise Edition V7.0L10RHEL-AS4(IPF)FJSVjs4T001343QP-01
Interstage Application Server Enterprise Edition V7.0L10RHEL-AS4(IPF)FJSVjs2su-
Interstage Application Server Enterprise Edition 8.0.0RHEL-AS4(IPF)FJSVjs4T000109QP-03
Interstage Application Server Enterprise Edition 8.0.0RHEL-AS4(IPF)FJSVjs2su-
Interstage Application Server Enterprise Edition 8.0.1RHEL-AS4(IPF)FJSVjs4T000681QP-02
Interstage Application Server Enterprise Edition 8.0.1RHEL-AS4(IPF)FJSVjs2su-
Interstage Application Server Enterprise Edition 8.0.3RHEL-AS4(IPF)FJSVjs4T000681QP-02
Interstage Application Server Enterprise Edition 8.0.3RHEL-AS4(IPF)FJSVjs2su-
Interstage Apworks
製品名対象OSパッケージ名Patch ID
Interstage Apworks Enterprise Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs4TP09743
Interstage Apworks Enterprise Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2su-
Interstage Apworks Standard Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs4TP09743
Interstage Apworks Standard Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2su-
Interstage Apworks Modelers-J Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs4TP09743
Interstage Apworks Modelers-J Edition V6.0L10Windows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2su-
Interstage Apworks Enterprise Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs4TP09743
Interstage Apworks Enterprise Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2su-
Interstage Apworks Standard Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs4TP09743
Interstage Apworks Standard Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2su-
Interstage Apworks Modelers-J Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs4TP09743
Interstage Apworks Modelers-J Edition V6.0L10AWindows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2su-
Interstage Apworks Enterprise Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs4TP09743
Interstage Apworks Enterprise Edition V6.0L10BWindows Server 2003/ Windows 2000/ Windows NT Server 4.0/ Windows XPF3FMjs2su-
Interstage Apworks Enterprise Edition V7.0L10Windows Server 2003/ Windows 2000/ Windows XPF3FMjs4TP09768
Interstage Apworks Enterprise Edition V7.0L10Windows Server 2003/ Windows 2000/ Windows XPF3FMjs2su-
Interstage Apworks Standard Edition V7.0L10Windows Server 2003/ Windows 2000/ Windows XPF3FMjs4TP09768
Interstage Apworks Standard Edition V7.0L10Windows Server 2003/ Windows 2000/ Windows XPF3FMjs2su-
Interstage Apworks Modelers-J Edition V7.0L10Windows Server 2003/ Windows 2000/ Windows XPF3FMjs4TP09768
Interstage Apworks Modelers-J Edition V7.0L10Windows Server 2003/ Windows 2000/ Windows XPF3FMjs2su-
Interstage Apworks Enterprise Edition 8.0.0Windows Server 2003/ Windows 2000/ Windows XPF3FMjs4T000685WP-02
Interstage Apworks Enterprise Edition 8.0.0Windows Server 2003/ Windows 2000/ Windows XPF3FMjs2su-
Interstage Apworks Standard-J Edition 8.0.1Windows Server 2003/ Windows 2000/ Windows XPF3FMjs4T000686WP-02
Interstage Apworks Standard-J Edition 8.0.1Windows Server 2003/ Windows 2000/ Windows XPF3FMjs2su-
Interstage Apworks Enterprise Edition 8.1.0Windows Server 2003/ Windows 2000/ Windows XPF3FMjs4T000685WP-02
Interstage Apworks Enterprise Edition 8.1.0Windows Server 2003/ Windows 2000/ Windows XPF3FMjs2su-
Interstage Business Application Server
製品名対象OSパッケージ名Patch ID
Interstage Business Application Server Enterprise Edition 7.0Solaris 8, 9FJSVjs2T031ES-01
Interstage Business Application Server Enterprise Edition 7.0Solaris 8, 9FJSVjs4T020LS-07
Interstage Business Application Server Enterprise Edition 7.0Solaris 8, 9FJSVjs2su-
Interstage Business Application Server Enterprise Edition 7.0.1Solaris 8, 9FJSVjs2T031ES-01
Interstage Business Application Server Enterprise Edition 7.0.1Solaris 8, 9FJSVjs4T020LS-07
Interstage Business Application Server Enterprise Edition 7.0.1Solaris 8, 9FJSVjs2su-
Interstage Business Application Server Enterprise Edition 8.0.0Solaris 9, 10FJSVjs4T000572SP-06
Interstage Business Application Server Enterprise Edition 8.0.0Solaris 9, 10FJSVjs2su-
Interstage Business Application Server Enterprise Edition 8.0.1Solaris 9, 10FJSVjs4T000572SP-06
Interstage Business Application Server Enterprise Edition 8.0.1Solaris 9, 10FJSVjs2su-
Interstage Business Application Server Standard Edition 8.0.0Solaris 9, 10FJSVjs4T000572SP-06
Interstage Business Application Server Standard Edition 8.0.0Solaris 9, 10FJSVjs2su-
Interstage Business Application Server Standard Edition 8.0.0Windows Server 2003/ Windows 2000F3FMjs4T000685WP-02
Interstage Business Application Server Standard Edition 8.0.0Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Business Application Server Standard Edition 8.0.1Windows Server 2003/ Windows 2000F3FMjs4T000685WP-02
Interstage Business Application Server Standard Edition 8.0.1Windows Server 2003/ Windows 2000F3FMjs2su-
Interstage Business Application Server Standard Edition 8.0.0RHEL-AS4(x86)FJSVjs4T000682LP-02
Interstage Business Application Server Standard Edition 8.0.0RHEL-AS4(x86)FJSVjs2su-
Interstage Business Application Server Enterprise Edition 8.0.0RHEL-AS4(IPF)FJSVjs4T000109QP-03
Interstage Business Application Server Enterprise Edition 8.0.0RHEL-AS4(IPF)FJSVjs2su-
Interstage Business Application Server Enterprise Edition 8.0.1RHEL-AS4(IPF)FJSVjs4T000681QP-02
Interstage Business Application Server Enterprise Edition 8.0.1RHEL-AS4(IPF)FJSVjs2su-
Interstage Business Application Server Standard Edition 8.0.0RHEL-AS4(IPF)FJSVjs4T000109QP-03
Interstage Business Application Server Standard Edition 8.0.0RHEL-AS4(IPF)FJSVjs2su-
Interstage Business Application Server Standard Edition 8.0.1RHEL-AS4(IPF)FJSVjs4T000109QP-03
Interstage Business Application Server Standard Edition 8.0.1RHEL-AS4(IPF)FJSVjs2su-
Interstage Job Workload Server
製品名対象OSパッケージ名Patch ID
Interstage Job Workload Server 8.1.1Solaris 10FJSVjs4T000572SP-06
Interstage Job Workload Server 8.1.1Solaris 10FJSVjs2su-
Interstage Job Workload Server 8.0.0RHEL-AS4(IPF)FJSVjs4T000109QP-03
Interstage Job Workload Server 8.0.0RHEL-AS4(IPF)FJSVjs2su-
Interstage Job Workload Server 8.0.1RHEL-AS4(IPF)FJSVjs4T000109QP-03
Interstage Job Workload Server 8.0.1RHEL-AS4(IPF)FJSVjs2su-
Interstage Job Workload Server 8.1.0RHEL-AS4(IPF)FJSVjs4T000109QP-03
Interstage Job Workload Server 8.1.0RHEL-AS4(IPF)FJSVjs2su-
Interstage Job Workload Server 8.1.1RHEL-AS4(IPF)FJSVjs4T000681QP-02
Interstage Job Workload Server 8.1.1RHEL-AS4(IPF)FJSVjs2su-

Patch 記載なし、あるいはIDの表記のみの製品に関しては、当社サポートセンターにお問い合わせください。

4. 謝辞

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

5. 改版履歴

  • 2010年11月16日 第6版: 「3. 該当システム・パッチ情報」にて、以下の内容を更新
    • 一部製品のパッチを追加
    • 一部製品の対象OSを追加/ 削除
  • 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日 新規掲載

ページの先頭へ