Announcements

SecurID® Discussions

Browse the SecurID discussion board to get product help and collaborate with other SecurID users.
SpencerMay
Beginner
Beginner

Where can I find the Oracle Web Logic version in RSA Authentication Manager?

Jump to solution

Need to find the version of Oracle Web Logic in RSA Authentication Manager and the Web Tier in order to see if we are vulnerable to a new CVE released.

Labels (1)
0 Likes
1 Solution

Accepted Solutions
KevinDouglas
Respected Contributor Respected Contributor
Respected Contributor

AdminServer logs has version information. 

SSH onto the server with rsaadmin and run find command.  This may have several entries because at startup the version is printed in the log.

 

find /opt/rsa/am/server/logs/ -iname "AdminServer.log*" -exec grep "Version: WebLogic Server" {} \; -print

 

Oput on an Authentication Manager 8.4 looks like this.
####<Mar 21, 2019 2:38:31,901 PM EDT> <Info> <Management> <am84p> <> <Thread-9> <> <> <> <1553193511901> <[severity-value: 64] [partition-id: 0] [partition-name: DOMAIN] > <BEA-141107> <Version: WebLogic Server 12.2.1.3.0 Thu Aug 17 13:39:49 PDT 2017 1882952>

View solution in original post

4 Replies
KevinDouglas
Respected Contributor Respected Contributor
Respected Contributor

AdminServer logs has version information. 

SSH onto the server with rsaadmin and run find command.  This may have several entries because at startup the version is printed in the log.

 

find /opt/rsa/am/server/logs/ -iname "AdminServer.log*" -exec grep "Version: WebLogic Server" {} \; -print

 

Oput on an Authentication Manager 8.4 looks like this.
####<Mar 21, 2019 2:38:31,901 PM EDT> <Info> <Management> <am84p> <> <Thread-9> <> <> <> <1553193511901> <[severity-value: 64] [partition-id: 0] [partition-name: DOMAIN] > <BEA-141107> <Version: WebLogic Server 12.2.1.3.0 Thu Aug 17 13:39:49 PDT 2017 1882952>

Thanks!

0 Likes

The below command may be useful as well and gives you more details.

 

/opt/rsa/am/appserver/jdk/bin/java -cp /opt/rsa/am/appserver/wls/wlserver/server/lib/weblogic.jar weblogic.version -verbose

-Sri

Thanks!

0 Likes