Friday 12 March 2021

RFC Gateway security, part 3 – secinfo ACL

With this blogpost series i try to give a comprehensive explanation of the RFC Gateway Security:

Part 1: General questions about the RFC Gateway and RFC Gateway security.

Part 2: reginfo ACL in detail.

secinfo ACL

Please make sure you have read at least part 1 of this series to be familiar with the basics of the RFC Gateway and the terms i use to describe things.

What exactly is defined in the rules in the secinfo ACL?

The secinfo ACL contains rules related to ‘Started external RFC Servers’.

Every line corresponds one rule. A rule defines

◉ if it specifies a permit or a deny. This is specified by the letter P or Dat the beginning of a rule.

◉ which user is allowed to start a program. This is specified in USER=.

Please note: If a rule should be restricted to certain users please be aware that for ‘USER’ it is not possible to maintain a comma separated list. Instead separate rules must be created.

◉ from which RFC client can this be initiated. This is specified in USER-HOST=.

◉ the remote host on which the executable is to be started. This is specified in HOST=.

◉ the executable which will be executed on the OS level with the permissions of either the OS user running the RFC Gateway process or the credentials of an SAP user. This is specified in TP= based on the executable name or its fullpath (e.g., if it is not in $PATH).

What are the common use-cases?

Starting external programs at the local RFC Gateway

On SAP NetWeaver AS ABAP starting of external programs at the local RFC Gateways is commonly used. For example the STMS calls the executable ‘tp’ during transport management or ‘sapxpg’ which is used by transaction SM49/SM69 to execute OS commands or ‘saphttp’ to connect to content servers (if not switched to the ICM plugin as described in SAP note 2570180).

RFC Gateway Security, SAP ABAP Exam Prep, SAP ABAP Certification, SAP ABAP Preparation, SAP ABAP Career

To identify this use-case we can look for TCP/IP connections with ‘Technical Setting’ – ‘Activation Type = Start on Application Server’:

RFC Gateway Security, SAP ABAP Exam Prep, SAP ABAP Certification, SAP ABAP Preparation, SAP ABAP Career

We can verify this during runtime by going to transaction SMGW as active connections:

RFC Gateway Security, SAP ABAP Exam Prep, SAP ABAP Certification, SAP ABAP Preparation, SAP ABAP Career

or by going to ‘Logged on Clients’ and looking for lines with ‘System Type = External Client’ and ‘Gateway Host = 127.0.0.1’ (in some cases this may be any other ip-address belonging to or the hostname of the same server). The related program alias can be found in column ‘TP Name’:

RFC Gateway Security, SAP ABAP Exam Prep, SAP ABAP Certification, SAP ABAP Preparation, SAP ABAP Career

Please note: ‘SAPXPG’ has a special behavior: Whenever a command is executed in SM49/SM69 a temporary TCP/TP connection named ‘%_TCPIP_%<n>’ will be created with the program name ‘/usr/sap/<SAPSID>/<Instance>/exe/sapxpg’ and the actual command as parameters. After execution this temporary TCP/IP connection is deleted.

Since these programs are shown only during their execution it would be a better approach to look into the log files of the RFC Gateway and search for ‘secinfo accepted:’ or ‘secinfo denied:’ to identify which programs have been called in the past, e.g.,:

RFC Gateway Security, SAP ABAP Exam Prep, SAP ABAP Certification, SAP ABAP Preparation, SAP ABAP Career

To always allow starting of any programs on the same server SAP introduced an internal rule in the in the secinfo ACL:

P USER=* USER-HOST=internal,local HOST=internal,local TP=*

This rule is generated when gw/acl_mode = 1 is set but no custom secinfo ACL was defined.

Starting external programs at a remote server

The RFC Gateway allows to connect to remote servers using SSH or remote Shell (depending on the configuration in the corresponding TCP/IP connection and the value of parameter ‘gw/rem_start’) to execute programs on it.

Please note: Additional setup to allow connecting to the remote server is necessary.

To identify this use-case we can look for TCP/IP connections with ‘Technical Setting’ – ‘Activation Type = Start on Explicit Host’ and a ‘Target Host’ different from hosts of the application servers of the same system.

RFC Gateway Security, SAP ABAP Exam Prep, SAP ABAP Certification, SAP ABAP Preparation, SAP ABAP Career

For this scenario custom rules in the secinfo ACL would be necessary, e.g.,

P USER=<username> USER-HOST=internal,local,<rfc-client-host> HOST=<target-host> TP=<TP-Name>

Starting external programs at a remote RFC Gateway

RFC clients can also connect to a remote RFC Gateway using RFC or SNC to start programs on it.

To identify use-cases for starting external programs via remote RFC Gateways from our AS ABAP we can look for TCP/IP connections with ‘Technical Setting’ –  ‘Activation Type = Start on Explicit Host’ and a Target Host as well as ‘Gateway Host’ different from the hosts of the application servers of the same system.

RFC Gateway Security, SAP ABAP Exam Prep, SAP ABAP Certification, SAP ABAP Preparation, SAP ABAP Career

For this scenario custom rules in the secinfo ACL of the remote RFC Gateway would be necessary, e.g.,

P USER=<username> USER-HOST=<AS-host>,<rfc-client-host> HOST=local TP=<TP-Name>

No comments:

Post a Comment