RRSF

Please note RRSF support is exclusive to SEAR 0.4.0 and later, earlier versions do not support this feature.

Be mindful of what you do with the RRSF extracted data, it contains many pieces of sensitive information about system layout and network configuration that can be abused by bad actors.

Valid operators for this type of request

Operator Valid
add
alter
delete
extract
search

Extracting information

SEAR provides the extract operator to gather information about the RACF database.

Extracting RACF RRSF options

The sample below returns all of the RRSF options.


from sear import sear

result = sear(
    {
        "operation": "extract",
        "admin_type": "racf-rrsf"
    },
)

print(result.result)