{"stig":{"title":"z/OS IBM CICS Transaction Server for ACF2 Security Technical Implementation Guide","version":"7","release":"2"},"checks":[{"vulnId":"V-224302","ruleId":"SV-224302r1141375_rule","severity":"medium","ruleTitle":"CICS system datasets are not properly protected.","description":"CICS is a transaction-processing product that provides programmers with the facilities to develop interactive applications. Unauthorized access to CICS system datasets (i.e., product, security, and application libraries) could result in the compromise of the confidentiality, integrity, and availability of the CICS region, applications, and customer data.","checkContent":"Refer to the following report produced by the dataset and Resource Data Collection:\n\n- SENSITVE.RPT(CICSRPT).\n\nSince it is possible to have multiple CICS regions running on an LPAR, it is recommended to go in to the z/OS STIG Addendum and fill out all the information in the \"CICS Systems Programmer Worksheet\" for each CICS region running on the LPAR. It is recommended to save this information for any other CICS vulnerabilities that will require it. If the following guidance is true, this is not a finding.\n\nWRITE and/or greater access to CICS system datasets is restricted to systems programming personnel.","fixText":"Review the access authorizations for CICS system datasets for each region. Ensure they conform to the specifications below:\n\nA CICS environment may include several dataset types required for operation. Typically they are CICS product libraries, which are usually included in the STEPLIB concatenation but may be found in DD DFHRPL. CICS system datasets can be identified with DFH DD statements, other product system datasets, and application program libraries. Restrict WRITE and/or greater access to CICS program libraries and all system datasets to systems programmers only. Other access must be documented and approved by the ISSO. The site may determine access to application datasets included in the DD DFHRPL and CICS region startup JCL according to need. Ensure that procedures are established, documented, and followed that prevent the introduction of unauthorized or untested application programs into production application systems.","ccis":["CCI-001499"]},{"vulnId":"V-224303","ruleId":"SV-224303r1141378_rule","severity":"medium","ruleTitle":"Sensitive CICS transactions are not protected in accordance with security requirements.","description":"Sensitive CICS transactions offer the ability to circumvent transaction level controls for accessing resources under CICS. These transactions must be protected so that only authorized users can access them. Unauthorized use can result in the compromise of the confidentiality, integrity, and availability of the operating system or customer data.","checkContent":"Refer to the following report produced by the ACF2 Data Collection and dataset and Resource Data Collection:\n\n- SENSITVE.RPT(TRANS).\n- ACF2CMDS.RPT(RESOURCE) - Alternate report.\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nBrowse the dataset allocated by the ACF2PARM DD statement in each CICS startup procedure. Determine the resource type for transactions. Example:\n\nCICSKEY OPTION=VALIDATE,TYPE=resource type, RESOURCE=TRANS\n\nVerify the following items are in effect for all CICS transactions for each resource type. If the following guidance is true, this is not a finding.\n\nNote: Authorized personnel include systems programming and security staffs. Additional guidance regarding authorized personnel for specific transactions is included in this z/OS STIG Addendum. For example, CEMT SPI provides a broader use of this sensitive transaction by restricting execution to inquiries.\n\nTransactions, listed in tables CICS CATEGORY 2 CICS AND OTHER PRODUCT TRANSACTIONS and CICS CATEGORY 4 COTS-SUPPLIED SENSITIVE TRANSACTIONS, in the z/OS STIG Addendum, are restricted to authorized personnel.\n\nNote: The exception to this is the CEOT and CSGM transactions, which can be made available to all users.\nNote: The exception to this is the CWBA transaction, which can be made available to the CICS Default user.\nNote: The transactions beginning with \"CK\" apply to regions running WebSphere MQ.\nNote: Category 1 transactions are internally restricted to CICS region userids.","fixText":"The ISSO will ensure that each CICS region is associated with a unique userid and that userid is properly defined.\n\nDevelop a plan to implement the required changes.\n\nMost transactions are protected in groups. An example would be \"KT2\", which would contain all Category 2 transactions. KT2 is defined to ACF2 as a resource and contains all the Category 2 transactions.\n\nAn example of how to implement this within ACF2 is shown here:\n\n$KEY(CEMT) TYPE(KT2)          \nUID(syspaudt) ALLOW     \nUID(*) PREVENT              \n\nTransactions groups should be defined and permitted in accordance with the CICS Transaction tables listed in the z/OS STIG Addendum.","ccis":["CCI-000213"]},{"vulnId":"V-224304","ruleId":"SV-224304r1141381_rule","severity":"medium","ruleTitle":"CICS System Initialization Table (SIT) parameter values must be specified in accordance with proper security requirements.","description":"The CICS SIT is used to define system operation and configuration parameters of a CICS system. Several of these parameters control the security within a CICS region. Failure to code the appropriate values could result in unexpected operations and degraded security. This exposure may result in unauthorized access impacting the confidentiality, integrity, and availability of the CICS region, applications, and customer data.","checkContent":"Refer to the following report produced by the z/OS Data Collection:\n\n- EXAM.RPT(CICSPROC).\n\nRefer to the following report produced by the CICS Data Collection:\n\n- CICS.RPT(DFHSITxx).\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nRefer to the CICS region SYSLOG - (Alternate source of SIT parameters) Be sure to process DFHSIT based on the order specified. The system initialization parameters are processed in the following order, with later system initialization parameter values overriding those specified earlier. CICS system initialization parameters are specified in the following ways:\n\n- In the system initialization table, loaded from a library in the STEPLIB concatenation of the CICS startup procedure.\n- In the PARM parameter of the EXEC PGM=DFHSIP statement of the CICS startup procedure.\n- In the SYSIN dataset defined in the startup procedure (but only if SYSIN is coded in the PARM parameter).\n- In the ACF2PARM dataset defined in the startup procedure.\n\nVerify the following CICS System Initialization Table (SIT) parameter settings are specified for each CICS region. If the following guidance is true, this is not a finding.\n\nSEC=YES - If SEC is not coded in the CICS region startup JCL, go to offset x'117' from the beginning on the SIT dump (record sequence number - 6) for a length of 1. This is the security byte flag. Below are the hex and bit settings for this flag.\n\nX'80' EQU B'10000000' External Security Requested\n\nDFLTUSER=<parameter> - If DFLTUSER is not coded in the CICS region startup JCL, go to offset x'118' from the beginning on the SIT dump (record sequence number - 6) for a length of 8 bytes. The value will be the CICS default userid. ACF2PARM overrides the CICS SIT DFLTUSER parameter value with the logonid supplied in the ACF2PARM DEFAULT TERMINAL= parameter.\n\nXUSER=YES - If XUSER is not coded in the CICS region startup JCL, go to offset x'117' from the beginning on the SIT dump (record sequence number - 6) for a length of 1. This is the security byte flag. Below is the hex and bit settings for this flag.\n\nX'04' EQU B'00000100' Surrogate User Checking required\n\nThe CICS interface now controls this DFHSIT keyword via the INITIAL XUSER= initialization parameter. The CICS interface dynamically sets this DFHSIT setting during initialization processing using the value specified via the ACF2PARM parameter file. This overrides any value specified by the CICS systems programmer via the CICS SYSIN file, execution parameter overrides, or the DFHSIT table so the security administrator and not the CICS systems programmer controls surrogate userid checking\n\nSNSCOPE=NONE|CICS|MVSIMAGE|SYSPLEX - If SNSCOPE is not coded in the CICS region startup JCL, go to offset x'124' from the beginning on the SIT dump (record sequence number - 6) for a length of 1. This is the signon scope byte flag. Verify that users cannot sign on to more than one CICS production region within the scope of a single CICS region, a single z/OS image, or a sysplex. Below are listed the hex and bit settings for this flag:\n\nX'01' EQU 1 SIGNON SCOPE = NONE\nX'02' EQU 2 SIGNON SCOPE = CICS\nX'03' EQU 3 SIGNON SCOPE = MVSIMAGE\nX'04' EQU 4 SIGNON SCOPE = SYSPLEX\n\nNote: SNSCOPE=NONE is only allowed with test/development regions.","fixText":"Ensure that CICS System Initialization Table (SIT) parameter values are specified using the following guidance.\n\nThe system initialization parameters are processed in the following order, with later system initialization parameter values overriding those specified earlier. CICS system initialization parameters are specified in the following ways:\n\n- In the system initialization table, loaded from a library in the STEPLIB concatenation of the CICS startup procedure.\n- In the PARM parameter of the EXEC PGM=DFHSIP statement of the CICS startup procedure.\n- In the SYSIN dataset defined in the startup procedure (but only if SYSIN is coded in the PARM parameter).\n- In the ACF2PARM dataset defined in the startup procedure.\n\nEnsure the following CICS System Initialization Table (SIT) parameter settings are specified for each CICS region:\n\nSEC=YES - If SEC is not coded in the CICS region startup JCL, go to offset x'117' from the beginning on the SIT dump (record sequence number - 6) for a length of 1. This is the security byte flag. Below are listed the hex and bit settings for this flag. \n\nX'80' EQU B'10000000' External Security Requested <<===\nX'40' EQU B'01000000' Resource Prefix Required\nX'10' EQU B'00010000' RACLIST class APPCLU required\nX'08' EQU B'00001000' ESM INSTLN data is required\nX'04' EQU B'00000100' Surrogate User Checking required\nX'02' EQU B'00000010' Always enact resource check\nX'01' EQU B'00000001' Always enact command check\n\nDFLTUSER=<parameter> - If DFLTUSER is not coded in the CICS region startup JCL, go to offset x'118' from the beginning on the SIT dump (record sequence number - 6) for a length of 8 bytes. The value will be the CICS default userid.\n\nXUSER=YES - If XUSER is not coded in the CICS region startup JCL, go to offset x'117' from the beginning on the SIT dump (record sequence number - 6) for a length of 1. This is the security byte flag. Below are listed the hex and bit settings for this flag.\n\nX'80' EQU B'10000000' External Security Requested\nX'40' EQU B'01000000' Resource Prefix Required\nX'10' EQU B'00010000' RACLIST class APPCLU required\nX'08' EQU B'00001000' ESM INSTLN data is required\nX'04' EQU B'00000100' Surrogate User Checking required <<===\nX'02' EQU B'00000010' Always enact resource check\nX'01' EQU B'00000001' Always enact command check\n\nSNSCOPE=NONE|CICS|MVSIMAGE|SYSPLEX - If SNSCOPE is not coded in the CICS region startup JCL, go to offset x'124' from the beginning on the SIT dump (record sequence number - 6) for a length of 1. This is the signon scope byte flag. Ensure that users cannot sign on to more than one CICS production region within the scope of a single CICS region, a single z/OS image, or a sysplex. Below are listed the hex and bit settings for this flag:\n\nX'01' EQU 1 SIGNON SCOPE = NONE\nX'02' EQU 2 SIGNON SCOPE = CICS\nX'03' EQU 3 SIGNON SCOPE = MVSIMAGE\nX'04' EQU 4 SIGNON SCOPE = SYSPLEX\n\nNote: SNSCOPE=NONE is only allowed with test/development regions.","ccis":["CCI-000015","CCI-000381"]},{"vulnId":"V-224305","ruleId":"SV-224305r1141384_rule","severity":"medium","ruleTitle":"CICS region logonid(s) must be defined and/or controlled in accordance with the security requirements.","description":"CICS is a transaction-processing product that provides programmers with the facilities to develop interactive applications. Improperly defined or controlled CICS userids (i.e., region, default, and terminal users) may provide an exposure and vulnerability within the CICS environment. This could result in the compromise of the confidentiality, integrity, and availability of the CICS region, applications, and customer data.","checkContent":"Refer to the following report produced by the z/OS Data Collection:\n\n- EXAM.RPT(CICSPROC).\n\nRefer to the following report produced by the ACF2 Data Collection:\n\n- ACF2CMDS.RPT(LOGONIDS).\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nVerify the following items are in effect for each CICS region logonid. If the following guidance is true, this is not a finding.\n\nA unique logonid is associated with the CICS region.\nThe CICS region logonid has the STC, ACF2CICS, MUSASS, and NO-SMC attributes specified.\nNote: The ACF2CICS privilege will be restricted to CICS region logonids only.\nIf CICS region submits jobs on behalf of its users, the JOBFROM attribute is specified.\nIf CICS region has a requirement to update information in the ACF2 database, the MUSUPDT attribute is specified.\nNot granted the ACF2 NON-CNCL privilege.\nNo access to interactive online facilities (e.g., TSO) other than CICS.","fixText":"The ISSO will ensure that each CICS region is associated with a unique userid and that userid is properly defined.\n\nReview all CICS region, default, and end-user userids to ensure they are defined and controlled as required.\n\nEnsure that the following is defined for each CICS region:\n\nA unique userid is defined.\n\nUse the ACF2 insert command to accomplish this. A sample command is provided here:\n\nINSERT <cicsregionid> NAME('STC, CICS Region') JOBFROM MUSASS NO-SMC STC ACF2CICS","ccis":["CCI-000764"]},{"vulnId":"V-224306","ruleId":"SV-224306r1141387_rule","severity":"medium","ruleTitle":"CICS default logonid(s) must be defined and/or controlled in accordance with the security requirements.","description":"CICS is a transaction-processing product that provides programmers with the facilities to develop interactive applications. Improperly defined or controlled CICS userids (i.e., region, default, and terminal users) may provide an exposure and vulnerability within the CICS environment. This could result in the compromise of the confidentiality, integrity, and availability of the CICS region, applications, and customer data.","checkContent":"Refer to the following report produced by the z/OS Data Collection:\n\n- EXAM.RPT(CICSPROC).\n\nRefer to the following report produced by the ACF2 Data Collection:\n\n- ACF2CMDS.RPT(LOGONIDS).\n- ACF2CMDS.RPT(RESOURCE).\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nVerify the following items are in effect for the CICS default logonid(s) (i.e., Browse the ACF2PARM DD statement for DEFAULT TERMINAL=<parameter> and DEFAULT NONTERMINAL=nnnnnnnn). If the following guidance is true, this is not a finding.\n\nNot granted the ACF2 NON-CNCL privilege.\nNo access to interactive online facilities (e.g., TSO) other than CICS.\nIDLE(15) field is set to 15 minutes.\nA system's default time for terminal lockout or session termination may be lengthened to 30 minutes at the discretion of the ISSM. The ISSM will maintain the documentation for each system with a timeout adjusted beyond the 15-minute recommendation to explain the basis for this decision.\n\nRestricted from accessing all datasets and resources with the following exceptions:\n\nNon-restricted CICS transactions (e.g., CESF, CESN, \"good morning\" transaction, etc.)\n If applicable, resources necessary to operate in an intersystem communication (ISC) environment (i.e., LU6.1, LU6.2, and MRO)\n\nNote: Refer to the IBM CICS Transaction Server Resource Definition Guide for latest and most accurate definition for the Default CICS User.\nNote: Any exceptions to these guidelines must be approved by the site ISSO and documented in the site security plan.","fixText":"Ensure that the default CICS user is restricted and properly defined.\n\nEnsure the following items are in effect for the CICS default logonid(s) (i.e., Browse the ACF2PARM DD statement for DEFAULT TERMINAL=<parameter> and DEFAULT NONTERMINAL=nnnnnnnn):\n\nNot granted the ACF2 NON-CNCL privilege.\nUse the ACF2 LIST command to display the default CICS userid.\n\nExample:\nSET LID\nLIST CICS\nCHANGE CICS NONON-CNCL\n\nNo access to interactive online facilities (e.g., TSO) other than CICS.\n\nUse the ACF2 LIST command to display the default CICS userid.\n\nExample:\nSET LID\nLIST CICS\nCHANGE CICS NOTSO\n\nIDLE(15) field is set to 15 minutes, up to 30 with justification.\nUse the ACF2 LIST command to display the default CICS userid.\n\nExample:\n\nSET LID\nLIST CICS\nCHANGE CICS IDLE(15) up to 30 with justification\n\nRestricted from accessing all datasets and resources with the following exceptions:\n\nNon-restricted CICS transactions (e.g., CESF, CESN, 'good morning' transaction, etc.)\n\nIf applicable, resources necessary to operate in an intersystem communication (ISC) environment (i.e., LU6.1, LU6.2, and MRO)\n\nUse the ACF2 ACFRPTRX or ACFRPTXR reports to verify if the CICS default userid has access to any resources or datasets.","ccis":["CCI-000764"]},{"vulnId":"V-224307","ruleId":"SV-224307r1141390_rule","severity":"medium","ruleTitle":"CICS logonid(s) must be configured with proper timeout and signon limits.","description":"CICS is a transaction-processing product that provides programmers with the facilities to develop interactive applications. Improperly defined or controlled CICS userids (i.e., region, default, and terminal users) may provide an exposure and vulnerability within the CICS environment. This could result in the compromise of the confidentiality, integrity, and availability of the CICS region, applications, and customer data.","checkContent":"Refer to the following report produced by the ACF2 Data Collection:\n\n- ACF2CMDS.RPT(LOGONIDS).\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nNote: Any logonid that does not have an IDLE value specified will obtain its IDLE value from the default value set in ZCIC0041. Any logonid that specifies an IDLE value must meet the requirements specified below.\n\nFor all logonids with the CICS attribute that have IDLE(15) specified, this is not a finding.\n\nNote: If the timeout limit is greater than 15 minutes, and the system is processing unclassified information, review the following items. If any of these is true, this is not a finding.\n\nIf a session is not terminated, but instead is locked out after 15 minutes of inactivity, a process must be in place that requires user identification and authentication before the session is unlocked. Session lockout will be implemented through system controls or terminal screen protection.\n\nA system's default time for terminal lockout or session termination may be lengthened to 30 minutes at the discretion of the ISSM. The ISSM will maintain the documentation for each system with a timeout adjusted beyond the 15-minute recommendation to explain the basis for this decision.\n\nThe ISSM may set selected userids to have a timeout of up to 60 minutes to complete critical reports or transactions without timing out\n\nIf each exception meets the following criteria, this is not a finding.\n\nThe time-out exception cannot exceed 60 minutes.\nA letter of justification fully documenting the user requirement(s) must be submitted and approved by the site ISSM. In addition, this letter must identify an alternate means of access control for the terminal(s) involved (e.g., a room that is locked at all times, a room with a cipher lock to limit access, a password protected screen saver set to 30 minutes or less, etc.). The requirement must be revalidated on an annual basis.\n\nIf the MULTSIGN option in the  logonid record field is restricted to test or development use, this is not a finding.","fixText":"Ensure that all userids with a CICS segment have the TIMEOUT parameter set to 15 minutes.\n\nEnsure that all LIDs authorized to access a CICS facility restrict MULTSIGN to test and development use.\n\nExamples:\nSET LID\nLIST CICS\nCHANGE CICS IDLE(15)","ccis":["CCI-000057"]},{"vulnId":"V-224308","ruleId":"SV-224308r1141393_rule","severity":"medium","ruleTitle":"ACF2/CICS parameter datasets are not protected in accordance with the proper security requirements.","description":"CICS is a transaction-processing product that provides programmers with the facilities to develop interactive applications. Unauthorized access to ACF2/CICS parameter datasets (i.e., product, security) could result in the compromise of the confidentiality, integrity, and availability of the CICS region, applications, and customer data.","checkContent":"Refer to the following report produced by the ACF2 Data Collection:\n\n- SENSITVE.RPT(CICSRPT).\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nWRITE and/or greater access to the ACF2/CICS parameter dataset, specified on the ACF2PARM DD statement, is restricted to systems programming personnel and security personnel. If this guidance is true, this is not a finding.","fixText":"The ISSO will ensure that WRITE and/or greater access to the ACF2/CICS parameter dataset is limited to systems programmers and security personnel.\n\nReview the access authorizations for CICS system datasets.\n\nWRITE and/or greater access to the ACF2/CICS parameter dataset, specified on the ACF2PARM DD statement, is restricted to systems programming personnel and security personnel.\n\nExample:\n\n$KEY(S3C)\n$PREFIX(SYS3)\nCICSTS.SYSIN    UID(syspaudt) R(A)  W(L) A(L)  E(A)\nCICSTS.SYSIN    UID(secaaudt) R(A)  W(L) A(L)  E(A)\nCICSTS.SYSIN    UID(*) PREVENT\n\nSET RULE\nCOMPILE 'ACF2.MVA.DSNRULES(S3C)' STORE","ccis":["CCI-001499"]},{"vulnId":"V-224309","ruleId":"SV-224309r1041212_rule","severity":"medium","ruleTitle":"IBM CICS Transaction Server SPI command resources must be properly defined and protected.","description":"IBM CICS Transaction Server can run with sensitive system privileges, and potentially can circumvent system controls. Failure to properly control access to product resources could result in the compromise of the operating system environment, and compromise the confidentiality of customer data. Many utilities assign resource controls that can be granted to systems programmers only in greater than read authority. Resources are also granted to certain non systems personnel with read only authority.","checkContent":"Refer to the following report produced by the ACF2 Data Collection and Data Set and Resource Data Collection:\n\n- SENSITVE.RPT(XCMD)\n- ACF2CMDS.RPT(RESOURCE) - Alternate report\n\nAutomated Analysis:\nRefer to the following report produced by the ACF2 Data Collection Checklist:\n- PDI (ZCIC0021)\n\nEnsure that all IBM CICS Transaction Server SPI command resources defined in the IBM CICS-RACF Security Guide are properly protected according to the requirements specified in the site security plan, use CICS SPI Resources table in the zOS STIG Addendum as a guide. If the following guidance is true, this is not a finding.\n\nThe ACF2 resources and/or generic equivalent as designated in the above table are defined with a default access of PREVENT.\n\nThe ACF2 resource access authorizations restrict access to the appropriate personnel as designated in the above table.","fixText":"Ensure that the IBM CICS Transaction Server SPI command resources defined in the IBM CICS-RACF Security Guide access is in accordance with those outlined in the site security plan use CICS SPI Resources table in the zOS STIG Addendum as a guide.\n\nThese tables list the resources and access requirements for IBM CICS Transaction Server; ensure the following guidelines are followed:\n\nThe ACF2 resources and/or generic equivalent as designated in the above table are defined with a default access of PREVENT.\n\nThe ACF2 resource access authorizations restrict access to the appropriate personnel as designated in the above table.\n\nThe following commands are provided as a sample for implementing resource controls:\n\n$KEY(ASSOCIATION) TYPE(XCD)\n- UID(CICSAUDT) SERVICE(READ) ALLOW\n- UID(CICUAUDT) SERVICE(READ) ALLOW\n- UID(SYSCAUDT) SERVICE(READ) ALLOW\n- UID(*) PREVENT","ccis":["CCI-000213"]},{"vulnId":"V-224310","ruleId":"SV-224310r1141396_rule","severity":"medium","ruleTitle":"CICS startup JCL statement is not specified in accordance with the proper security requirements.","description":"The CICS SIT is used to define system operation and configuration parameters of a CICS system. Several of these parameters control the security within a CICS region. Failure to code the appropriate values could result in unexpected operations and degraded security. This exposure may result in unauthorized access impacting the confidentiality, integrity, and availability of the CICS region, applications, and customer data.","checkContent":"Refer to the following report produced by the z/OS Data Collection:\n\n- EXAM.RPT(CICSPROC).\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nIf every CICS region on the system has the ACF2PARM DD statement in the CICS startup JCL, this is not a finding.","fixText":"The ISSO will ensure that each CICS region procedure has the ACF2/CICS parameter dataset specified.\n\nEnsure every CICS region on the system has the ACF2PARM DD statement in the CICS startup JCL.\n\nView the started task proc for each CICS region in SYS3.PROCLIB using ISPF.","ccis":["CCI-000366"]},{"vulnId":"V-224311","ruleId":"SV-224311r1141399_rule","severity":"medium","ruleTitle":"Key ACF2/CICS parameters must be properly coded.","description":"The ACF2/CICS parameters define the security controls in effect for CICS regions. Failure to code the appropriate values could result in degraded security. This exposure may result in unauthorized access impacting the confidentiality, integrity, and availability of the CICS region, applications, and customer data.","checkContent":"Refer to the following report produced by the z/OS Data Collection:\n\n- EXAM.RPT(CICSPROC).\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nRefer to the CICS region SYSLOG - (Alternate source of SIT parameters).\n\nBrowse the ACF2/CICS dataset allocated by the ACF2PARM DD statement in the JCL of each CICS procedure.\n\nIf all key ACF2/CICS parameters for every CICS region are coded as stated in the table titled ACF2/CICS Parameters in the z/OS STIG Addendum, this is not a finding.\n\nNote: The DEFAULT TERMINAL=parameter must be specified.\nCICSKEY OPTION=VALIDATE,TYPE=resource type,RESOURCE=TRANS will specify a unique resource type for each CICS region.","fixText":"Ensure the ACF2/CICS parameters are coded with values specified in the table titled ACF2/CICS Parameters, in the zOS STIG Addendum.\n\nBrowse the ACF2/CICS dataset allocated by the ACF2PARM DD statement in the JCL of each CICS procedure.\n\nEnsure that all key ACF2/CICS parameters for every CICS region are coded as stated in the table titled ACF2/CICS Parameters, in the zOS STIG Addendum.","ccis":["CCI-000366"]},{"vulnId":"V-224312","ruleId":"SV-224312r1141402_rule","severity":"medium","ruleTitle":"Sensitive CICS transactions are not protected in accordance with the proper security requirements.","description":"Sensitive CICS transactions offer the ability to circumvent transaction-level controls for accessing resources under CICS. These transactions must be protected so that only authorized users can access them. Unauthorized use can result in the compromise of the confidentiality, integrity, and availability of the operating system or customer data.","checkContent":"Refer to the following report produced by the z/OS Data Collection:\n\n- EXAM.RPT(CICSPROC).\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nBrowse the ACF2/CICS dataset allocated by the ACF2PARM DD statement in the JCL of each CICS procedure.\n\nIf the following items are in effect for entries specified in the SAFELIST parameter, this is not a finding.\n\nTransactions are uniquely identified.\nTransactions are not masked.\nSensitive transactions are not included.\n\nNote: For information on transactions that are eligible for exemption from security checking, refer to Category 3 Transactions for CICS TS 3.1 - 5.1 in the z/OS STIG addendum.\n\nIf the above items are true for all entries specified in the SAFELIST parameter for each CICS region, this is not a finding.","fixText":"The systems programmer and ISSO will ensure the ACF2/CICS parameter SAFELIST are coded with the values specified below.\n\nBrowse the ACF2/CICS dataset allocated by the ACF2PARM DD statement in the JCL of each CICS procedure.\n\nEnsure the following items are in effect for entries specified in the SAFELIST parameter:\n\nTransactions are uniquely identified.\nTransactions are not masked.\nSensitive transactions are not included.\n\nNote: For information on transactions that are eligible for exemption from security checking, refer to Category 3 Transactions for CICS TS 3.1 - 5.1 in the z/OS STIG addendum.","ccis":["CCI-000366"]},{"vulnId":"V-224313","ruleId":"SV-224313r1141405_rule","severity":"medium","ruleTitle":"Sensitive CICS transactions are not protected in accordance with the proper security requirements.","description":"Sensitive CICS transactions offer the ability to circumvent transaction-level controls for accessing resources under CICS. These transactions must be protected so that only authorized users can access them. Unauthorized use can result in the compromise of the confidentiality, integrity, and availability of the operating system or customer data.","checkContent":"Refer to the following report produced by the z/OS Data Collection:\n\n- EXAM.RPT(CICSPROC).\n\nRefer to the CICS Systems Programmer Worksheets filled out from previous vulnerability ZCIC0010.\n\nBrowse the ACF2/CICS dataset allocated by the ACF2PARM DD statement in the JCL of each CICS procedure.\n\nIf the PROTLIST parameter is not specified for all CICS regions, this is not a finding.","fixText":"The systems programmer and ISSO will ensure the ACF2/CICS parameter PROTLIST is not coded.\n\nBrowse the ACF2/CICS dataset allocated by the ACF2PARM DD statement in the JCL of each CICS procedure.\n\nMake sure the PROTLIST parameter is not specified for all CICS regions.","ccis":["CCI-002235"]}]}